Posts: 307
Threads: 41
Joined: Feb 2011
Reputation:
0
The place where the actions takes place in my gamemode is 70/100 created from mapped interiors, it also has Saving positions (X,Y,Z, Facing Angle, Interior, Virtual World) i noticed that if a log inside an interior, i start falling from the sky when i spawn. There is nothing wrong with the floor or the walls they're all solid, Anyone can help me solve this problem? Maybe Freezing the player for a while OnPlayerSpawn will fix this?
Posts: 2,502
Threads: 26
Joined: Apr 2007
Reputation:
0
The problem is that you're probably spawning and falling before the objects are streamed to that client, which means that you're going to fall through them since there is no collision to keep you from falling. Freezing the player for a little to make sure that the objects are loaded before the player falls would work.
Posts: 1,426
Threads: 56
Joined: Dec 2010
Reputation:
0
Yes, I had also the problem that players are falling down. Just adding a freezer for 3-5 seconds. That's enough and it's working fine =]