Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[SmallFix]Vacantion Mode-If you have problems

Status
Not open for further replies.
Joined
Jan 1, 2009
Messages
384
Reaction score
20

AdriaN401MasteR - [SmallFix]Vacantion Mode-If you have problems - RaGEZONE Forums
Hey there o-game lovers :eek:tt:,

If you have problems with the vacantion mode (and even if you don't know if you have, you can still use this..)...

This small php code will block users that have vacantion mode activated to visit any other page than "/overview.php","/options.php","/frames.php","/leftmenu.php"&"/messages.php".

1.Open common.php

2.At the end, after:
PHP:
	$dpath     = "../" . DEFAULT_SKINPATH;
}

3.Add:
PHP:
$vacantion_page = array("/overview.php","/options.php","/frames.php","/leftmenu.php","/messages.php");//page autorisé
        if($user['urlaubs_modus'] == 1 && in_array($_SERVER['PHP_SELF'],$vacantion_page) == false){
            message ("Vacantion mode is active | You can't play!");
        }
urlaubs_modus is the column for the vacantion mode in the users table.​

Maybe usefull for some...:sneaky2:
 
Skilled Illusionist
Joined
Oct 28, 2008
Messages
379
Reaction score
47
Tested,
Working !
Another great share! I'll use it in my new source ;)
 
Joined
Jan 1, 2009
Messages
384
Reaction score
20
Nice to hear that. I hope Ill see some credits ( just kidding :)) ).

Can I have some secret infos about your upcoming release?:>
 
Skilled Illusionist
Joined
Oct 28, 2008
Messages
379
Reaction score
47
Nice to hear that. I hope Ill see some credits ( just kidding :)) ).

Can I have some secret infos about your upcoming release?:>

all the "secrets" are exposed, made a beta to get it bug free, french free, get people suggestions and so on ;)
 
Status
Not open for further replies.
Back
Top