Please Help PAWNO problem AGAIN! - 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: Please Help PAWNO problem AGAIN! (
/showthread.php?tid=431334)
Please Help PAWNO problem AGAIN! -
Mappers4Life - 17.04.2013
Well im trying to make it load up in the console so it says RSRP but in like these lines (\ - | /) anyway im sure i did it right but when i compile it i get 4 errors please help.
Compiler (Scroll down for the code):
Pawno Code:
Hope you guys can help me i am new at scripting and im trying to learn
Re: Please Help PAWNO problem AGAIN! -
zDivine - 17.04.2013
Lol... From line 30 to line 35, add "); at the end of each one.
Re: Please Help PAWNO problem AGAIN! -
TomatoRage - 17.04.2013
You must close the ) and put );
Re: Please Help PAWNO problem AGAIN! -
HurtLocker - 17.04.2013
Close each print line: print("*jhdfljhfjh;fsf");
EDIT: Too late.
Re: Please Help PAWNO problem AGAIN! -
Mappers4Life - 17.04.2013
Now i get this
Quote:
C:\Users\jack\Desktop\Scripting Folder\gamemodes\script.pwn(30) : error 027: invalid character constant
C:\Users\jack\Desktop\Scripting Folder\gamemodes\script.pwn(30) : error 027: invalid character constant
C:\Users\jack\Desktop\Scripting Folder\gamemodes\script.pwn(30) : error 029: invalid expression, assumed zero
C:\Users\jack\Desktop\Scripting Folder\gamemodes\script.pwn(30) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.
|
Code:
Re : Please Help PAWNO problem AGAIN! -
thegreathom - 17.04.2013
pawn Код:
// your code to bee like that :
print(" blablablablaba ");
// And in your you forgot " after *
u.u
Re: Please Help PAWNO problem AGAIN! -
HurtLocker - 17.04.2013
man... you got to close each string: print(
"sfouhkufhbk;lhfjkhg;
");
Re: Please Help PAWNO problem AGAIN! -
Necip - 17.04.2013
Every " Must close with a " like the ('s.So you my do it like:
pawn Код:
main() // look the "(" closes with a ")"
{
print("Hello world!"); //Take a look again to the "'s and ( , )'s.
}
Re: Please Help PAWNO problem AGAIN! -
TomatoRage - 17.04.2013
Close the " from 30-35
Re: Please Help PAWNO problem AGAIN! -
Mappers4Life - 17.04.2013
Still isnt working!!!