Help me please - 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: Help me please (
/showthread.php?tid=651895)
Help me please -
IonuTZElU - 30.03.2018
E:\gamma\gamemodes\rpgx.pwn(66130) : warning 225: unreachable code
E:\gamma\gamemodes\rpgx.pwn(66130) : error 029: invalid expression, assumed zero
forward fraudemasina2l();
public fraudemasina2l();
{
foreach(Player,i)
{
SetTimer("fall", 4000, 0);
SetPlayerDrunkLevel(i, 4999

;
LoopingAnim(i,"PED","KO_skid_front",4.1,0,0,0,0,0) ;
ertq=0;
}
return 1;
}
i don't understand, what's wrong ?
Re: Help me please -
IonuTZElU - 30.03.2018
I hope someone can help me.
Re: Help me please -
AdamsLT - 30.03.2018
Change this line
PHP код:
public fraudemasina2l();
to this
PHP код:
public fraudemasina2l()
remove the semicolon at the end
Re: Help me please -
IonuTZElU - 30.03.2018
Then, i'm getting this :
E:\gamma\gamemodes\rpgx.pwn(66130) : warning 225: unreachable code
E:\gamma\gamemodes\rpgx.pwn(66130) : error 029: invalid expression, assumed zero
Re: Help me please -
IonuTZElU - 30.03.2018
Just the same thing
Re: Help me please -
UFF - 30.03.2018
Quote:
Originally Posted by IonuTZElU
Then, i'm getting this :
E:\gamma\gamemodes\rpgx.pwn(66130) : warning 225: unreachable code
E:\gamma\gamemodes\rpgx.pwn(66130) : error 029: invalid expression, assumed zero
|
Код:
forward fraudemasina2l();
public fraudemasina2l()
{
foreach(Player,i)
{
SetTimer("fall", 4000, 0);
SetPlayerDrunkLevel(i, 49998 );
LoopingAnim(i, "PED", "KO_skid_front" ,4.1,0,0,0,0,0) ;
ertq=0;
}
return 1;
}
Re: Help me please -
AdamsLT - 30.03.2018
Quote:
Originally Posted by IonuTZElU
Then, i'm getting this :
E:\gamma\gamemodes\rpgx.pwn(66130) : warning 225: unreachable code
E:\gamma\gamemodes\rpgx.pwn(66130) : error 029: invalid expression, assumed zero
|
Which line is 66130?
Re: Help me please -
IonuTZElU - 30.03.2018
The same thing @UFF, i want to remember that this is the last thing of the script, does this mean something ?
Re: Help me please -
IonuTZElU - 30.03.2018
I didn't return false, does this have something to do with this ?
Re: Help me please -
IonuTZElU - 30.03.2018
line 66130 is one of the last lines of the script.