04.09.2016, 17:21
I use the following system to give a specific user score what i need to add is a /setscore command with sscanf, need help.
http://pastebin.com/rssKV8j0
http://pastebin.com/rssKV8j0
CMD:setscore(playerid, params[])
{
//Checks
new id, score;
if(sscanf(params, "ui", id, score)) return SendClientMessage(playerid, -1, "Wrong usage..");
SetPlayerScoreEx(id, score);
//Send messages if you want..
return 1;
}