Help me. - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help me. (
/showthread.php?tid=589861)
Help me. -
xynaaaa - 23.09.2015
I have been working on a gamemode, then when I connect, log in, select a skin and spawn, I see nothing. I just see doors and enter points, nothing else. Help me please.
Re: Help me. -
BroZeus - 23.09.2015
You probably set interior of player to something other than 0. Do SetPlayerInterior(playerid, 0); where your spawn code is.
Re: Help me. -
xynaaaa - 24.09.2015
Still does not work.
Re: Help me. -
Devon007 - 24.09.2015
Can You Please Show Us Your OnPlayerSpawn
Re: Help me. -
xynaaaa - 24.09.2015
Код:
public OnPlayerSpawn(playerid)
{
return 1;
}
I have done nothing to it.
Re: Help me. -
Devon007 - 24.09.2015
Put This
Код:
SetPlayerInterior(playerid,0);
Under OnPlayerSpawn
Like This
Код:
public OnPlayerSpawn(playerid)
{
SetPlayerInterior(playerid,0)
return 1;
}
Re: Help me. -
xynaaaa - 24.09.2015
Okay, thanks.