|
You last visited: Today at 04:18
Advertisement
Private Server Test Hack
Discussion on Private Server Test Hack within the Kal Hacks, Bots, Cheats & Exploits forum part of the Kal Online category.
11/30/2012, 14:10
|
#376
|
elite*gold: 0
Join Date: Apr 2009
Posts: 2
Received Thanks: 0
|
upload it again if u can , :/
|
|
|
01/04/2013, 23:51
|
#377
|
elite*gold: 0
Join Date: Dec 2012
Posts: 2
Received Thanks: 0
|
please re upload
|
|
|
01/10/2013, 00:14
|
#378
|
elite*gold: 0
Join Date: Jun 2009
Posts: 47
Received Thanks: 2
|
I think i'm doing something wrong?. If i don't want it to pick money then in BlackList.txt i write 31, but still picking money ^^...
Anyone know how to get it work like i don't want it to pick some items..
EDIT: WoopWoop ! Found out how does it pick only geons. But is there any way i can make it pick like if monster drops geons,potato,g1 sticks to pick up only geons and potatos.. And leave G1 sticks on ground?
|
|
|
01/11/2013, 19:03
|
#379
|
elite*gold: 0
Join Date: Feb 2008
Posts: 1,105
Received Thanks: 186
|
idk, but you can write it so it will destroy undesired picked indexes...
|
|
|
01/11/2013, 23:25
|
#380
|
elite*gold: 0
Join Date: Jun 2009
Posts: 47
Received Thanks: 2
|
Okay.. So i can't do it.. Beacuse i know nothing about C++...
But anyways.. How to remove that manakey -.-?. Hate it, how i can't write while only security activated and killing... It only spams manakey  . I removed it from settings.ini, but didn't help.
|
|
|
01/12/2013, 10:26
|
#381
|
elite*gold: 0
Join Date: Feb 2008
Posts: 1,105
Received Thanks: 186
|
ahm just comment it
if it bothers you so much
Quote:
/*
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;
}
}*/
|
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)
Quote:
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
|
well ofc you need to adjust it to your needs
|
|
|
01/12/2013, 22:37
|
#382
|
elite*gold: 0
Join Date: Jun 2009
Posts: 47
Received Thanks: 2
|
Quote:
Originally Posted by pamz12
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
|
Thank you. I think it succeeded. But it did gave some warning?... It was just commenting that mana key..
Code:
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 ==========
|
|
|
01/12/2013, 23:54
|
#383
|
elite*gold: 0
Join Date: Feb 2008
Posts: 1,105
Received Thanks: 186
|
as long it exports the dll you can ignore warnings
|
|
|
01/13/2013, 00:25
|
#384
|
elite*gold: 0
Join Date: Jun 2009
Posts: 47
Received Thanks: 2
|
EDIT::
How can i make it to pick only index 649?
|
|
|
01/20/2013, 01:34
|
#385
|
elite*gold: 0
Join Date: Oct 2007
Posts: 13
Received Thanks: 0
|
any update  ?
|
|
|
01/24/2013, 20:05
|
#386
|
elite*gold: 0
Join Date: Oct 2009
Posts: 18
Received Thanks: 1
|
ok i download it can you be more expesifis how this work
|
|
|
01/25/2013, 22:54
|
#387
|
elite*gold: 423
Join Date: Nov 2012
Posts: 399
Received Thanks: 49
|
Probiers gleich mal aus
|
|
|
01/27/2013, 01:49
|
#388
|
elite*gold: 0
Join Date: Sep 2012
Posts: 40
Received Thanks: 0
|
Quote:
Originally Posted by Sebastian1988
Probiers gleich mal aus 
|
und klappt??
|
|
|
01/28/2013, 19:28
|
#389
|
elite*gold: 6
Join Date: Nov 2009
Posts: 74
Received Thanks: 2
|
Anyone can reupload it pls ?
|
|
|
01/28/2013, 19:47
|
#390
|
elite*gold: 0
Join Date: Sep 2012
Posts: 40
Received Thanks: 0
|
Pls reupload is
|
|
|
Similar Threads
|
PW private server test
09/05/2009 - Perfect World - 8 Replies
Elow all! Guys where i can find a private server files of PW? all links for download are down. I want to test it with my server linux.
tnx in advance
|
New Private Server come Test it out!!!
12/15/2008 - CO2 Private Server - 5 Replies
Hey guys im working on a server and wouldnt mind some advice or comments on improving it.
Its currently in testing but is hosted 24/7 .
Come have a look...
Registration website: GS Conquer
Download Client: GS Conquer
megaupload only for now...
if you already have the client just change your CIDServer.dat
|
All times are GMT +1. The time now is 04:18.
|
|