Help me.
#1

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.
Reply
#2

You probably set interior of player to something other than 0. Do SetPlayerInterior(playerid, 0); where your spawn code is.
Reply
#3

Still does not work.
Reply
#4

Can You Please Show Us Your OnPlayerSpawn
Reply
#5

Код:
public OnPlayerSpawn(playerid)
{
    return 1;
}
I have done nothing to it.
Reply
#6

Put This
Код:
SetPlayerInterior(playerid,0);
Under OnPlayerSpawn

Like This

Код:
public OnPlayerSpawn(playerid)
{
    SetPlayerInterior(playerid,0)
    return 1;
}
Reply
#7

Okay, thanks.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)