Re: [REVIEW REQUEST] Criminals-Nightmare
You must be including them wrong.
I'm surprised your menu doesn't look a bit like this...
Home lol
Inventory lol
Events lol
Mailbox lol
And so on and so forth, you seem to use it on everything for no reason. :lol:
Perfect, +1. I lol'd.
At the poster, looking at a different point of things. Your also giving donators a huge advantage that isn't really fair. They get a rewards daily and what not. If you want players, it should be fair for both types of players (non-donators and donators). You are simply making the game impossible to have a chance at :-)
Re: [V1 && V2]Change Username Color
Yeah I heard it brings up a few vulnerabilities
Not if you do it right it won't, I advise following POG1's method.
Also, +1 Sniko`
Your posting alot of nice free stuff, your learning :-)
Re: Looking for code paying $5
I bet you've had your fair share of falling over and banging your head as a child, eh destroyer?
How depressing is it being you?
Re: Looking for code paying $5
Your an idiot....
There ya go, I helped for free. In saying your an idiot, you might release it yourself and just leave.
Re: Adding an item to the game
In forums, find the delete function (near the bottom I guess) and find something that looks like...
global $ir, $c, $userid, $h, $bbc;
You need to add $db in there.
global $ir, $c, $userid, $h, $bbc, $db;
Re: Monorail Problem
Just to clear up what AlabamaHit said......You need to add this:
ORDER BY cityminlevel ASC
To the end of the above query :)
Or just replace the whole query with what AlabamaHit posted
Re: AJAX Search User [$10]
This, I like alot! It looks sweet :lol: Nice and clean, smooth running and most likely well coded?
Good job! Hope you get alot of sales!
Re: flash slot machine & texas hold 'em seats 10 per table limitless tables
It sounds pretty sound, but the thing with making a poker mod, you need to get it spot on perfect!
Just think that all your users will be using this and if there were a bug to be found, it'd be abused.
To stop users complaining, you need to make sure that the poker hands work correctly and all hands are right. E.g. I have an A and a 10. Someone else has a A and a 9, then say an A shows up. I'd win :-P
Good luck
Re: New Explore Page
Lol, what's the point in those functions?, It's doing absolutely nothing...
Hate to pee on your fire....I already pointed that out :wink:
Re: New Explore Page
<?php
include "globals.php";
?>
<?php
function format($str)
{
if(is_numeric($str)) { return number_format($str); }
else
{
return nl2br(stripslashes(htmlspecialchars($str)));
}
}
?>
<?php
function denied()
{
global $ir, $h;
if($ir['jail'] || $ir['hospital'])
{
echo sprintf("You cannot access this whilst in %s!", $ir['hospital'] ? 'hospital' : 'jail');
$h->endpage();
exit;
}
}
?>
Why?? :?
What the hell his the function denied for? :S It's not needed. And why do you have the format function there but it's not doing anything?