Expression has no effect - 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: Expression has no effect (
/showthread.php?tid=649819)
Expression has no effect -
Djumza - 15.02.2018
Hey,
so let's say i want to add +1 kill to killerid stats.
pawn Код:
PlayerInfo[killerid][pKills]++;
what i have to do if i want to add more then +1 ?
pawn Код:
PlayerInfo[killerid][pKills]+3;
it gives me warning " warning 215: expression has no effect "
Thanks for help.
Re: Expression has no effect -
Abagail - 15.02.2018
Adding 3 like that won't do anything as a single statement, you can do:
PHP код:
PlayerInfo[killerid][pKills] += 3;
This adds 3 to the current value. You can also do some other operations this way.
Re: Expression has no effect -
Djumza - 15.02.2018
You are the king my friend ! Thanks a lot !