koekjes_boy

Known Member
Messages
25
Reaction score
13
Points
118
i need a a script that disable the warning when your outside the map
i search google for it but i cant find one

i hope that there is one :grinning:
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
5,000
Reaction score
2,920
Points
1,103
i need a a script that disable the warning when your outside the map
i search google for it but i cant find one

i hope that there is one :smile:
This is quite interesting but I don't think there is a way to disable it. I'm going to take a look into it.
 

vampytwist

"Don't you trust me?"
Messages
645
Reaction score
625
Points
758
I figured this out when working on my zombieland here's the code :smile:

Add to the top of your GSC
Code:
#using scripts\shared\_oob;

Add to Init
Code:
    level.OOBDisabled = true;

On Player spawned
Code:
        self oob::ResetOOBTimer();
        self.OOBDisabled = true;
 
Top