How to? - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How to? (
/showthread.php?tid=168091)
How to? -
Ihsan_Cingisiz - 14.08.2010
else if(PlayerInfo[playerid][pDeaths] <= 100 && !<= 50) {
ins = 50000;
}
I have: else if(PlayerInfo[playerid][pDeaths] <= 50) {
and: else if(PlayerInfo[playerid][pDeaths] <= 100) {
So how can i correctly do that: else if(PlayerInfo[playerid][pDeaths] <= 100 && !<= 50) {
If pdeaths smaller is than 100 and not smaller is than 50...
Re: How to? -
[XST]O_x - 14.08.2010
pawn Код:
if(PlayerInfo[playerid][pDeaths] <= 100 && PlayerInfo[playerid][pDeaths] >= 50) {
Re: How to? -
Ihsan_Cingisiz - 14.08.2010
Quote:
Originally Posted by [XST]O_x
pawn Код:
if(PlayerInfo[playerid][pDeaths] <= 100 && PlayerInfo[playerid][pDeaths] >= 50) {
|
Thanks man!