PHP Code:
#include <amxmodx>
#include <cstrike>
new g_maxplayers;
public plugin_init() {
register_logevent("start",2,"1=Round_Start")
g_maxplayers = get_maxplayers()
}
public start() {
for(new i=1; i < g_maxplayers;i++) {
cs_set_user_money(i,4500)
}
}
Do you want this ?