View Single Post
  #17  
Old 05-28-2006, 05:42 AM
ApothiX ApothiX is offline
Okiesmokie
Join Date: May 2004
Posts: 1,447
ApothiX is on a distinguished road
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.
__________________


[06:24:19] * Parts: Skyld (i=silent@unaffiliated/skyld) ("Perhaps Okiesmokie did not realise that I like the boys. ")
Reply With Quote