Need a little bit help
#1

i got this error:
pawn Код:
C:\Users\Maarten\Desktop\SA-MP\Los Santos Turf War\gamemodes\1.pwn(3194) : error 027: invalid character constant
on this line
pawn Код:
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "Select your Weapons", "SMG-AK47-Grenades\Tec9-M4-Chainsaw\MicroSMG-Shotgun-Knife", "Choose", "No Weaps");
Reply
#2

You forgot the "n"
pawn Код:
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "Select your Weapons", "SMG-AK47-Grenades\nTec9-M4-Chainsaw\nMicroSMG-Shotgun-Knife", "Choose", "No Weaps");
Reply
#3

As far we can see that \T and \M are invalid, because using \ will also check its neighbour char.
(doing \t will add a tab tbh)


Try
pawn Код:
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "Select your Weapons", "SMG\nAK47\nGrenades\nTec9-\nM4\nChainsaw\nMicroSMG\nShotgun\nKnife", "Choose", "No Weaps");
Reply
#4

thank you all ! :P
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)