[HELP] Block transmission of Money
#4

I put the gArena[playerid] == false; happened in OnPlayerDeath and 2 errors
Code:
if (strcmp(cmdtext,"/x1", true)==0)
	{
    if(GetPlayerMoney(playerid) < 200) return SendClientMessage(playerid, COLOR_RED, "You need $ 200 to use the teleportation!");
	SetPlayerInterior(playerid,0);  
	SetPlayerPos(playerid,1890.046,-1316.395,49.069);
    new pname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
    format(string, sizeof(string), "*** %s was to o x1 (/x1)", pname);
    gArena[playerid] == true; //1 ERROR
    SendClientMessageToAll(COLOR_YELLOW, string);
    GivePlayerWeapon(playerid,4,0);
    GivePlayerWeapon(playerid,26,1000);
    GivePlayerWeapon(playerid,31,1000);
    GivePlayerWeapon(playerid,24,1000);
    GivePlayerWeapon(playerid,32,1000);
	return 1;
	}
Code:
public OnPlayerDeath(playerid, killerid, reason)
{
  new playercash;
	new killedplayer[MAX_PLAYER_NAME];
	new string[256];
	Arena[playerid] = 0;
	gArena[playerid] == false; //2 ERROR
Lines in the arena with error:
Code:
gArena[playerid] == true; //1 ERROR
At OnPlayerDeath:
Code:
gArena[playerid] == false; //2 ERROR
ERROR:
Code:
warning 215: expression has no effect
warning 215: expression has no effect
Reply


Messages In This Thread
[HELP] Block transmission of Money - by J. - 08.04.2010, 01:50
Re: [HELP] Block transmission of Money - by cessil - 08.04.2010, 01:59
Re: [HELP] Block transmission of Money - by cloud9 - 08.04.2010, 02:44
Re: [HELP] Block transmission of Money - by J. - 08.04.2010, 03:49
Re: [HELP] Block transmission of Money - by cloud9 - 08.04.2010, 04:19

Forum Jump:


Users browsing this thread: 1 Guest(s)