06.01.2010, 14:08
Quote:
Originally Posted by Mo3
How the fuck did you code OnPlayerClickMap?
|
There could be a problem with setting player's position in the gamemode or other filterscript so i suggest that you use _SetPlayerPos function with CallRemoteFunction.
_SetPlayerPos function won't call the OnPlayerClickMap callback.
So you could use this in your gamemode/other filterscript (if you're using this filterscript):
pawn Код:
stock SetPlayerPosition(playerid, Float:x, Float:y, Float:z) CallRemoteFunction("_SetPlayerPos", "ifff", playerid, x, y, z);
Quote:
Originally Posted by Mo3
Is there any way to use it for other things?
|