30.05.2012, 11:45
Well, but this line crashes your server:
SendClientMessage(playerid, WHITE, "You added %s succesfully as your referral!", Name);
You must format the string with the name and after thet sendckient message with string:
format(string, sizeof(string), "You added %s succesfully as your referral!", Name);
SendClientMessage(playerid, WHITE, string);
SendClientMessage(playerid, WHITE, "You added %s succesfully as your referral!", Name);
You must format the string with the name and after thet sendckient message with string:
format(string, sizeof(string), "You added %s succesfully as your referral!", Name);
SendClientMessage(playerid, WHITE, string);