Spawn Point bug with SCRP script
#1

So, I am working on this script, but I tested the spawn points. I used /fspawn due to the fact I am in a faction and tried /spawnpoint and set it to the the faction spawn, relogged and I still spawned on the last position I used to be at. Tried the same with the airport spawn, still spawned at the old position. I am sure, you all have the SCRP script, but in case you want any of the function or anything, just tell me.

Here is the OnPlayerSpawn.

pawn Код:
public OnPlayerSpawn(playerid)
{
    // Skill levels
    SetPlayerSkillLevel(playerid, WEAPONSKILL_PISTOL, 0);
    SetPlayerSkillLevel(playerid, WEAPONSKILL_MICRO_UZI, 0);
    SetPlayerSkillLevel(playerid, WEAPONSKILL_SPAS12_SHOTGUN, 0);

    if (PlayerData[playerid][pHUD])
    {
        TextDrawShowForPlayer(playerid, gServerTextdraws[0]);
        TextDrawShowForPlayer(playerid, gServerTextdraws[1]);
    }
    SetPlayerSkin(playerid, PlayerData[playerid][pSkin]);
    Streamer_ToggleIdleUpdate(playerid, true);

    PlayerData[playerid][pKilled] = 0;

    if (PlayerData[playerid][pBleeding])
    {
        PlayerData[playerid][pBleedTime] = 1;
    }
    if (PlayerData[playerid][pJailTime] > 0)
    {
        if (PlayerData[playerid][pPrisoned])
        {
            SetPlayerInPrison(playerid);
        }
        else
        {
            SetPlayerPos(playerid, 197.6346, 175.3765, 1003.0234);
            SetPlayerInterior(playerid, 3);

            SetPlayerVirtualWorld(playerid, (playerid + 100));
            SetPlayerFacingAngle(playerid, 0.0);

            SetCameraBehindPlayer(playerid);
        }
        ResetWeapons(playerid);

        PlayerTextDrawShow(playerid, PlayerData[playerid][pTextdraws][70]);
        SendServerMessage(playerid, "You have %d seconds of remaining jail time.", PlayerData[playerid][pJailTime]);
    }
    else if (PlayerData[playerid][pHospital] != -1)
    {
        PlayerData[playerid][pHospitalTime] = 0;

        PlayerData[playerid][pHunger] = 50;
        PlayerData[playerid][pThirst] = 50;

        SetPlayerInterior(playerid, 3);
        SetPlayerVirtualWorld(playerid, playerid + 100);

        SetPlayerPos(playerid, -211.0370, -1738.6848, 676.7153);
        SetPlayerFacingAngle(playerid, 82.0000);

        SetPlayerCameraPos(playerid, -214.236602, -1738.812133, 676.648132);
        SetPlayerCameraLookAt(playerid, -203.072738, -1738.656127, 675.768737);

        ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0);
        ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0);

        GameTextForPlayer(playerid, "~n~~n~~n~~n~~n~~n~~n~~n~~n~~w~Recovering... 15", 1000, 3);
        TogglePlayerControllable(playerid, 0);
    }
    else if (!PlayerData[playerid][pCreated])
    {
        TogglePlayerControllable(playerid, 0);
        SetPlayerPos(playerid, 216.8005, -99.8691, 1005.2578);
        SetPlayerFacingAngle(playerid, 90.0000);

        SetPlayerInterior(playerid, 15);
        SelectTextDraw(playerid, -1);

        for (new i = 23; i < 34; i ++) {
            PlayerTextDrawShow(playerid, PlayerData[playerid][pTextdraws][i]);
        }
    }
    else
    {
        SetPlayerFacingAngle(playerid, PlayerData[playerid][pPos][3]);

        SetPlayerInterior(playerid, PlayerData[playerid][pInterior]);
        SetPlayerVirtualWorld(playerid, PlayerData[playerid][pWorld]);

        SetCameraBehindPlayer(playerid);
        SetAccessories(playerid);

        if (PlayerData[playerid][pWorld] == PRISON_WORLD)
        {
            SetPlayerPosEx(playerid, PlayerData[playerid][pPos][0], PlayerData[playerid][pPos][1], PlayerData[playerid][pPos][2]);
        }
        else
        {
            if(PlayerData[playerid][pInjured] == 0)
            {
                SetPlayerPos(playerid, PlayerData[playerid][pPos][0], PlayerData[playerid][pPos][1], PlayerData[playerid][pPos][2]);
            }
        }
        if (PlayerData[playerid][pInjured])
        {
            ShowHungerTextdraw(playerid, 0);

            TextDrawShowForPlayer(playerid, gServerTextdraws[2]);
            SendClientMessage(playerid, COLOR_LIGHTRED, "[WARNING]:{FFFFFF} You are injured and require medical attention (/call 911).");

            ApplyAnimation(playerid, "CRACK", "null", 4.0, 0, 0, 0, 1, 0, 1);
            ApplyAnimation(playerid, "CRACK", "crckdeth4", 4.0, 0, 0, 0, 1, 0, 1);
        }
        else
        {
            SetWeapons(playerid);
            ShowHungerTextdraw(playerid, 1);

            SetPlayerHealth(playerid, PlayerData[playerid][pHealth]);
            SetPlayerArmour(playerid, PlayerData[playerid][pArmorStatus]);
        }
    }
    return 1;
}
The SetDefaultSpawn stock is not used in OnPlayerSpawn, any ideas?
pawn Код:
stock SetDefaultSpawn(playerid)
{
    SetPlayerInterior(playerid, 0);
    SetPlayerVirtualWorld(playerid, 0);


    if(PlayerData[playerid][pSpawnPoint] == 0) // Airport
    {
        SetPlayerPos(playerid, 1642.1957, -2334.4849, 13.5469);
        SetPlayerFacingAngle(playerid, 0.0);
    }
    if(PlayerData[playerid][pSpawnPoint] == 1) // Faction
    {
        new faction = PlayerData[playerid][pFactionID];
        if(PlayerData[playerid][pFactionID] == -1)
        {
            SendErrorMessage(playerid, "You've been set to civilian spawn.");
            SetPlayerPos(playerid, 1642.1957, -2334.4849, 13.5469);
            SetPlayerFacingAngle(playerid, 0.0);
        }
        SetPlayerPos(playerid,FactionData[faction][SpawnX],FactionData[faction][SpawnY],FactionData[faction][SpawnZ]);
        SetPlayerInterior(playerid,FactionData[faction][SpawnInterior]);
        SetPlayerVirtualWorld(playerid, FactionData[faction][SpawnVW]);
    }
    if(PlayerData[playerid][pSpawnPoint] == 2)
    {
        SetPlayerPos(playerid, PlayerData[playerid][pPos][0], PlayerData[playerid][pPos][1], PlayerData[playerid][pPos][2]);
        SetPlayerFacingAngle(playerid, PlayerData[playerid][pPos][3]);
        SetPlayerInterior(playerid, PlayerData[playerid][pInterior]);
        SetPlayerVirtualWorld(playerid, PlayerData[playerid][pWorld]);
    }

    /*#if SERVER_CITY == 1
        SetPlayerPos(playerid, 1642.1957, -2334.4849, 13.5469);
        SetPlayerFacingAngle(playerid, 0.0);
    #elseif SERVER_CITY == 2
        SetPlayerPos(playerid, -2425.5615, 337.5465, 37.0018);
        SetPlayerFacingAngle(playerid, 238.0);
    #elseif SERVER_CITY == 3
        SetPlayerPos(playerid, 1675.7245, 1447.8938, 10.7866);
        SetPlayerFacingAngle(playerid, 270.0);
    #endif*/


    SetCameraBehindPlayer(playerid);
    TogglePlayerControllable(playerid, 1);
    return 1;
}
Reply


Messages In This Thread
Spawn Point bug with SCRP script - by benjaminjones - 03.05.2016, 23:24
Re: Spawn Point bug with SCRP script - by benjaminjones - 04.05.2016, 12:03
Re: Spawn Point bug with SCRP script - by Nin9r - 04.05.2016, 12:12
Re: Spawn Point bug with SCRP script - by benjaminjones - 04.05.2016, 13:55
Re: Spawn Point bug with SCRP script - by benjaminjones - 06.05.2016, 13:20
Re: Spawn Point bug with SCRP script - by Dayrion - 06.05.2016, 13:36
Re: Spawn Point bug with SCRP script - by GoldenLion - 06.05.2016, 14:11
Re: Spawn Point bug with SCRP script - by benjaminjones - 08.05.2016, 04:10
Re: Spawn Point bug with SCRP script - by Ritzy2K - 08.05.2016, 04:13
Re: Spawn Point bug with SCRP script - by Sew_Sumi - 08.05.2016, 04:55

Forum Jump:


Users browsing this thread: 1 Guest(s)