Quote:
|
Originally Posted by Sage_Shadowbane
Excalibur...Dont try posting in the scripting section please.. Variables can only be accessed by the NPC itself, not by a client.
|
Clientside variables can be accessed by anything that can read the memory.
Quote:
|
Originally Posted by Tyrial
Hmm..
Lets say temp.dmcheck = 10
and temp.dmg = 10.
temp.dmcheck = temp.dmg-1; //This part will make temp.dmcheck into temp.dmg(10)-1. dmcheck is now 9 and dmg is still 10.
temp.dmg--; makes it 9.
So what you do is to remove 1 from temp.dmg and temp.dmcheck.
So what you did is the same as doing:
temp.dmg--;
temp.dmcheck = temp.dmg;
right?
Correct me if I'm wrong.
|
It's the point that he's doing both of them separately. Makes it more elusive for hackers to catch.