Use 'Player Spawn'
PHP Code:
#include <amxmodx>
#include <cstrike>
#include <hamsandwich>
new SetMoney
public plugin_init()
{
register_plugin("Set money", "author", "version")
SetMoney = register_cvar("amx_setmoney", "4500")
RegisterHam(Ham_Spawn, "player", "start", 1)
}
public start(id)
{
cs_set_user_money(id,get_pcvar_num(SetMoney))
}
__________________
My nickname is nucLeaR, I just screwed up at registering and didn't want to change after that X_X.