Assassins Help!

04/30/2013 23:33 OGs Gaming#1
I swear this is so hard. i dont understand a shit of this. Assassins use the skill MortalWound 1 time and hit like 38k and it hits 4 times.. I wanna reduce that damage to 500, but I dunno how... I dont know the skill ID or entity ID so I cant change it from database and I didnt understand shit in Calculate.cs. Ive been trying for several hours now.. Its version 5715 if it helps :/

Any help would be appreciated

I also need GM commands for assassins server.
05/01/2013 01:05 go for it#2
there is a function/something called break point
this will makes you able to stop by some code if the code flow reached there
break point on the packet handlers
trace until the action is done
go back and repeat that again stepping inside where it's done
repeat all of that until you find what you are looking for
else go to the client ini files , get the id or even to the db and get to skills and get it's id and search the entire solution for it

about gm commands , this commands are just a method that is called whenever you start your msg string with special char (most common @)
it convert all chars to lower case then check for sub strings which is predefined by you to do certain stuff
same goes for that too , break on the handlers until it takes you to the chat packet , step inside the check , read the commands
else just search for any command you know in term of "command" with the quotes and you should land there

but honestly you can't just own a server and don't know how to get that done
i feel sorry for myself downloading your client for couple of hrs to find exploits :\
05/01/2013 01:20 InfamousNoone#3
thats basically what happens when u jump into a source with 0 programming knoweldge
05/01/2013 10:19 abdoumatrix#4
the easiest way to reduce it by code like this

PHP Code:
power = (power 10) / 100
05/01/2013 16:31 MightyStrike#5
[Only registered and activated users can see links. Click Here To Register...]

There you go.. Take the first one!