upload it again if u can , :/
that should do the trick i supposeQuote:
/*
void Kal::SetManaKey()
{
switch (ManaKey)
{
case 0:
key_Mana = 0x30;
break;
case 1:
key_Mana = 0x31;
break;
case 2:
key_Mana = 0x32;
break;
case 3:
key_Mana = 0x33;
break;
case 4:
key_Mana = 0x34;
break;
case 5:
key_Mana = 0x35;
break;
case 6:
key_Mana = 0x36;
break;
case 7:
key_Mana = 0x37;
break;
case 8:
key_Mana = 0x38;
break;
case 9:
key_Mana = 0x39;
break;
}
}*/
well ofc you need to adjust it to your needsQuote:
int blacklist[] = {331,330,318,327,328,329,316,282,290,298,306,314,2 76,284,292,300,308,1495/*monsterarm*/};
case 0x36://Item Drop
{
bool abbruch = false;
WORD Index = *(WORD*)&Buffer[3];
for(int i = 0;i<sizeof(blacklist)/sizeof(blacklist[0]);i++)
{
if(Index == blacklist[i])
{
abbruch = true;
break;
}
}
if(abbruch == false)
{
//pick it
Thank you. I think it succeeded. But it did gave some warning?... It was just commenting that mana key..Quote:
ahm just comment it
if it bothers you so much
that should do the trick i suppose
i'll show the destory thing bit later, also it was already released by moep (maybe even some1 else who knows right :d)
well ofc you need to adjust it to your needs
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(990,5): warning MSB8012: TargetPath(C:\Users\Rodi\Desktop\Testsystem\Debug\TestsystemWINAPI.dll) does not match the Linker's OutputFile property value (C:\Users\Rodi\Desktop\Testsystem\Testsystem.dll). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(992,5): warning MSB8012: TargetName(TestsystemWINAPI) does not match the Linker's OutputFile property value (Testsystem). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). 1>detours.lib(detours.obj) : warning LNK4099: PDB 'detours.pdb' was not found with 'detours.lib(detours.obj)' or at 'C:\Users\Rodi\Desktop\Testsystem\Debug\detours.pdb'; linking object as if no debug info 1>detours.lib(disasm.obj) : warning LNK4099: PDB 'detours.pdb' was not found with 'detours.lib(disasm.obj)' or at 'C:\Users\Rodi\Desktop\Testsystem\Debug\detours.pdb'; linking object as if no debug info 1>detours.lib(detours.obj) : warning LNK4099: PDB 'detours.pdb' was not found with 'detours.lib(detours.obj)' or at 'C:\Users\Rodi\Desktop\Testsystem\Debug\detours.pdb'; linking object as if no debug info 1>detours.lib(disasm.obj) : warning LNK4099: PDB 'detours.pdb' was not found with 'detours.lib(disasm.obj)' or at 'C:\Users\Rodi\Desktop\Testsystem\Debug\detours.pdb'; linking object as if no debug info 1> TestsystemWINAPI.vcxproj -> C:\Users\Rodi\Desktop\Testsystem\Debug\TestsystemWINAPI.dll 1>FinalizeBuildStatus: 1> Deleting file "Debug\TestsystemWINAPI.unsuccessfulbuild". 1> Touching "Debug\TestsystemWINAPI.lastbuildstate". 1> 1>Build succeeded. 1> 1>Time Elapsed 00:00:01.63 ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========