Dialog
#6

An dini example from reading it from a userfile using dcmd for the command would be something like:

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;
}
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
Reply


Messages In This Thread
Dialog - by cruising - 22.10.2011, 22:04
Re: Dialog - by Steven82 - 22.10.2011, 22:25
Re: Dialog - by cruising - 22.10.2011, 22:34
Re: Dialog - by Ensconce - 22.10.2011, 23:10
Re: Dialog - by cruising - 22.10.2011, 23:20
Re: Dialog - by grand.Theft.Otto - 22.10.2011, 23:37
Re: Dialog - by Babul - 22.10.2011, 23:41

Forum Jump:


Users browsing this thread: 1 Guest(s)