Callback's Instruction block isn't executed
#1

Hello everyone,

I'm in trouble because i have a problem that i don't understand.


The instruction block of the callback OnPlayerDisconect() idn't executed.



Код:
public OnPlayerDisconnect(playerid, reason)
{
	print("Callback disconect CALLED so instructions block is executed");//Debug message
	gPlayerConnected--;//TY Moathib for the idea
	printf("Joueurs connectйs: %d", gPlayerConnected);//Debug message
	RefreshGangMembers();//We just call a function
	CheckGangClosed();//We just call a function
	return 1;
}
This "code" is a proff, because no message(s) appear in the server console a player left.

I set some "debug messages" in the functions called in this callback (RefresgGangMembers() and CheckGangClosed() )
and no messages appear to.


This "slice of script" is in a FilterScript and the callback is called in other FS and in the GM.

But that's not all!
When I set the callback to always return "0"... nobody can connect to the server: the Sa:Mp client loads (we can see a black screen) and quit.

WTF?!

A server script makes a client buging like this?! WTF?!


Seriously, i probably made an enourmous mistake and i hope someone(s) can help me.

I hope the mistake is completly my fault and not the Sa:Mp team fault!

Hopefully, Jujuv.


PS:Sorry about my English.I'm french
Reply
#2

show us ur functions which called on disconnect
anyway try using printf("dmdk");
Reply
#3

Код:
RefreshGangMembers()
{
	gangMembers[1] = 0;
	gangMembers[2] = 0;
	gangMembers[3] = 0;
	gangMembers[4] = 0;
	print("RESET GANGMEMBERS COUNT");
	new gangId, i = 0;
	for(gangId = 0; gangId < 5; gangId++)
	{
	    do
	    {
		    if(GetPlayerGang(i) == gangId)
		    {
	     		gangMembers[gangId]++;
	     		print("Adding a member to a count (gangmembers");
		    }
	    	i++;
	    	print("Executing the loop");
	    }
		while(i < gPlayerConnected);
	}
 	return 1;
}
Код:
CheckGangClosed()
{
	new gangId;
	for(gangId = 0; gangId < 5; gangId++)
	{
	    if(gangMembers[gangId] == 0)
	    { gangs[gangId] = 0; gLeader[gangId] = 800; print("Closing Gang");}
	    print("Executing second loop");
	}
	return 1;
}
So i'll try what u said.

EDIT:I tried to comment my actual instruction block and the two functions then writing ur example but it doesn't change anything.

Код:
public OnPlayerDisconnect(playerid, reason)
{
    printf("dmdk");
	/*
	print("Callback disconect CALLED so instructions block is executed");
	gPlayerConnected--;
	printf("Joueurs connйctйs: %d", gPlayerConnected);
	RefreshGangMembers();
	CheckGangClosed();
 	*/
	return 1;
}
The message (here "dmdk") desn't appear in the server console.
Reply
#4

I tried to launch the server without other Filerscripts rhen the script works.
I'm on the way
Reply
#5

Problem fixex by changing the server.cfg .
I guess the Filterscripts weren't loading on the good order.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)