22.10.2011, 23:37
An dini example from reading it from a userfile using dcmd for the command would be something like:
This will not work for you unless you actually had those variables, enumerations and the command processor (DCMD). Though this is an example like I said
pawn Код:
dcmd_stats(playerid,params[])
{
new string[128];
new level = PlayerInfo[playerid][Level]; // admin level
format(string,128,"Admin Level: %d",level); // %d represents the level variable we created, which substitutes PlayerInfo[playerid][Level]
SendClientMessage(playerid,-1,string);
return 1;
}
