Thread: Speedhack v1.1
View Single Post
slmclarengt
Veteran Member
Join Date: Jul 2004
Location: The Cookie Jar... or Pullman, WA (Washington State University)
Old 11-07-2005 , 20:48  
Reply With Quote #4

Just for your knowledge:

According to Demorgan's laws, this can be changed:

Code:
if(!cmd_access(id,level,cid,1) || !get_cvar_num("amx_speedhack"))

to this:

Code:
if (!(cmd_access(id,level,cid,1) && get_cvar_num("amx_speedhack")))

Because it gets reversed. If you want to know all of Demorgan's laws, look him up. He did a lot of logic gates and research based on logical operators.

It doesn't hurt/help the plugin.
__________________
But we don’t beat the Reaper by living longer. We beat the Reaper by living well. -Dr. Randy Pausch, R.I.P.

Come play WC3:FT on BnD Clan Server! You know you want to: Connect to WC3:FT BnD - go ahead click me!
slmclarengt is offline