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



new error - Godzilla8957 - 31.07.2012

i don't know why its giving me all the errors

Код:
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19555) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19556) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19557) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19558) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19559) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19560) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19561) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19562) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19563) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19564) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19565) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19566) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19567) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19568) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19569) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19570) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19571) : warning 215: expression has no effect
C:\Users\Jordan\Desktop\Maximum Roleplay\gamemodes\NGRP_nomysql.pwn(19572) : warning 215: expression has no effect



Re: new error - DeathOnaStick - 31.07.2012

You miss a "{" or a "}" somewhere or your code has a bad format (wrong use of whitespace).

Might also be a "return" at a wrong place.


Re: new error - xSkullx - 31.07.2012

Give us the script to help ya.


Respuesta: Re: new error - HarlemSAMP - 31.07.2012

Quote:
Originally Posted by xSkullx
Посмотреть сообщение
Give us the script to help ya.
That sounded so funny, hope you get the point XD


Re: new error - xSkullx - 31.07.2012

Show,give is the same
You have other ideea?


Re: new error - [KHK]Khalid - 31.07.2012

Usually happens when you try to set a variable value like this:

Wrong:
pawn Код:
new x;
x == 1;
Which should be:
pawn Код:
new x;
x = 1;