
Haunted Dawg
Members-
Posts
2,933 -
Joined
-
Last visited
Never -
Days Won
1
Content Type
Profiles
Forums
Events
Everything posted by Haunted Dawg
-
Re: [mccode v2] Anolog Clock Umm you know what illusion's. Yubi is sucking up on zero's ball's agen because he can play KC Agen. so good ridense i am gone now from kc. Catch me on the flip side on msn: [email protected] if you want all you mother fucker's that i hate will be blocked immediatly AH BUH BYE!
-
Re: Warning to all buyers about killah Funny i find this amusing because not long ago you hated zero and that is why he added some proxy blocker on KC and that is why i can not enter it any more. I do not care what he has paid you or what he has done for you to post this but you know for a fact i secured the shoutbox and you never even paid for the shoutbox. The breakin work's perfectly i gave you the mod like i gave everyone else and there's work easiy. The travel advanced has a little bug in it but there is nothing else that is wrong with it. So where ever you get your information from mike i do not care. So from this day on do not tempt to talk to me as you are not deleted and blocked off my msn. So far as i know i can bring susan here and she can say to all of you how you say you hate susan and zero affect but now you tend to back him up. You even threatend to kill susan's kid's i even got the chat log from zero affect & susan saying you threatend to kill susan's kid's if she kept banning you from kc. My evidence can be proven unlike your's can't. I am kinda tipsy right now. been drinking since friday with a friend so prove what ever you want and i will post my proof how this is a lie.
-
Re: [mccode v2] Anolog Clock I do frankly not deal with any more people employing me here on CE as i honestly do not care. WHY? because majority of you people are what 11 - 19. Wow. Would prefer to be with people with experiance than you people. Funny... 15 buck's to add a link? HA! If you can not remmember i added 20+ slot's in the education. And i never copied a single one from another site. You only started coding to rub it in my face. Did you not say you were running website's since you were 14? and frankly you say your 19 so that would make me be a coder for 5 year's making me start since i was 11. Nope. I started when i was 13 going on 14 and i am now 16. Yet still more hate you. Just because i see other people coding on a site i rip someone off and well that's why i don't like you? Ahh your wrong. I don't mind you took over KC. I don't mind you were "helping" me on CONY altho all you were doing was on game and not on the file's. And just so you know. The only reason why i hate you is because on your little game with mike and that other "WOMEN" i forgot her name well. You added 6 - 11 image's to "MY" shoutbox and added a BG background and claimed it was your's. PFFT HOW PATHETIC CAN YOU GET! OOO and do you remmember how i still shut you down for using it? PWAHAHAHAHA!
-
Re: [mccode v2] Anolog Clock You have not been around for a certain amount of time pike. These forum's are cluttered with mod's that have been posted age's ago. So he discovered some script and say's O.o no one has this on there game... thinking there is no script let me post it on ce. Do they search if it exist's already? Nope. Sure i do post some mod's twice. But the mod is to better itself or the other one has an exploit so i recode them and post them up. Sure i give people greif. But as some one said to me the other day. "I Like to learn the hard way". Well that is something similar to the hard way of giving criticism aint it? Sure it's a free mod and i do not complain about it. I am just saying that there are better way's to do it. Zero seriously if you have nothing constructive to say "EITHER" then why don't you stfu and sit in your corner because you know i have not liked you since i met you ;) "mate". Come on now... Thats like saying... Wow dude this mod really blows, why even try? but..... ya know, no offence man ... No offence taken. But would you like to add something to your site that some member's will find is a blank space? I am sure not.
-
Re: [mccode v2] User Comments I posted that when at that time me and david spoke. And i looked at all his coding and made sure it has atleast security to it.
-
Re: Adding an event_add add include_once("global_function.php"); at the top
-
Well. Some people have them but some of them do not work. I am releasing the one i have re coded for my game. It has more security to it while searching. It has less efficiency. It has better spaced out coding. Name this as what you want since we using PHP_SELF you won't need a specific file name. It is more of a code update. Some visual but it run's abit more faster than the other one. I tested this one compare to old one with 448 user's and the result's are as bellow: This one compare to old one => 0.0024 second's faster. SomeRandomBastard go away ;) <?php if(file_exists('globals.php')) { include_once("globals.php"); } else { session_start(); include_once('global_func.php'); if(!isset($_SESSION['userid']) OR !isset($_SESSION['loggedin'])) { header("Location: login.php"); exit; } require('header.php'); $h = new headers; $h->startheaders(); include_once('mysql.php'); global $c; $is = mysql_query("SELECT * FROM users WHERE userid=".$userid,$c) or die(mysql_error()); $ir = mysql_fetch_assoc($is); check_level(); $fm = money_formatter($ir['money']); $cm = number_format($ir['crystals']); $lv = date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); } echo ' <h2>Advanced Searching</h2>'; if($_POST['hidden']) { $level_min = 'WHERE level >= '.abs(@intval($_POST['level_min'])); $level_max = 'AND level <= '.abs(@intval($_POST['level_max'])); $name = ($_POST['name']) ? 'AND username LIKE(\'%'.mysql_real_escape_string($_POST['name']).'%\')' : ''; $gender = ($_POST['gender']) ? 'AND gender LIKE(\'%'.mysql_real_escape_string($_POST['gender']).'%\')' : ''; $job = ($_POST['job']) ? 'AND job = '.abs(@intval($_POST['job'])) : ''; $house = ($_POST['house']) ? 'AND maxwill = '.abs(@intval($_POST['house'])) : ''; $days_min = ($_POST['days_min']) ? 'AND daysold >= '.abs(@intval($_POST['days_min'])) : ''; $days_max = ($_POST['days_max']) ? 'AND daysold <= '.abs(@intval($_POST['days_max'])) : ''; $fetch = mysql_query (" SELECT username,userid,money,level FROM users ".$level_min." ".$level_max." ".$name." ".$gender." ".$job." ".$house." ".$days_min." ".$days_max ); echo mysql_num_rows($fetch).' user\'s found. <table border="0" class="table" cellspacing="0" cellpadding="0" width="50%" summary="User Details"> <tr> <th scope="col">Username</th> <th scope="col">Level</th> <th scope="col">Money</th> </tr> <tr class="tr_table">'; while($soc = mysql_fetch_assoc($fetch)) { echo ' <td>[url="viewuser.php?u='.$soc['userid'].'"]'.$soc['username'].' ['.$soc['userid'].'][/url]</td> <td>'.$soc['level'].'</td> <td>'.money_formatter($soc['money']).'</td> </tr> <tr>'; } echo ' </tr> </table>'; $h->endpage(); exit; } echo ' <font color="red">*</font> Are required fields! <form action="'.$_SERVER['PHP_SELF'].'" method="post"> <input type="hidden" name="hidden" value="1"> [b]Name:[/b] <input type="text" name="name"> [b]Level:[/b] From: <input type="text" name="level_min"> To: <input type="text" name="level_max"> [b]Gender:[/b] <select name="gender"><option value="0">Either</option><option value="Female">Female</option><option value="Male">Male</option></select> [b]Job:[/b] <select name="job"> <option value="0" selected>Any Job</option>'; $j = mysql_query("SELECT jID,jNAME FROM jobs"); while($soc = mysql_fetch_assoc($j)) { echo ' <option value="'.$soc['jID'].'">'.$soc['jNAME'].'</option>'; } echo ' </select> [b]House:[/b] <select name="house"> <option value="0" selected>Any House</option>'; $hu = mysql_query("SELECT hNAME,hWILL FROM houses"); while($soc = mysql_fetch_assoc($hu)) { echo ' <option value="'.$soc['hWILL'].'">'.$soc['hNAME'].'</option>'; } echo ' </select> [b]Days Old:[/b] From: <input type="text" name="days_min"> To: <input type="text" name="days_max"> <input type="submit" value="Search" name="submit"> </form>'; $h->endpage(); ?> Thank's.
-
Re: Time to Guess Nynas Age ;) She said she was programming for 30 year's when she came here. So let's say about 31 year's now. If she is in(41,42,43,44) did she start programming at in(11,12,13,14) ? Maybe! If you ask me. She is closing onto 50. If not 46 - 50.
-
[mccode V2]Login, Register and Header - (Template)[$10.00]
Haunted Dawg replied to CLANG's topic in Paid Modifications
Re: [mccode V2]Login, Register and Header - (Template)[$20.00] then why are you selling it if he is definatly going to buy it? rather keep it for him. -
[mccode V2]Login, Register and Header - (Template)[$10.00]
Haunted Dawg replied to CLANG's topic in Paid Modifications
Re: [mccode V2]Login, Register and Header - (Template)[$20.00] Question. Why are so many people copying iamwicked's type of layout. His was the first i saw on a mccode's game and now i see to many of them. By this i mean the box at the very top with all the user info in it. Go original and maybe the people will actualy buy it from you than say "i do not have the money no more" because in other word's it mean's "it's shit but i do not want to tell you because it is going to hurt your feelings." -
Re: [mccode v2] Anolog Clock The menu circles.. i have not seen them elsewhere. And at the bottom of my first post i did say:
-
Re: [mccode v2] Item Descryption. He meant that he is going to provide the JS script you are using. Many people can come up with better CSS than that.
-
[minigame] Looking if you will buy [$100.00]
Haunted Dawg replied to Haunted Dawg's topic in Paid Modifications
Re: [minigame] Looking if you will buy [$100.00] Every played mob war's on Facebook? Well i got addicted to that and i never get addicted to any game. So i created something similar. -
Re: [mccode] Free Starter Pack That's because on those game's they do not install it correctly.
-
Re: Funny things To Google Type: just fucking google it. And it will come up with your world ;)
-
Re: 2 questions event add & insert item Sorry. I now know why mine does not work. Use this: $sel = mysql_query("SELECT userid,username,user_level FROM users WHERE user_level=5"); while($soc = mysql_fetch_assoc($sel)) { include_once("global_func.php"); mysql_query("UPDATE users SET money=money+1000 WHERE userid=".$soc['userid']); event_add($soc['userid'],"Hello ".$soc['user_name'].", You have been given $1, 000 for being staff. Thank you."); item_add($soc['userid'],19,1); }
-
[mccode v2] Brothel Non exploitable
Haunted Dawg replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Brothel Non exploitable Nope, still exhibits the same traits as the first version. Then care to explain? -.- -
Re: [REVIEW] Street Vendetta - Please review! How long did you get bored after if i may ask?
-
Re: Anolog Clock [All versions] I wonder if mdshare, nyna & scarlet have there image's copyrighted on Amazon survival. If so your "friend" would need to take the menu image's off ;)
-
[mccode v2] Brothel Non exploitable
Haunted Dawg replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Brothel Non exploitable Newer update. More security i hope. <?php include("globals.php"); echo '<h2>Brothel</h2>'; $whore_woman = array ( 1 => array("Roxy",500), 2 => array("Kelly",1000), 3 => array("Shanique",1500), 4 => array("Rhonda",2000), 5 => array("Elizabeth",10000) ); $whore_men = array ( 1 => array("Bill",500), 2 => array("Marcus",1000), 3 => array("Greg",1500), 4 => array("Sam",2000), 5 => array("Kyle",10000) ); if($_GET['y'] == "F") { $x = abs(@intval($_GET['x'])); if(!$x) { echo 'Unfortunatly not.'; $h->endpage(); exit; } $count = count($whore_woman); if($x > $count) { echo 'Unfortunatly not.'; $h->endpage(); exit; } $will = rand(1,5); mysql_query("UPDATE users SET will=will+".$will.", money=money-".$whore_woman[$x][1]." WHERE userid=".$ir['userid']); echo 'You payed '.money_formatter($whore_woman[$x][1]).' to take '.$whore_woman[$x][0].' to the room and you gained '.$will.' will.'; $h->endpage(); exit; } else if($_GET['y'] == "M") { $x = abs(@intval($_GET['x'])); if(!$x) { echo 'Unfortunatly not.'; $h->endpage(); exit; } $count = count($whore_men); if($x > $count) { echo 'Unfortunatly not.'; $h->endpage(); exit; } $will = rand(1,5); mysql_query("UPDATE users SET will=will+".$will.", money=money-".$whore_men[$x][1]." WHERE userid=".$ir['userid']); echo 'You payed '.money_formatter($whore_men[$x][1]).' to take '.$whore_men[$x][0].' to the room and you gained '.$will.' will.'; $h->endpage(); exit; } else { echo ' Woman: <table border="1" cellspacing="0" class="table" width="50%"> <tr> <th>Name</th> <th>Price</th> <th>Rent</th> </tr> <tr>'; $i = 0; $vel = count($whore_woman); for ($i = 1; $i <= $vel; $i++) { echo ' <td>'.$whore_woman[$i][0].'</td> <td>'.money_formatter($whore_woman[$i][1]).'</td> <td>[url="'.$_SERVER['PHP_SELF'].'?y=F&x='.$i.'"]Rent[/url]</td> <tr>'; } echo ' </tr> </table> Men: <table border="1" cellspacing="0" class="table" width="50%"> <tr> <th>Name</th> <th>Price</th> <th>Rent</th> </tr> <tr>'; $i = 0; $val = count($whore_men); for ($i = 1; $i <= $val; $i++) { echo ' <td>'.$whore_men[$i][0].'</td> <td>'.money_formatter($whore_men[$i][1]).'</td> <td>[url="'.$_SERVER['PHP_SELF'].'?y=M&x='.$i.'"]Rent[/url]</td> <tr>'; } echo ' </tr> </table>'; } $h->endpage(); ?> -
Re: Anolog Clock [All versions] I could say the same about some of your mods =P Like? Well let's see. Not starting a fight here. 2244 the game. Not original. 1944thegame.com was and is way better than your game and it still getting way more user's than your's. Come to the conclusion. You hardly have posted up any mod's. "Updated money and crystal bank" Already done before you. "Explore simple" Proberly done before you. 2 mod's. And the rest is just posting for help. WOW.
-
[mccode v2] Building - Updated!!! [$20.00]
Haunted Dawg replied to matty405's topic in Paid Modifications
Re: [mccode v2] Building - Updated!!! [$20.00] I do not think so but i would do it like that as i am sure you would get more buy's. -
[mccode v2] Brothel Non exploitable
Haunted Dawg replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Brothel Non exploitable Care to explain how it is still delightfully exploitable? -
Re: Anolog Clock [All versions] O => Old B => Boring S => Slow Why? For one. many user's do not update there divx. Or something similar to that regulary. It will not load. For two. There are javascript one's that work for every user even tho they got a shit computer altho they will need javascript enabled. For three. Well why have 2 clock's when you can just put div tag around the mainmenu click with an id add a bit of ajax and get a automatic text clock. Just my 2 cent's. No offence here.
-
[mccode v2] Brothel Non exploitable
Haunted Dawg replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Brothel Non exploitable Found out how. ;) Here is a better version and to make the "SomeRandomBastard" AKA "Luke" happy i used count(). <?php include("globals.php"); echo '<h2>Brothel</h2>'; $whore_woman = array ( 1 => array("Roxy",500), 2 => array("Kelly",1000), 3 => array("Shanique",1500), 4 => array("Rhonda",2000), 5 => array("Elizabeth",10000) ); $whore_men = array ( 1 => array("Bill",500), 2 => array("Marcus",1000), 3 => array("Greg",1500), 4 => array("Sam",2000), 5 => array("Kyle",10000) ); if($_GET['y'] == "F") { $x = abs(@intval($_GET['x'])); $count = count($whore_woman); if($x > $count) { echo 'Unfortunatly not.'; $h->endpage(); exit; } $will = rand(1,5); mysql_query("UPDATE users SET will=will+".$will.", money=money-".$whore_woman[$x][1]." WHERE userid=".$ir['userid']); echo 'You payed '.money_formatter($whore_woman[$x][1]).' to take '.$whore_woman[$x][0].' to the room and you gained '.$will.' will.'; $h->endpage(); exit; } else if($_GET['y'] == "M") { $x = abs(@intval($_GET['x'])); $count = count($whore_men); if($x > $count) { echo 'Unfortunatly not.'; $h->endpage(); exit; } $will = rand(1,5); mysql_query("UPDATE users SET will=will+".$will.", money=money-".$whore_men[$x][1]." WHERE userid=".$ir['userid']); echo 'You payed '.money_formatter($whore_men[$x][1]).' to take '.$whore_men[$x][0].' to the room and you gained '.$will.' will.'; $h->endpage(); exit; } else { echo ' Woman: <table border="1" cellspacing="0" class="table" width="50%"> <tr> <th>Name</th> <th>Price</th> <th>Rent</th> </tr> <tr>'; $i = 0; $vel = count($whore_woman); for ($i = 1; $i <= $vel; $i++) { echo ' <td>'.$whore_woman[$i][0].'</td> <td>'.money_formatter($whore_woman[$i][1]).'</td> <td>[url="'.$_SERVER['PHP_SELF'].'?y=F&x='.$i.'"]Rent[/url]</td> <tr>'; } echo ' </tr> </table> Men: <table border="1" cellspacing="0" class="table" width="50%"> <tr> <th>Name</th> <th>Price</th> <th>Rent</th> </tr> <tr>'; $i = 0; $val = count($whore_men); for ($i = 1; $i <= $val; $i++) { echo ' <td>'.$whore_men[$i][0].'</td> <td>'.money_formatter($whore_men[$i][1]).'</td> <td>[url="'.$_SERVER['PHP_SELF'].'?y=M&x='.$i.'"]Rent[/url]</td> <tr>'; } echo ' </tr> </table>'; } $h->endpage(); ?>