24.08.2014, 15:46
Hello everyone. As you see I want to know which variables do I need to put when someone types a cmd for example /calculator it appears an action as the player is using the calculator? Thank you, I will rep +
CMD:calculator(playerid, params[])
{
new name[128],str[128];
GetPlayerName(playerid, name, sizeof(name));
format(str, sizeof(str),"%s Has opened the calculator to Do some sums", name);
SendClientMessage(-1,str);
return 1;
)
pawn Код:
|