View Single Post
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 02-16-2008 , 10:14   Re: Execution (Gears of War) 1.0 - 16/02/08
Reply With Quote #10

Quote:
Originally Posted by JoshGomez View Post
But if you update the pcvar the cvar won't change.
Wrong. If you update using a pcvar function, the cvar changes

PHP Code:
new amx_test register_cvar("amx_test""5");
set_pcvar_num(amx_test2); 
The above does the same thing as below, it is just the above is much quicker doing it.

PHP Code:
register_cvar("amx_test""5");
set_cvar_num("amx_test"2); 
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline