11.08.2013, 18:05
Galera, criei esse enum e essa Array:
e na hora de compilar da esse erro:
ta aki meu GM:
pawn Код:
enum pDados
{
pNome,
pDinheiro,
pTime,
pAdmin,
pMatou,
pMorreu
};
new ArrayDados[MAX_PLAYERS][pDados];
pawn Код:
C:\Users\Usuario\Desktop\Nova pasta\gamemodes\dialog.pwn(26) : error 032: array index out of bounds (variable "ArrayDados")
C:\Users\Usuario\Desktop\Nova pasta\gamemodes\dialog.pwn(26 -- 29) : error 029: invalid expression, assumed zero
C:\Users\Usuario\Desktop\Nova pasta\gamemodes\dialog.pwn(29) : warning 215: expression has no effect
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
pawn Код:
#include <a_samp>
#include <dini>
#define DialogTimes 100
#define CONTAS-TDM "Contas TDM/%s"
enum pDados
{
pNome,
pDinheiro,
pTime,
pAdmin,
pMatou,
pMorreu
};
new ArrayDados[MAX_PLAYERS][pDados];
SalvarPlayer(playerid)
{
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, Nome, sizeof(Nome));
new String[50];
format(String, sizeof(String), CONTAS-TDM, Nome);
dini_IntSet(String,"Dinheiro", GetPlayerMoney(playerid));
dini_IntSet(String,"Time", ArrayDados[MAX_PLAYERS][pTime],
dini_IntSet(String,"Matou", ArrayDados[MAX_PLAYERS][pMatou],
dini_IntSet(String,"Morreu", ArrayDados[MAX_PLAYERS][pMorreu],
return 1;
}
main()
{
print("\n----------------------------------");
print(" Blank Gamemode by your name here");
print("----------------------------------\n");
}
public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}
public OnGameModeExit()
{
return 1;
}
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
return 1;
}
public OnPlayerRequestSpawn(playerid)
{
return 1;
}
public OnPlayerConnect(playerid)
{
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
SalvarPlayer(playerid);
return 1;
}
public OnPlayerSpawn(playerid)
{
return 1;
}
public OnPlayerDeath(playerid, killerid, reason)
{
return 1;
}
public OnVehicleSpawn(vehicleid)
{
return 1;
}
public OnVehicleDeath(vehicleid, killerid)
{
return 1;
}
public OnPlayerText(playerid, text[])
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/time", cmdtext, true, 10) == 0)
{
new str[200] = "Escolha seu time";
ShowPlayerDialog(playerid, DialogTimes, DIALOG_STYLE_MSGBOX, "Times", str, "Azul", "Vermelho");
return 1;
}
return 0;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DialogTimes)
{
if(response)
{
SendClientMessage(playerid, -1, "Seu time e Azul");
ArrayDados[playerid][pTime] = 1;
}
else
{
SendClientMessage(playerid, -1, "Vermelho");
ArrayDados[playerid][pTime] = 2;
}
}
return 1;
}
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
return 1;
}
public OnPlayerExitVehicle(playerid, vehicleid)
{
return 1;
}
public OnPlayerStateChange(playerid, newstate, oldstate)
{
return 1;
}
public OnPlayerEnterCheckpoint(playerid)
{
return 1;
}
public OnPlayerLeaveCheckpoint(playerid)
{
return 1;
}
public OnPlayerEnterRaceCheckpoint(playerid)
{
return 1;
}
public OnPlayerLeaveRaceCheckpoint(playerid)
{
return 1;
}
public OnRconCommand(cmd[])
{
return 1;
}
public OnObjectMoved(objectid)
{
return 1;
}
public OnPlayerObjectMoved(playerid, objectid)
{
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
return 1;
}
public OnPlayerSelectedMenuRow(playerid, row)
{
return 1;
}
public OnPlayerExitedMenu(playerid)
{
return 1;
}