Final Housekeeping Look:
![]()
I'll shortly be releasing a pre-mature beta seeing there isnt any bugs within my source: I'm happy to release it to certain users.
I've fixed some shizzle: such as disallowing a user to preview admin sections: See url below:
http://spits.ath.cx/shop_furni.php?category=70 (in the new version it will go to the homepage if they dont have access)
Also:
The new furniture settings: all furniture cct's arnt renamed, ( i cba ).
Ban System:
Not coded via the housekeeping yet: However: Can be done via the sql.
Housekeeping features:
Only coded allowing to disable/enable (FURNITURE) shop excludes badge shop.
Header upgrade: Gets it via the sql.
Loads of little glitches patches.
If you would like to apply for this please PM me with the title: HoloShop Pre 2.0: Beta 0.1
Name:
Hotel name:
Hotel URL:
CMS version:
EMU version:
MUS working:
Why should i allow you:
Why not another hotel:
Wow, using my hotel as an example. Btw, the furni shop on my hotel was fixed up by my PHP coder, gabe. So there is no exploits any more. Want me to release it for now?
+ PMing now.
Very nice iJames I like what you have done to the Holoshop.
Hey guys, the new beta is really good. iJames is ironing out the bugs and has fixed most of the bugs already. If you want a live preview:
Almost finished coding the rare release system: It's about 90%. :).
Edit: 100%. :)
<;D
Very nice. Keep it up.
Developing de-release rare: progress 20% ;).
There's is loads of verifying that needs to be done: Come on check out the code bit for Rare release:
PHP Code:if (empty($tid)){
$msg = 'You must have missed something out; go back and do it again';
$allow = false;
}elseif(empty($credits)){
$msg = 'You must have missed something out; go back and do it again';
$allow = false;
}elseif ($credits > 200 || $credits < 1) {
$msg = 'You can\'t charge more than 200 credits for an item or less and 1';
$allow = false;
}elseif(!is_numeric($tid)){
$msg = 'Your TID isn\'t numeric';
$allow = false;
}elseif(!is_numeric($credits)){
$msg = 'Your credits arn\'t numeric';
$allow = false;
} elseif ($tidsql < 1 || $tidsql > 1) {
$msg = 'We either can\'t find the TID you was looking for or there is some kind of error';
$allow = false;
} elseif ($tidandindexid > 0) {
$msg = 'This rare is already released.';
$allow = false;
} else {
Wow, nice checking.