Pawn Compiler Crash - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Pawn Compiler Crash (
/showthread.php?tid=591900)
Pawn Compiler Crash -
anonimus22222 - 18.10.2015
Hey, what's wrong with this code? Pawn Compiler receives crash.
Код:
if(strcmp(cmd, "/vip", true) == 0)
{
ShowPlayerDialog(playerid, 666, DIALOG_STYLE_MSGBOX, "{FFFFFF}VIP - Beneficii", "{99FFFF}SILVER{FFFFFF}:\n - Acces la chatul donatorilor\n - Acces la mesaje vizibile tuturor\n - Acces la 5 arme diferite cu gloante infinite.\
\n\n\n{996600}BRONZE{FFFFFF}:\n - Acces total {99FFFF}SILVER{FFFFFF}\n - Acces reparatie masina\n - Acces NOS masina\n - Acces Transfer din orice locatie\n - Acces Depozitare din orice locatie\n\n{FFFF00}GOLD{FFFFFF}:\n - Acces total {99FFFF}SILVER{FFFFFF} + {996600}BRONZE{FFFFFF}\n - Acces de a aduce masina pe 4 roti.","{FF0000}Inteles","");
}
Re: Pawn Compiler Crash -
karemmahmed22 - 18.10.2015
PHP код:
if(strcmp(cmd, "/vip", true) == 0)
{
ShowPlayerDialog(playerid, 666, DIALOG_STYLE_MSGBOX,"VIP - Beneficii", "SILVER:\n - Acces la chatul donatorilor\n - Acces la mesaje vizibile tuturor\n - Acces la 5 arme diferite cu gloante infinite.\nBRONZE:\n - Acces total SILVER\n - Acces reparatie masina\n - Acces NOS masina\n - Acces Transfer din orice locatie\n - Acces Depozitare din orice locatie\nGOLD:\n - Acces total SILVER + BRONZE\n - Acces de a aduce masina pe 4 roti.","Inteles","");
}
Re: Pawn Compiler Crash -
anonimus22222 - 18.10.2015
Thank's !