2004-03-07 11:24:36 +00:00
|
|
|
/* AMX Mod X Backwards Compatibility
|
|
|
|
*
|
|
|
|
* by the AMX Mod X Development Team
|
|
|
|
*
|
|
|
|
* This file is provided as is (no warranties).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined _amxmod_included
|
|
|
|
#endinput
|
|
|
|
#endif
|
|
|
|
#define _amxmod_included
|
|
|
|
|
|
|
|
#include <amxmodx>
|
|
|
|
#include <cstrike>
|
|
|
|
#include <engine>
|
|
|
|
#include <fun>
|
|
|
|
|
|
|
|
stock user_spawn(index)
|
|
|
|
return spawn(index)
|
|
|
|
|
|
|
|
stock get_logfile( name[], len )
|
2004-03-07 14:29:34 +00:00
|
|
|
return get_time("admin%m%d.log",name,len)
|
|
|
|
|
|
|
|
stock get_user_money(index)
|
|
|
|
return cs_get_user_money(index)
|
|
|
|
|
|
|
|
stock set_user_money(index,money,flash=1)
|
2004-03-08 17:19:41 +00:00
|
|
|
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)
|