10.11.2016, 19:22
Hey !
Errors :
Code:
Thanks
Yaa
Errors :
PHP код:
D:\pawno-master\include\SAPData/Gameplay/Duel.pwn(694) : error 008: must be a constant expression; assumed zero
D:\pawno-master\include\SAPData/Gameplay/Duel.pwn(697) : error 008: must be a constant expression; assumed zero
D:\pawno-master\include\SAPData/Gameplay/Duel.pwn(700) : error 008: must be a constant expression; assumed zero
D:\pawno-master\include\SAPData/Gameplay/Duel.pwn(703) : error 008: must be a constant expression; assumed zero
PHP код:
CMD:declineduel(playerid, params[])
{
SendClientMessage(playerid, COLOR_RED, "You decline the duel inventation");
SendClientMessage(Inventation[playerid], COLOR_RED, "your duel inventation got declined.");
Inventation[InventationSent[playerid]] = -1;
InventationSent[playerid] = -1;
switch(playerid)
{
case DualRoom1: <-- 694
DualRoom1 = -1;
case DualRoom2: <-- 697
DualRoom2 = -1;
case DualRoom3: <-- 700
DualRoom3 = -1;
case DualRoom4: <-- 703
DualRoom4 = -1;
}
return 1;
}
Yaa