PHP Code:
cs_set_user_money(Player, clamp(cs_get_user_money(Player) + 1000, 0, 16000));
PHP Code:
cs_set_user_money(Player, ( cs_get_user_money( Player ) + 1000));
What do you mean by the first round? The first round a player plays or the first round of the map?
Edit:
PHP Code:
public onSpawn( Player )
{
new name[ 33 ];
get_user_name( Player,name,charsmax( name ) )
if( is_user_alive( Player ) && ( get_user_flags( Player ) & ADMIN_RESERVATION ) )
{
cs_set_user_money(Player, ( cs_get_user_money( Player ) + 1000));
ClientPrintColor(Player, "^4[^3FrontLineD2^4]^1Because of his ^4VIP privileges^1, player ^3%s^1 is getting^4 1000$^1 bonus!", name)
}
}
__________________