HELP PLS - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: HELP PLS (
/showthread.php?tid=79776)
HELP PLS -
XxerykxX - 30.05.2009
im getting this errors help me pls
Код:
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8990) : error 035: argument type mismatch (argument 2)
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : warning 217: loose indentation
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : error 014: invalid statement; not in switch
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : warning 215: expression has no effect
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : error 001: expected token: ";", but found ":"
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
5 Errors.
Re: HELP PLS -
XxerykxX - 30.05.2009
anybody?
Re: HELP PLS -
JoshTheBoss - 30.05.2009
you can see the number between ()
check the line if it is correct
Re: HELP PLS -
XxerykxX - 30.05.2009
i know but what the problem?..
there is my line
Код:
{SetPlayerPos(playerid, "bigjump", -594.1223,904.4135,432.5000, 135.0000, -594.1223,904.4135,432.5000, 135.0000, 0);
}
case 1: //BigJump2
Re: HELP PLS -
XxerykxX - 30.05.2009
Bumpy Bump
Re: HELP PLS -
XxerykxX - 30.05.2009
Pls Anserw ME
((
Re: HELP PLS -
miokie - 30.05.2009
SetPlayerPos should only be:
Код:
SetPlayerPos(playerid,x,y,z);
Not
Код:
SetPlayerPos(playerid,?,?,?,?,?,?,?,?,?,?);
Re: HELP PLS -
lol2112 - 30.05.2009
Stop spam posting. You need to give people time to read your post and reply. Your problem is that your code makes 0 sense. Consider using the tutorial links for beginners posted on this forum.
For starters you want this line instead of your SetPlayerPos:
Код:
SetPlayerPos(playerid, -594.1223, 904.4135,432.5000)
I really don't even know what you were trying to do with the rest of it...
Re: HELP PLS -
Correlli - 31.05.2009
And read pawn-lang.pdf so you will understand why you are getting these errors and warnings.
Re: HELP PLS -
XxerykxX - 31.05.2009
now im getting
Код:
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : warning 217: loose indentation
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : error 014: invalid statement; not in switch
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : warning 215: expression has no effect
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : error 001: expected token: ";", but found ":"
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Mariusz\Pulpit\SERV\Super Stunt Server\Super Stunt Server\SA-MP Server\gamemodes\SSClanS.pwn(8992) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.
Anyone help?