27.12.2013, 16:43
Here is your answer!
I didn't know how to do this either actually! Let me tell you how I came up with the conclusion of how to get the answer to YOUR question. I ******d random words that had to do with samp, stars and being wanted, and I didn't even spell it out well or used much grammar and it was on my first search anyways.
Example:
I didn't know how to do this either actually! Let me tell you how I came up with the conclusion of how to get the answer to YOUR question. I ******d random words that had to do with samp, stars and being wanted, and I didn't even spell it out well or used much grammar and it was on my first search anyways.
Example:
pawn Код:
CMD:givestar(playerid, params[])
{
new targetID, level;
if(sscanf(params, "ui", targetID, level)) return 1;
new alreadyWanted = GetPlayerWantedLevel(targetID);
if(alreadyWanted == 0)
{
SetPlayerWantedLevel(targetID, level);
return 1;
}
return 1;
}