"STAY WITHIN THE WORLD BOUNDARIES" when loading server -
Luke_James - 24.12.2012
I run my own server and whenever I load up the server it gives me that message and my graphics screw up - It's not an error in my script as it was perfectly fine a few months ago when I was developing it, since then I have taken a break, come back and it's doing this whenever I load up the server - all the plugins are updated and the script has been compiled with the updated plugins, so what's the problem?
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
XtremeR - 24.12.2012
Open ur script goto Find and find for "SetPlayerWorldBounds" and remove it, it will work fine then!
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
DaRk_RaiN - 24.12.2012
Go to your script and remove this function in case you don't need it, in case you used it in a mini-game ect..make a variable which makes it work-less out of the mini-game
pawn Код:
SetPlayerWorldBounds(playerid,Float:x_max,Float:x_min,Float:y_max,Float:y_min)
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
Mike_Peterson - 24.12.2012
Its either what the two people above me posted or, it was that it was missing something crucial in the script.
Do you have player classes? (AddPlayerClass)
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
Luke_James - 24.12.2012
My script uses neither of those functions
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
DaRk_RaiN - 24.12.2012
Did you check your filter scripts?re start the server without all the filter scripts.
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
Luke_James - 24.12.2012
Quote:
Originally Posted by ******
Well your script HAS to use at least one AddPlayerClass - that will be the problem.
|
Why though? I ran this script perfectly fine with no problems just a few months ago and no changes have been made to it since then, why all of a sudden would it stop working?
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
WiseRice - 24.12.2012
This happen to me because i never had OnPlayerSpawn Or OnPlayerConnect
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
DaRk_RaiN - 24.12.2012
Now for real
Quote:
Originally Posted by ******
It shouldn't have worked in the first place.
|
Those call Backs are necessary in a script even if you don't need them just add them and let them empty.
Re: "STAY WITHIN THE WORLD BOUNDARIES" when loading server -
Luke_James - 24.12.2012
So waht should I add to the script?