Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: Hospital Bill for V2 This is bascily a revive function. :lol:
  2. Re: HELP!!!!!!!!!!!!!! Remmember your using v2. You could try: $bf=$db->query("SELECT * FROM bf WHERE bfTO=[color=red]'[/color]{$ir['business']}[color=red]'[/color]"); $fr=mysql_num_rows($bf); $be=$db->query("SELECT * FROM be WHERE beTO=[color=red]'[/color]{$ir['business']}[color=red]'[/color]"); $en=mysql_num_rows($be);
  3. Re: Lucky Boxes ok:   alter table users add super_boxes tinyint(3) not null default '3';
  4. Re: Horse Racing[v1 + v2] ops my mistake :lol:   <?php /****************************** >CREATED BY oxidation >NOT FOR RE SALE FREE MOD ONLY >COPYRIGHT 2008 ******************************/ include("globals.php"); if($ir['level']< 101) { print "You need to be at least level 100 to access Horse Racing Department."; $h->endpage(); exit; } print "<h3>Horse Racing Department</h3> "; if( !$_POST['tixs'] ) { print "Want to make a bet of winning a high amount of bars? [b]Each ticket costs 50 Bars & \$300,000. You may choose which horse you would like to bet on. If you win, You will recieve the winning prize of \$3,000,000 and 400 bars.[/b] <form action='horsing.php' method='post'> <input type='hidden' name='conf' value='yes'> Tickets : <input type='text' name='tixs' value='0'> Horse : <select name='horse'> <option value='1'>Dorke</option> <option value='2'>Wickwear</option> <option value='3'>Shandy</option> <option value='4'>Warsky</option> <option value='5'>Propeller</option> <option value='6'>Shalasy</option> <option value='7'>Rickmond</option> <option value='8'>Yowelle</option> <option value='9'>Crossbone</option> <option value='10'>Eastporse</option> </select> <input type='submit' value='Bet'> </form>"; } else { $_POST['tixs'] = abs(@intval($_POST['tixs'])); $rand=(int) rand(1,100); $money=$_POST['tixs']*300000; $cryst=$_POST['tixs']*50; $wincas=100000*$_POST['tixs']; $wincry=100*$_POST['tixs']; if($_POST['tixs'] < 0) { die("ABUSER!"); } if($ir['money'] < $money || $ir['crystals'] < $cryst) { print "You do not have the right amount of cash/crystals to bet on your horse."; $h->endpage(); exit; } if($rand == $_POST['horse']) { print "OMG! You won the winning prize. You have now been credited "; mysql_query("UPDATE users SET money=money+$wincas, crystals=crystals+$wincry WHERE userid=$userid",$c); $usq=mysql_query("SELECT userid FROM users",$c); $r=mysql_fetch_array($usq); event_add($r['userid'],"{$ir['username']} [{$userid}] Won the Horse Racing Department's winning prize.",$c); } else { print "You did not win the winning prize, bad luck. [url='explore.php']Explore[/url] "; mysql_query("UPDATE users SET money=money-$money, crystals=crystals-$cryst WHERE userid=$userid",$c); } } $h->endpage(); ?>
  5. Re: Horse Racing[v1 + v2]   This is for V1, isn't it? How would I make it slightly (lol) secure for V2? You make it very dificuly for people :/   <?php /****************************** >CREATED BY oxidation >NOT FOR RE SALE FREE MOD ONLY >COPYRIGHT 2008 ******************************/ include("globals.php"); if($ir['level']< 101) { print "You need to be at least level 100 to access Horse Racing Department."; $h->endpage(); exit; } print "<h3>Horse Racing Department</h3> "; if( !$_POST['tixs'] ) { print "Want to make a bet of winning a high amount of bars? [b]Each ticket costs 50 Bars & \$300,000. You may choose which horse you would like to bet on. If you win, You will recieve the winning prize of \$3,000,000 and 400 bars.[/b] <form action='horsing.php' method='post'> <input type='hidden' name='conf' value='yes'> Tickets : <input type='text' name='tixs' value='0'> Horse : <select name='horse'> <option value='1'>Dorke</option> <option value='2'>Wickwear</option> <option value='3'>Shandy</option> <option value='4'>Warsky</option> <option value='5'>Propeller</option> <option value='6'>Shalasy</option> <option value='7'>Rickmond</option> <option value='8'>Yowelle</option> <option value='9'>Crossbone</option> <option value='10'>Eastporse</option> </select> <input type='submit' value='Bet'> </form>"; } else { $_POST['tixs'] = abs(@intval($_POST['txis'])); $rand=(int) rand(1,100); $money=$_POST['tixs']*300000; $cryst=$_POST['tixs']*50; $wincas=100000*$_POST['tixs']; $wincry=100*$_POST['tixs']; if($_POST['tixs'] < 0) { die("ABUSER!"); } if($ir['money'] < $money || $ir['crystals'] < $cryst) { print "You do not have the right amount of cash/crystals to bet on your horse."; $h->endpage(); exit; } if($rand == $_POST['horse']) { print "OMG! You won the winning prize. You have now been credited "; mysql_query("UPDATE users SET money=money+$wincas, crystals=crystals+$wincry WHERE userid=$userid",$c); $usq=mysql_query("SELECT userid FROM users",$c); $r=mysql_fetch_array($usq); event_add($r['userid'],"{$ir['username']} [{$userid}] Won the Horse Racing Department's winning prize.",$c); } else { print "You did not win the winning prize, bad luck. [url='explore.php']Explore[/url] "; mysql_query("UPDATE users SET money=money-$money, crystals=crystals-$cryst WHERE userid=$userid",$c); } } $h->endpage(); ?>
  6. Re: Horse Racing[v1 + v2] Try and exploit my one i never knew there was an exploit in it. I have my own horsing any way wich is kinda secure.
  7. Re: Horse Racing[v1 + v2] Do you know that your copy of this version is like saying "come and exploit me"??? Try and put -9999999999999999999 in the tickets and see what happens :| Here is a secure one:   <?php /****************************** >CREATED BY oxidation >NOT FOR RE SALE FREE MOD ONLY >COPYRIGHT 2008 ******************************/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); if($ir['level']< 101) { print "You need to be at least level 100 to access Horse Racing Department."; $h->endpage(); exit; } print "<h3>Horse Racing Department</h3> "; if( !$_POST['tixs'] ) { print "Want to make a bet of winning a high amount of bars? [b]Each ticket costs 50 Bars & \$300,000. You may choose which horse you would like to bet on. If you win, You will recieve the winning prize of \$3,000,000 and 400 bars.[/b] <form action='horsing.php' method='post'> <input type='hidden' name='conf' value='yes'> Tickets : <input type='text' name='tixs' value='0'> Horse : <select name='horse'> <option value='1'>Dorke</option> <option value='2'>Wickwear</option> <option value='3'>Shandy</option> <option value='4'>Warsky</option> <option value='5'>Propeller</option> <option value='6'>Shalasy</option> <option value='7'>Rickmond</option> <option value='8'>Yowelle</option> <option value='9'>Crossbone</option> <option value='10'>Eastporse</option> </select> <input type='submit' value='Bet'> </form>"; } else { $_POST['tixs'] = abs(@intval($_POST['txis'])); $rand=(int) rand(1,100); $money=$_POST['tixs']*300000; $cryst=$_POST['tixs']*50; $wincas=100000*$_POST['tixs']; $wincry=100*$_POST['tixs']; if($_POST['tixs'] < 0) { die("ABUSER!"); } if($ir['money'] < $money || $ir['crystals'] < $cryst) { print "You do not have the right amount of cash/crystals to bet on your horse."; $h->endpage(); exit; } if($rand == $_POST['horse']) { print "OMG! You won the winning prize. You have now been credited "; mysql_query("UPDATE users SET money=money+$wincas, crystals=crystals+$wincry WHERE userid=$userid",$c); $usq=mysql_query("SELECT userid FROM users",$c); $r=mysql_fetch_array($usq); event_add($r['userid'],"{$ir['username']} [{$userid}] Won the Horse Racing Department's winning prize.",$c); } else { print "You did not win the winning prize, bad luck. [url='explore.php']Explore[/url] "; mysql_query("UPDATE users SET money=money-$money, crystals=crystals-$cryst WHERE userid=$userid",$c); } } $h->endpage(); ?>
  8. Re: Lottery [v1 and v2] Btw did you know the one you got is hackable? Try this one its more secure to:   <?php include "globals.php"; global $db,$ir,$c,$userid,$h; if($ir['crystals']< 25) { print "You need at least 25 crystals to play."; $h->endpage(); exit; } if($_POST['bet']) { if($ir['crystals']< $_POST['bet']*1) { print "You do not have the right amount of crystals at the bet you put."; $h-endpage(); exit; } $rand=(int) rand(1,40); $rand2=(int) rand(1,40); $cry=$_POST['bet']*1; if($_POST['bet'] <0) { print "DIE!!!"; exit; } else if($rand == $rand2) { print "You won! You have been credited $cry crystals!"; mysql_query("UPDATE users SET crystals=crystals+$cry WHERE userid=$userid",$c); } else { print "You lost! Never mind, keep trying. You have lost $cry crystals!"; mysql_query("UPDATE users SET crystals=crystals-$cry WHERE userid=$userid",$c); } } else { print "Want to have a chance of winning the lottery? You will win by the level you are at and your bet Its 1 crystal per bet. <form action='lottery.php' method='post'> Bet :<input type='text' name='bet' value='0'> <input type='submit' value='Bet!'> </form>"; } $h->endpage(); ?>   As you can see mine is secure as i have had this for a long time.
  9. Re: Lottery [v1 and v2] If you actualy made this why have i had this on my game for 8 months? If you actualy made it prove it. Since killah-city.com was open i had lottery on it and now your saying you made it? I doubt you were coding 7 months ago. So please stop all your crap that you made this. I dont know who made it but i am assure you never :/
  10. Re: Lottery [v1 and v2] You never made this. :|
  11. Re: House Break In [$15] Thank you for proving the point.
  12. Re: House Break In [$15]   I mean there was no need for it...this just tells me your not mature and your trying to show off to your freinds..and even if your not it still leaves me to believe your imature..People will only take your seriously if you grow up and act your age..You may only be young BUT if your trying to set up small business i.e a game or something along those lines...your not going to get many clients/buyers or donaters if people cant trust you or think your capable and sensible about what your doing..and dont bother making a post or complaining about this one as it's just going to be ignored. And it wont change my opinion of you one bit. Funny thing is how you talk so much when you dont contribute :|. I can be mature enough if i had to but seriusly not cared about showing maturaty here. I show that i am mature infront of my friends, not friends on the computer but friends in real life i wonder if you have any. Basicly you telling me that if a mod i want is out i must buy it because if i make my own basicly im using there's? Sorry but i will not buy a mod off some one that cant code. I will not buy a mod off some one that cant be cared to secure there mods. I will not buy a mod off some one when i can make it. The only reason why i bought this mod was because the person i code for wanted this mod so bad and couldnt wait 2 hours for me to make it so i bought this one. Does it look like i beg you to buy my mods? I dont because i wouldnt buy your mods either. Another thing is why i re coded this mod (i did create it from scratch except the tutorial piece) is because it was poorly coded. if you actualy buy this mod you will see how squashed up the code is. It does not matter how big you can make a mod but how small the lines are, i think iso's mod is basicly 420 lines squashed up and once i made it fit my eyes so i could read it it became 480, My mod is 460 some odd lines. I dont need to set up a small business on the internet ie a game or such i only make games for the fun of it and to keep other gamers happy. Its funny how you say that i wont get donators because they wont trust me but please explain how i have made over $1500+ since killah-city was open. Not to mention i sold the game for $150 because it was the only person that would take the game for $100+ but wont reset. Since the new owner has actualy owned the game she has made $300 profit so basicly $450 so she has gained $300 back from what she bought it for. Killah-city.com was basicly the biggest game ive had and made quite a bit of money a month. I actualy never spent a cent on what killah-city earned i only spent the money on buying unique mods that wont be re contributed to the other people. And i dont care if you wont post back to this younggold as i seriusly do not give 0%. Anyways im out.
  13. Re: House Break In [$15] Templar i just copied iso's tutorial wow woopy doo!! If iso gave me permision and/or he could send you a copy of his break in mod i could send you a copy of mine you can check that both of them are different apart from the tutorial page.
  14. Re: House Break In [$15] The only thing i copied from yours was the tutorial. Now please tell me why my code aint efficient? Your code is extracting data from the item types table when mine is not. And what has the mod got to do with item types when basicly it aint needed? Now you telling my code is not efficient? my code: $l = mysql_query("SELECT i.*,it.* FROM inventory i LEFT JOIN items it ON i.inv_itemid=it.itmid WHERE i.inv_id='{$_POST['itemd']}'") or die(mysql_error()); $z = mysql_fetch_assoc($l);   Your code: $item = mysql_query("SELECT iv.*,i.*,it.* FROM `inventory` iv LEFT JOIN items i ON iv.inv_itemid=i.itmid LEFT JOIN itemtypes it ON i.itmtype=it.itmtypeid WHERE iv.inv_id={$itemid} ORDER BY i.itmtype ASC, i.itmname ASC LIMIT 1",$c);   Now as yours is selecting from item types wich is not needed dont know why you put it. My mysql querys all have or die(mysql_error()); when yours does not. My code is only selected once when yours is twice. Please tell me how my code aint efficient than yours. My code does not have a single bug but yours has 4-5 bugs and 2 exploits. Now your saying that my code can be exploited? Try it http://www.killah-city.com/breakin2.php?ID=2 try it you will not succeed.   That is correct, and if you would check on that link .. Silver did no longer have or sold the mod, people were still requesting it, so iso remade it. For this one I'm also with iso. I'm pretty sure if you told him where or what the errors are, he would fix them and update the code. I'm not feeling all too good about this... How much of your mod, is actually code you typed in yourself? completly everything? or is it just based on iso's one? reasonable (or w/e) you wanna call it, no it is not. Your saying mine is based of iso's mod? Yes it is but iso's one is based off silvers one. The only reason why i made this was his was to bugy and to exploitable. Iso: I never broke mine i secured it and it just never wanted to work after that.
  15. Re: House Break In [$15] and infact here is the original post of this mod: http://criminalexistence.com/ceforums/i ... topic=4558
  16. Re: House Break In [$15] Now tell me... Would you prefer buying a exploitable and buggy mod from the original maker when he is not? Seriusly look around firstly silver made this mod so basicly Silver is the original maker. So i for there will sell my copys to those who want. I do not care about the rest but those who want it can have a copy as for i would not want to buy a buggy and exploitable mod for $20 when i can buy one for $15 and atleast i know its secure.
  17. Re: House Break In [$15] I found alot of bugs about 5 bugs and 3 exploits in iso's mod i told him about it and he did not do any thing. So i went and made my own script. I have tested the mod and my mod works better than iso's i come to found a bug in iso's mod that when stealing an item it does not even give you the item and it does not take away same as the destroy and for stealing money i also had big problems. I dont know if its the v2 version he sent me or its just plain that he never coded it correctly. In all his mysql_query functions not one has a or die(mysql_error()); at the end to actualy find any error's i there for put or die(mysql_error()); at the end of all my mysql functions now as my post said if you going to post rubish dont post at all. Thank you.
  18. Hello. Ok you guys might be thinking that this is iso's mod but it aint. Description: It allows you to break into some one's house and allows you to steal there item or some of there money. You can also destroy an item of your choice. You will never be able to succeed the hole time you can always fail and get jailed or hospitalized. Price: $15 Why $15: Because i got the idea from iso's mod but came to think of it i actualy made my own script because i bought iso's one and it had to many exploits / bugs. Preview: Can be seen working on http://www.killah-city.com. Now befor you all post stuff thinking i am re selling iso's mod i will be sending iso a free copy of mine so that he can aprove that mine is different from his and that mine is coded different. I am selling this because i thought some of you might like it but some of you dont want to deal with bugs i have delt with them for you. This mod is 100% working with out any bug so far. Exploits might be a chance but it is 99.9% secure from exploits.   The exploits on iso's mod is very dangerouse if i am stealing an item from id 2 i can change the id to id 5 with out any question and put in any id from the inventory and steal it tho its not id 5's item i can still steal it. With mine you can be assured that that wont happen.
  19. Re: Advanced Break In [$20] i would not suggest buying it quite yet. it has too many bugs an exploits :|
  20. Re: Lucky Boxes I think both files are requiring open_boxes from the db so do as nyna says :wink:
  21. Re: Advanced Break In [$20] I just space out my coding to read it better ;) btw iso contact me for the version that aint got 3 exploits ;)
  22. Re: Advanced Break In [$20] I bought this mod it is a pretty cool mod. My members LOVE it, the only thing when buying it, it had 1 bug that i had to ideal out. Iso here is the fix it should be: When updating the item it should actualy be:   if(mysql_num_rows($check) > 0) { // Update Item if they do not have mysql_query("UPDATE `inventory` SET `inv_qty` = inv_qty+1 WHERE `inv_itemid` = $items->inv_itemid AND `inv_userid` = $userid LIMIT 1",$c) or die(mysql_error()); }   You might be asking why is there so many spaces its because i went through the file to make it more readable for me :wink:
  23. Re: fixed top and bottom If the menu is like in the middle of the page use this: <td valign="top">
  24. Re: Free 2 - Gym This modification is basicly based for v2. Your error will go on and on. until you fix all the mysql_fetch_single.
  25. Re: EvoGame [bank Mod] Sounds boring. Just a couple edits to the bank.php and 2 sqls and 1 php files woopy doo no ways ill buy for $20 when i can code this in less than 10 minutes :/
×
×
  • Create New...