- เครดิต
- 16
- ความรู้
-
- เงิน $
-
- ความดี
-
|
คอมพายสคริปแล้วขึ้นแบบนี้
C:\Users\computer\Downloads\GTAKilldeathking6554\GTA-Killdeath .pwn(79620) : warning 219: local variable "box" shadows a variable at a preceding level
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
พอไปดูบรรทัดที่ 79620 มันเป็นแบบนี้คับ
if(strcmp(cmd, "/เปิดกล่อง", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pBox] <=0)
{
SendClientMessage(playerid, COLOR_LIGHTRED, " ไม่มีกล่อง");
return 1;
}
if(PlayerInfo[playerid][pLevel] >= 1)
{
GetPlayerName(playerid, sendername, sizeof(sendername));
new randsmoke = random(100)+1;
if(randsmoke >= 1 && randsmoke <= 99)
{
new box = 8000 + random (15000);
GetPlayerName(playerid, sendername, sizeof(sendername));
SafeGivePlayerMoney(playerid, box);
format(string,sizeof(string), "* %s เปิดกล่องเงินแล้วหยิบเงินมานับ", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
format(string, sizeof(string), "** %s เขาหยิบเงินออกมาจากกล่องเงินและได้เงินมา $%d", sendername,box);
SendClientMessageToAll(0x61F600AA, string);
PlayerInfo[playerid][pBox] -= 1;
return 1;
}
if(randsmoke == 100)
{
GetPlayerName(playerid, sendername, sizeof(sendername));
new box2 = 50000 + random (150000);
SafeGivePlayerMoney(playerid, box2);
ClearChatbox(playerid, 500);
format(string,sizeof(string), "* %s เปิดกล่องเงินแล้วหยิบเงินมานับ", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
format(string, sizeof(string), "[ผู้โชคดี] %s ได้รับแจ็กพอตจากกล่องเงินมีเงินอยู่ในกล่องถึง $%d (เขาโชคดี)", sendername,box2);
SendClientMessageToAll(COLOR_YELLOW2, string);
new Float:boomx, Float:boomy, Float:boomz;
GetPlayerPos(giveplayerid,boomx, boomy, boomz);
CreateExplosion(boomx, boomy , boomz, 7, 10);
PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
PlayerInfo[playerid][pBox] -= 1;
return 1;
}
}
}
return 1;
} |
|