22.02.2010, 12:57
I am helping you, your being to ignorant to realize that were all trying to help you.
MSGBox is a Dialog Type, which goes into the function ShowPlayerDialog(); Which the link Torran gave you showed you how to do, it's simple fucktard.
https://sampwiki.blast.hk/wiki/ShowPlayerDialog.
He didn't misunderstand anything, you misunderstood everything.
MSGBox is a Dialog Type, which goes into the function ShowPlayerDialog(); Which the link Torran gave you showed you how to do, it's simple fucktard.
https://sampwiki.blast.hk/wiki/ShowPlayerDialog.
He didn't misunderstand anything, you misunderstood everything.
Код:
// Define (On Top Of Script)
#define DSTATS 2000
// Copy & Replace
if(strcmp(cmd, "/commands", true) == 0 || strcmp(cmd, "/cmds", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new dstring[2048];
format(dstring, sizeof(dstring), "/rules, /stats, other commands here");
ShowPlayerDialog(playerid,DSTATS,DIALOG_STYLE_MSGBOX,"Stats",dstring,"Ok","Exit");
}
return 1;
}

