Quote:
Originally Posted by mlibre
@Jhob94 help him optimize his contribution
|
This is not scripting help, we can give some tips but this is not the place for him to improve the code.
I'll leave one script because this may be harder for him to find.
Code:
#include <amxmodx>
#include <cstrike>
#define Get_User_Money(%1) cs_get_user_money(%1)
#define Set_User_Money(%1,%2) cs_set_user_money(%1,%2)
public client_connect(id)
{
Set_User_Money(id, Get_User_Money(id) + 500) // This is just an example
}
__________________