Thread: Money plugin
View Single Post
yRestrict
BANNED
Join Date: Apr 2019
Old 02-03-2020 , 13:46   Re: Money plugin
Reply With Quote #3

Quote:
Originally Posted by Natsheh View Post
PHP Code:
#include <amxmodx>
#include <cstrike>
#include <hamsandwich>

new g_pcvar_index;

public 
plugin_init()
{
   
RegisterHam(Ham_Spawn"player""fw_player_spawned"1)
   
g_pcvar_index get_cvar_pointer("mp_startmoney");
}

public 
fw_player_spawned(id)
{
   if(!
is_user_alive(id)) return;
   new 
value get_pcvar_num(g_pcvar_index);
   if(
cs_get_user_money(id) < valuecs_set_user_money(idvalue);

Thanks, it worked here
yRestrict is offline