c0nka Posted February 15, 2008 Posted February 15, 2008 how would i make a certain player access a certain page e.g like if a player level 100 can by a car but if u are level 99 or under u cant.. or if u are in a different city e.g whos in the cave zone cant by a pet but whos in th medevil zone can... thanks in advanced c0nka :mrgreen: Quote
carlg Posted February 15, 2008 Posted February 15, 2008 Re: i wonder if anyone can help ? for the level if($ir['level']< 99) { print "You need to be at least level 99 to access this page."; $h->endpage(); exit; Quote
fbiss Posted February 15, 2008 Posted February 15, 2008 Re: i wonder if anyone can help ? level 100+ buy a car if($ir['level'] < 100 ) { print "You need to be at least level 100 before you can buy a car"; $h->endpage(); exit; } location to buy pets (change the 2 to the city id of medevil zone): if($ir['location'] != '2') { print "You must be in the medevil zone location to buy a pet"; $h->endpage(); exit; } Quote
grimreaper6996 Posted February 16, 2008 Posted February 16, 2008 Re: i wonder if anyone can help ? whats file gets edited and where does the code go Quote
Guest Anonymous Posted February 16, 2008 Posted February 16, 2008 Re: i wonder if anyone can help ? Just after include "globals.php"; Quote
grimreaper6996 Posted February 16, 2008 Posted February 16, 2008 Re: i wonder if anyone can help ? thanks Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.