Attempted to read/write array element at negative index -1
#2

Code:
CellPhone[CellPhone[playerid][CalledBy]][InCall]= -1; 
SendClientMessage(CellPhone[playerid][CalledBy], COLOR_GREY, "Line went dead..."); 
CellPhone[CellPhone[playerid][CalledBy]][CalledBy] = -1;
to:
Code:
if(CellPhone[playerid][CalledBy] != -1)
{
	CellPhone[CellPhone[playerid][CalledBy]][InCall]= -1; 
	SendClientMessage(CellPhone[playerid][CalledBy], COLOR_GREY, "Line went dead..."); 
	CellPhone[CellPhone[playerid][CalledBy]][CalledBy] = -1;
}
Reply


Messages In This Thread
Attempted to read/write array element at negative index -1 - by akib - 20.01.2019, 11:05
Re: Attempted to read/write array element at negative index -1 - by Jeffry - 20.01.2019, 11:11
Re: Attempted to read/write array element at negative index -1 - by akib - 20.01.2019, 11:24

Forum Jump:


Users browsing this thread: 1 Guest(s)