Need quick help
#1

I made a interior map in interior id 9 with objects around 60. When some one enter it using pickup they just fall down it means the object dont load fast for them, Im using incognito streamer how can i fix this major problem please help
Reply
#2

same problem for me. I think it's because of the PING
Reply
#3

Is it got anything to do with client/server pc performance
Reply
#4

yes. Because it does not happen every time. I don't think that there are any ways to fix it
Reply
#5

Even my internet speed is very slow (server hosted in my pc)
Reply
#6

that's very annoying when it happen's. You can do one thing. When Player Enter's an interior freeze him for 5 seconds
Reply
#7

pawn Код:
OnPlayerPickup(...)
{
    if(pickupid == yourpickup)
    {
        TogglePlayerControllable(playerid, 0);
        SetTimerEx("Unfreeze", 5000, false, "i", playerid);
    }
}

forward Unfreeze(iPlayer);
public Unfreeze(iPlayer)
{
    return TogglePlayerControllable(playerid, 1);
}
Reply
#8

Thanx everyone
Reply
#9

L4thal when i compile it says undefined symbol playerid in the line return TogglePlayerControllable(playerid, 1);
}
Reply
#10

pawn Код:
OnPlayerPickup(...)
{
    if(pickupid == yourpickup)
    {
        TogglePlayerControllable(playerid, 0);
        SetTimerEx("Unfreeze", 5000, false, "i", playerid);
    }
}

forward Unfreeze(iPlayer);
public Unfreeze(iPlayer)
{
    return TogglePlayerControllable(iPlayer, 1);
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)