added numtostr() and strtonum()
This commit is contained in:
parent
10a28dcde9
commit
d37bdc026c
|
@ -24,7 +24,6 @@ stock get_user_hitzones(index,target)
|
||||||
stock user_spawn(index)
|
stock user_spawn(index)
|
||||||
return spawn(index)
|
return spawn(index)
|
||||||
|
|
||||||
/* use log_amx() instead */
|
|
||||||
stock get_logfile( name[], len )
|
stock get_logfile( name[], len )
|
||||||
return get_time("admin%m%d.log",name,len)
|
return get_time("admin%m%d.log",name,len)
|
||||||
|
|
||||||
|
@ -33,3 +32,9 @@ stock get_user_money(index)
|
||||||
|
|
||||||
stock set_user_money(index,money,flash=1)
|
stock set_user_money(index,money,flash=1)
|
||||||
return cs_set_user_money(index,money,flash)
|
return cs_set_user_money(index,money,flash)
|
||||||
|
|
||||||
|
stock numtostr(num,string[],len)
|
||||||
|
return num_to_str(num,string,len)
|
||||||
|
|
||||||
|
stock strtonum(const string[])
|
||||||
|
return str_to_num(string)
|
Loading…
Reference in New Issue
Block a user