J:\Documents and Settings\Boukortt\Bureau\samp\pawno\include\svAddons.inc(376) : warning 213: tag mismatch J:\Documents and Settings\Boukortt\Bureau\myserver\gamemodes\123123.pwn(357) : error 028: invalid subscript (not an array or too many subscripts): "PlayerData" J:\Documents and Settings\Boukortt\Bureau\myserver\gamemodes\123123.pwn(357) : warning 215: expression has no effect J:\Documents and Settings\Boukortt\Bureau\myserver\gamemodes\123123.pwn(357) : error 001: expected token: ";", but found "]" J:\Documents and Settings\Boukortt\Bureau\myserver\gamemodes\123123.pwn(357) : error 029: invalid expression, assumed zero J:\Documents and Settings\Boukortt\Bureau\myserver\gamemodes\123123.pwn(357) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.
GetPlayerPos(playerid, PlayerData[playerid][pX], PlayerData[playerid][pY], PlayerData[playerid][pZ]);
SendClientMessage(playerid,COLOR_GREY,string);
enum PlayerData
{
pPass,
pCash,
pAdmin,
pHelper,
pDeaths,
pPlayerLogged,
pMute,
pKicks,
pKills,
pJails,
pWarnings,
pJailed,
pJailTime,
pAHide,
pAdminDuty,
pHelperDuty,
pReported,
pWeapons[50],
pSpectate,
pRegistered,
pModel,
pMember,
pRank,
pBanned,
pAdmName[128],
pHelName[128],
pSkinUsed,
pHelpMe,
pDesertEagleKills,
pMarkX,
pMarkY,
pMarkZ,
pDonator,
pFightStyle
}
#define COL_GREY "{0xAFAFAF}"
Doesn't help you're using COLOR_GREY in your SendClientMessage but have it defined as COL_GREY.
|
SendClientMessage(playerid,COLOR_GREY,string);
You need to add the pX, pY and pZ entries to your enumerator in order for you to use them.
|