Errors in compiler when making rules dialog? (Urgent) - 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: Errors in compiler when making rules dialog? (Urgent) (
/showthread.php?tid=410607)
Errors in compiler when making rules dialog? (Urgent) -
Goldino - 26.01.2013
Hey guys, added a rules command to my GM. Here it is:
Код:
ShowPlayerDialog(playerid,100,DIALOG_STYLE_MSGBOX,"{FFD000}Server Rules","1.Do not go around killing people without a reason.\n Punishment: 3-5 days ban\n 2. Do not bug abuse\nPunishment: 7 days ban\n 3. Do not team with hackers, report them as soon as possible/n Punishment: 15-20 days ban/n 4. Do not advertise other servers or websites./n Punishment: 30-40 days ban/n 5. Do not scam other players in this server/n Punishment: 30-45 days ban/n 6. You may not hack or cheat in this server/n Punishment: Perm ban/n 7. Always respect Admins and other players in this server/n Punishment: 10 days ban /n 8. Always speak English in the main chat./n Punishment: A warning","Ok");
I'm not sure the errors come up because it is long or something. I'm not sure! Here's the errors:
Код:
C:\DOCUME~1\DANNY~1.YOU\MYDOCU~1\CNRSER~1\GAMEMO~1\Testing.pwn(623) : error 075: input line too long (after substitutions)
C:\DOCUME~1\DANNY~1.YOU\MYDOCU~1\CNRSER~1\GAMEMO~1\Testing.pwn(624) : error 037: invalid string (possibly non-terminated string)
C:\DOCUME~1\DANNY~1.YOU\MYDOCU~1\CNRSER~1\GAMEMO~1\Testing.pwn(624) : warning 215: expression has no effect
C:\DOCUME~1\DANNY~1.YOU\MYDOCU~1\CNRSER~1\GAMEMO~1\Testing.pwn(624) : error 001: expected token: ";", but found "."
C:\DOCUME~1\DANNY~1.YOU\MYDOCU~1\CNRSER~1\GAMEMO~1\Testing.pwn(624) : error 029: invalid expression, assumed zero
C:\DOCUME~1\DANNY~1.YOU\MYDOCU~1\CNRSER~1\GAMEMO~1\Testing.pwn(624) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
5 Errors.
Please help fix it
Re: Errors in compiler when making rules dialog? (Urgent) -
Da_Noob - 26.01.2013
You use /n while it should be \n
Re: Errors in compiler when making rules dialog? (Urgent) -
]Rafaellos[ - 26.01.2013
PHP код:
ShowPlayerDialog(playerid,100,DIALOG_STYLE_MSGBOX,"{FFD000}Server Rules","1.Do not go around killing people without a reason.\n Punishment: 3-5 days ban\n 2. Do not bug abuse\nPunishment: 7 days ban\n 3. Do not team with hackers, report them as soon as possible\n Punishment: 15-20 days ban\n 4. Do not advertise other servers or websites.\n Punishment: 30-40 days ban\n 5. Do not scam other players in this server\n Punishment: 30-45 days ban\n 6. You may not hack or cheat in this server\n Punishment: Perm ban\n 7. Always respect Admins and other players in this server\n Punishment: 10 days ban \n 8. Always speak English in the main chat.\n Punishment: A warning","Ok","");