12.09.2013, 08:57
I am trying to script stuff for my server but I keep getting these random tag mismatch errors
Now, this gives me these errors
But I used the exact same thing for my other ones, and they don't give me warnings.
Lines: 39099-39102
Any idea what's up?
pawn Код:
if(Octane[playerid] == 1) return GiveDodMoney(playerid, -(Refill[playerid]*4*2.10));
if(Octane[playerid] == 2) return GiveDodMoney(playerid, -(Refill[playerid]*4*2.16));
if(Octane[playerid] == 3) return GiveDodMoney(playerid, -(Refill[playerid]*4*2.32));
if(Octane[playerid] == 4) return GiveDodMoney(playerid, -(Refill[playerid]*4*2.99));
pawn Код:
C:\Users\KiNG3\Desktop\Pengu1n\Gameservers\SA-MP\zGaming\gamemodes\URSP.pwn(39088) : warning 213: tag mismatch
C:\Users\KiNG3\Desktop\Pengu1n\Gameservers\SA-MP\zGaming\gamemodes\URSP.pwn(39089) : warning 213: tag mismatch
C:\Users\KiNG3\Desktop\Pengu1n\Gameservers\SA-MP\zGaming\gamemodes\URSP.pwn(39090) : warning 213: tag mismatch
C:\Users\KiNG3\Desktop\Pengu1n\Gameservers\SA-MP\zGaming\gamemodes\URSP.pwn(39091) : warning 213: tag mismatch
Lines: 39099-39102
pawn Код:
if(Octane[playerid] == 1) { FamInfo[idx][fMoney] += Refill[playerid]*4/2.10; }
else if(Octane[playerid] == 2) { FamInfo[idx][fMoney] += Refill[playerid]*4/2.16; }
else if(Octane[playerid] == 3) { FamInfo[idx][fMoney] += Refill[playerid]*4/2.32; }
else if(Octane[playerid] == 4) { FamInfo[idx][fMoney] += Refill[playerid]*4/2.99; }