Problem with ...
#2

Quote:
Originally Posted by Alpay0098
Посмотреть сообщение
Hi community,

Problems :
Код:
gamemodes\N-RP.pwn(20388) : error 029: invalid expression, assumed zero
gamemodes\N-RP.pwn(20388) : warning 215: expression has no effect
Codes :
Код:
public WFuelIncrease()
{
    WFuel[1][wsfuel] =+ 1000; // line 20388
    return 1;
}

WFuel[1][wsfuel] =+ 1000;

This line is pure nonsense.

It shall be:
Codes :
Код:
public WFuelIncrease(playerid)
{
    WFuel[playerid][wsfuel] =+ 1000; // line 20388
    return 1;
}
[/QUOTE]
Reply


Messages In This Thread
Problem with ... - by Alpay0098 - 10.12.2015, 12:17
Re: Problem with ... - by CrazyChoco - 10.12.2015, 12:19
Re: Problem with ... - by Alpay0098 - 10.12.2015, 12:32
Re: Problem with ... - by ATGOggy - 10.12.2015, 12:35
Re: Problem with ... - by PrO.GameR - 10.12.2015, 12:53
Re: Problem with ... - by Alpay0098 - 10.12.2015, 13:00

Forum Jump:


Users browsing this thread: 1 Guest(s)