|
You last visited: Today at 09:12
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.
07/03/2012, 08:56
|
#346
|
elite*gold: 0
Join Date: Jun 2012
Posts: 2
Received Thanks: 0
|
anyone help me , i keep getting cant read attack hack failed
|
|
|
07/12/2012, 21:55
|
#347
|
elite*gold: 55
Join Date: Mar 2006
Posts: 4,582
Received Thanks: 1,539
|
I also looking what Functions I should add to new one?
and how u want to use them? ingame Commands? /Speed *** /Drop etc. or a Menu again?
or other way?
|
|
|
07/13/2012, 00:11
|
#348
|
elite*gold: 0
Join Date: Jul 2011
Posts: 754
Received Thanks: 122
|
menu
LA Bot für Pserver?  wenns geht^^ sonst hätte ich nichts :P
|
|
|
07/13/2012, 13:00
|
#349
|
elite*gold: 0
Join Date: Feb 2008
Posts: 1,105
Received Thanks: 186
|
ye create the chat window (eg. /pick) command or the buttons commands, just like hoseta made, it's kinda alot more practical than going to menu all over again and click that and that
|
|
|
07/14/2012, 05:31
|
#350
|
elite*gold: 0
Join Date: Apr 2011
Posts: 339
Received Thanks: 49
|
Anything would be awesome XD
|
|
|
07/14/2012, 21:10
|
#351
|
elite*gold: 55
Join Date: Mar 2006
Posts: 4,582
Received Thanks: 1,539
|
I also think about to use Ingame Commands they are most comfortable I think.
just need ideas what to add xD
|
|
|
07/14/2012, 21:42
|
#352
|
elite*gold: 0
Join Date: Feb 2008
Posts: 1,105
Received Thanks: 186
|
if you need ideas badly
near behead (near range),
autopot not the keypressing one :d (0x07 hp , 0x08 mana),
decent splashbot with possible auto heal skill,
auto lure as mage/archer(eg. for d1) attacking spawned mobs in near range (want to see the func. as i couldn't get my one to work grrrrrrrrr)
also, the attack hack for those who want to add custom delay between used skills (as striker did, if you saw his work)
also all the basic functions that your previous versions had...
hopefully i've been of some help :d
|
|
|
07/14/2012, 21:51
|
#353
|
elite*gold: 0
Join Date: Oct 2010
Posts: 159
Received Thanks: 73
|
This may help xD
Code:
if (strcmp(rw,"/spampt") == 0)
{
int you=0;
string STRING;
ifstream infile;
infile.open ("Prince/Spam.txt");
while(infile) // To get you all the lines.
{
getline(infile,STRING); // Saves the line in STRING.
Sleep(10);
for(int name=0;name<=MAX_P;name++)
{
if(STRING==Player[name].szPlayerName)
{
for(int spom=0;spom<350;spom++)
{
SendKoemV2(0x2c,"d",Player[name].dwPlayerUID);
}
}
infile.close();
}
}
}
if (strcmp(rw,"/spamall") == 0)
{
for(int name=1;name<=MAX_P;name++)
{
for(int spom=0;spom<100;spom++)
{
SendKoemV2(0x2c,"d",Player[name].dwPlayerUID);
Sleep(1);
}
Sleep(10);
}
}
if (strcmp(rw,"/spamon") == 0)
{
spam=1;
}
if (strcmp(rw,"/spamoff") == 0)
{
spam=0;
}
if (strcmp(rw,"/drop") == 0)
{
if(drophack != 0 )
{
for(int i = 0 ; i<80 ; i++)
{
SendKoemV2(0x1A,"dd",drophack,1);
Sleep(1);
}
}
else if (drophack == 0 )
{
Kal::ChatBox("[Prince] ",1,"Item ID not taken for drop hack, Press 7.");
}
}
if (strcmp(rw,"/ug") == 0)
{
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
SendKoemV2(0x15,"bbb",0,0,-127);
}
if (strcmp(rw,"/port") == 0)
{
int you=0;
string STRING;
ifstream infile;
infile.open ("Prince/Port.txt");
while(infile) // To get you all the lines.
{
getline(infile,STRING); // Saves the line in STRING.
Sleep(10);
for(int i=0;i<MAX_P;i++)
{
if(STRING==Player[i].szPlayerName)
{
DWORD* coordpointerX = (DWORD*)0x006F3840;
DWORD* coordpointerY = (DWORD*)0x006F3840;
DWORD PX;
DWORD PY;
Memory::MemcpyEx((DWORD)&PX,(((DWORD)*coordpointerX)+0x0000463C),4);
Memory::MemcpyEx((DWORD)&PY,(((DWORD)*coordpointerY)+0x00004644),4);
int difX = Player[i].dwPlayerX - PX;
int difY = Player[i].dwPlayerY - PY;
float range =((difX*difX)+(difY*difY))*1.0;
if(sqrt(range) < 40)
{
Kal::ChatBox("[Prince] ",1,"Player %s is very near.",Player[i].szPlayerName);
}
if((sqrt(range) > 40 ) && (sqrt(range) < 1200))
{
for(int ii=0;ii<11;ii++)
{
unsigned char tempx=(double(difX)/sqrt(range))*30;
unsigned char tempy=(double(difY)/sqrt(range))*30;
//PX += tempx;//Player[0].dwPlayerX
//PY += tempy;//Player[0].dwPlayerY
SendKoemV2(0x15,"bbb",tempx,tempy,0);
if (tempx < 128)
{
PX+=tempx;
}
else
{
if (tempx > 128)
{
minus2=tempx - 256;
PX+=minus2;
}
}
if (tempy < 128)
{
PY+=tempy;
}
else
{
if (tempy > 128)
{
minus2=tempy - 256;
PY+=minus2;
}
}
if(sqrt(range) < 50)
break;
Sleep(5);
}
}
}
}
infile.close();
}
}
if (strcmp(rw,"/count") == 0)
{
NpcCount = 0;
PlayerCount = 0;
Kal::ChatBox("[Prince] ",1,"Player/Npc count resetted.");
}
if (strcmp(rw,"/bot") == 0)
{
if(bOt==0)
{
bOt=1;
}
else
{
bOt=0;
}
}
if(strcmp(rw,"/test12")==0)
{
for(int times=0;times<10;times++)
{
for(int i=0; i<MAX_N;i++)
{
if(Npc[i].dwNpcID != 0)
{
SendKoemV2(0x18,"dbbww",Npc[i].dwNpcID,115,1,410,1);//hex to dec
Sleep(1);
}
}
}
}
}
You can add somethings like animated/moving shop, msgspam, player protection (like if playercount < 4 ->exit) and /exit command ^^
And thanks for this project =)
|
|
|
07/14/2012, 23:40
|
#354
|
elite*gold: 0
Join Date: Feb 2008
Posts: 1,105
Received Thanks: 186
|
btw, i think that in most cases koemv2 doesn't let you open the console....
|
|
|
07/15/2012, 07:17
|
#355
|
elite*gold: 0
Join Date: Oct 2010
Posts: 159
Received Thanks: 73
|
Who said it's console? It's ChatBox hook  , just write in chat /command. ^^
|
|
|
07/16/2012, 01:29
|
#356
|
elite*gold: 0
Join Date: Jan 2011
Posts: 101
Received Thanks: 4
|
hmm...you should make that hack being able to be commanded from chatbox and from menu... (so everybody will be happy,i'll use the menu,other guys chatbox...)
i think menu is better because you can miss the slash (/) sometimes and everybody will see that you are a **** cheater xD
you should add:
- a multi-storm hack like the old one from thiesus (f3-f4)
- an auto-login if the server crashes (good for autosplashers)
- a buffhack-target (i mean something like the attackhack,something that gives you the ability to give away all your buffs to the target in 1 click)
- another buffhack-area (the one that buffs everything around you,it's good for the war)
- OnMapClick
- some auto responsing system for autosplashers,botters etc...<<not for egys (something that we will be able to configure by ourself,example:someone ask me party;answer-"sorry mate,but i need to go soon and i need to lvlup"/someone pm me;"me no spik americano" <<< things between "=things that we will be able to edit,things that we will write by ourself<<<that's why it's not for egys)
- a server counting killer (something that will disable the server skill-using counting because on some servers like nak,the server is counting each time you use a skill-if you use multiple times the same skill that should be normally cooling down,you get a c/l...so it brings a storm hack unusable)
- auto-uploader for shop (if you got so much items to sell that you can't sell everything you want in the same shop because of the item number limit,the auto shop uploader should be able to put the selected items on the sale by the turn you want,with the price that you want)
ty for the previous versions of this hack,it's a great job bloodx...hope you will found some free time to release this hack many more times  best regards
Ed.
|
|
|
07/16/2012, 21:41
|
#357
|
elite*gold: 0
Join Date: May 2009
Posts: 2
Received Thanks: 0
|
how about some logging if someone mentions your nickname or certain words because usually I dont watch the chat that much, but i do like to know if ppl are talking about me.
|
|
|
07/16/2012, 22:07
|
#358
|
elite*gold: 0
Join Date: Nov 2008
Posts: 1,181
Received Thanks: 254
|
Quote:
Originally Posted by Dark_Desire
how about some logging if someone mentions your nickname or certain words because usually I dont watch the chat that much, but i do like to know if ppl are talking about me.
|
like "DarkDesire is hacking at Vulgars !"? ^^
|
|
|
07/17/2012, 09:53
|
#359
|
elite*gold: 0
Join Date: May 2009
Posts: 2
Received Thanks: 0
|
Quote:
Originally Posted by EddyGER
like "DarkDesire is hacking at Vulgars !"? ^^
|
well yeah of course ;-) or maybe you like to filter shouts for bof or G55 armour...
Sent from my TITAN X310e using Board Express
|
|
|
07/18/2012, 21:52
|
#360
|
elite*gold: 0
Join Date: Nov 2008
Posts: 1,181
Received Thanks: 254
|
Quote:
Originally Posted by bloodx
just need ideas what to add xD
|
dont know if it would work, but something like "port to coordinate" would be nice
|
|
|
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 09:13.
|
|