SA-MP Forums Archive
Pawno error - 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: Pawno error (/showthread.php?tid=353462)



Pawno error - McFellow - 23.06.2012

Hello,
Im getting this error
pawn Код:
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : error 029: invalid expression, assumed zero
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : error 001: expected token: ";", but found ")"
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : error 029: invalid expression, assumed zero
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : fatal error 107: too many error messages on one line
And this is what i scripted
pawn Код:
CMD:help(playerid, params[])
{
    return ShowPlayerDialog(playerid, HELPMENU, DIALOG_STYLE_LIST, "What do you wanna know?","General\nChat\nOthers\n","Select","Cancel");
    return 1;
}
Can some one help me out?


Re: Pawno error - SomebodyAndMe - 23.06.2012

pawn Код:
CMD:help(playerid, params[])
{
    ShowPlayerDialog(playerid, HELPMENU, DIALOG_STYLE_LIST, "What do you wanna know?","General\nChat\nOthers\n","Select","Cancel");
    return 1;
}



Re: Pawno error - BlackBank - 23.06.2012

pawn Код:
CMD:help(playerid, params[])
{
    ShowPlayerDialog(playerid, HELPMENU, DIALOG_STYLE_LIST, "What do you wanna know?","General\nChat\nOthers\n","Select","Cancel");
    return 1;
}



Re: Pawno error - McFellow - 23.06.2012

Sorry not working still the same error


Re: Pawno error - nilanjay - 23.06.2012

pawn Код:
CMD:help(playerid, params[])
{
    return ShowPlayerDialog(playerid, HELPMENU, DIALOG_STYLE_LIST, "What do you wanna know?","General\nChat\nOthers","Select","Cancel");// You just put the extra \n which was not needed.
    return 1;
}



Re: Pawno error - McFellow - 23.06.2012

Quote:
Originally Posted by nilanjay
Посмотреть сообщение
pawn Код:
CMD:help(playerid, params[])
{
    return ShowPlayerDialog(playerid, HELPMENU, DIALOG_STYLE_LIST, "What do you wanna know?","General\nChat\nOthers","Select","Cancel");// You just put the extra \n which was not needed.
    return 1;
}
Still this error
pawn Код:
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : error 029: invalid expression, assumed zero
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : warning 215: expression has no effect
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : error 001: expected token: ";", but found ")"
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : error 029: invalid expression, assumed zero
C:\Users\Patrick\Desktop\samp server\McFellow Race server\gamemodes\McFellowRacing.pwn(6902) : fatal error 107: too many error messages on one line



Re: Pawno error - Jonny5 - 23.06.2012

you dont need 2 returns!!
remove the "return 1;"


Re: Pawno error - BlackBank - 23.06.2012

What's line 6902?
Can you show that line please...


Re: Pawno error - McFellow - 23.06.2012

Quote:
Originally Posted by BlackBank3
Посмотреть сообщение
What's line 6902?
Can you show that line please...
pawn Код:
ShowPlayerDialog(playerid, HELPMENU, DIALOG_STYLE_LIST, "What do you wanna know?","General\nChat\nOthers","Select","Cancel");
Thats on line 6902


Re: Pawno error - M3mPHi$_S3 - 23.06.2012

use
pawn Код:
#include <a_samp>
at top of your script !!! then try again