An Odd problem
#3

It sounds very much as a virtual world problem to me.

Have you tried hooking the "SetPlayerVirtualWorld" with _ALS_ and then tried to print each time it's called?
This way you can see if you actually change virtual world or not, and continue from there

Example
PHP код:
stock realSetPlayerVirtualWorld(playeridvirtual);
{
    new 
str[80];
    
format(strsizeof(str), "Your World changed to: %d"virtual);
    
SendClientMessage(playerid, -1str );
    
SetPlayerVirtualWorld(playeridvirtual);
    return 
1;
}
#if defined _ALS_SetPlayerVirtualWorld
    #undef SetPlayerVirtualWorld
#else
    #define _ALS_SetPlayerVirtualWorld
#endif
#define SetPlayerVirtualWorld realSetPlayerVirtualWorld 
Reply


Messages In This Thread
An Odd problem - by StrikerZ - 09.04.2017, 12:06
Re: An Odd problem - by Vince - 09.04.2017, 12:09
Re: An Odd problem - by denNorske - 09.04.2017, 12:11
Re: An Odd problem - by StrikerZ - 09.04.2017, 12:20
Re: An Odd problem - by StrikerZ - 09.04.2017, 13:28
Re: An Odd problem - by denNorske - 09.04.2017, 14:42
Re: An Odd problem - by StrikerZ - 10.04.2017, 09:25
Re: An Odd problem - by Sew_Sumi - 10.04.2017, 09:43
Re: An Odd problem - by StrikerZ - 10.04.2017, 09:47
Re: An Odd problem - by denNorske - 10.04.2017, 09:52

Forum Jump:


Users browsing this thread: 1 Guest(s)