Jump to content
MakeWebGames

JAMESOMIGHTY

Members
  • Posts

    70
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by JAMESOMIGHTY

  1. Going to bump this up one last time, free banner exchange, battlemyths.com
  2. 7 days $20 month $40 Or free banner exchange.
  3. Nobody want banner exchange?
  4. Offer still stands, mail me if interested.
  5. ah, not that, its just most of the websites listed either don't exist anymore or don't have the banner. You telling me its still running?
  6. nevermind found playerscorner.org, as long as its still active? edit: by the looks of it maybe not.
  7. Got a space on my login page to be filled so i figured that a nice way to advertise would be to banner exchange, or to make money offer an adspot. battlemyths.com If you look at the login page about half way down the page you will see a copy of my banner, thats where the ad will be put. Anbody wanting to swap banners or pay for the spot message me!
  8. also fixed, feel the login box area needs to be more prominent tho.
  9. Took your advice, look better?
  10. thanks for the feedback, just deciding what to put there is the hard bit haha, but i do agree it looks a little empty
  11. Thankyou very much, highly appreciated. Will work on getting my friends to spread the message.
  12. thanks very much mate
  13. got rid of the training aspect, items give you stats instead, energys used for gathering resources which are used for quests (how you get the items) need to be certain levels to do the quests to get the legendary gear exc... so yeah tried to switch things up a bit. and yeah it all about that rank one
  14. Just released my website and i've got a fairly unique layout, however i'm still not sure if the colors are appealing or if its all just too much. http://battlemyths.com I'm pretty bad with photoshop so i was hoping to to make a bit of money of this to pay for someone to give it that professional look, but you could argue that the best text based games look far from professional haha. My main worry is when you look at it you don't think text based game, thoughts? James.
  15. So today I released the game i've been working on for a while now, but the thing that had been worrying me for a while now was advertising. I decided to purchase facebook and reddit advertisement but I have gained next to no members through it, just me and friends at the moment! So i was wandering if there were any other sites that will help boost my members, paid or free. Was looking around these forums for tips but only found an 8 year old thread on the subject. james,cheers
  16. no one like posting in paid mods anymore :?
  17. Hello guys, what i have here is an altogether different type of pet mod compared to the other ones you will find on mwg, this mod allows you to purchase a pet that will fight along side you in battle and assist in causing damage to your opponent! It comes with these features.. An unlimited amount of pets can be made, edited, sent and deleted through the staff panel. Shops specificly for pets can be made. A player can have an unlimited amount of pets, but may only have one equiped. A pets damage is determined by its strength. Pets are stored in an alternative inventory to items. An optional visualy revamped attack page.   It includes.. 1 sql for users 4 new sql tables (One for pets, one for pet inventory, one for pet shops and one for pet shop items) replacements or edits of the files.. (attack.php, global_funk.php and inventory.php) 6 new files   When i have the time i will be adding an additional stat to the pets and a pet market, anyone who has already bought this will get the addons for free. Ty and pm me if interested :) Screenshots will be up asap
  18. [V2] This mod allows items to have varying damage. This adds a bit more strategy to the attack system and gives a use for a secondary weapon, as the player could equip an item that does a reliable amount of damage e.g: 500-600, for their primary weapon. But then a less reliable weapon e.g: 100-1000 for their secondary so it can be used to finish an opponent off if their in need of a big hit. It includes.. 1 sql and edits or replacements to the files attack.php, staff_items.php, shops.php and iteminfo.php It is very easy to install and very cheap at just $3! Due to the price their will be no limit to the amount i'm selling so just message me if your interested. Ty :)
  19. searchname.php <?php include "globals.php"; //search name if(!$_GET['name']) { print "Invalid use of file"; } else { $q=$db->query("SELECT * FROM users WHERE username LIKE ('%{$_GET['name']}%')"); print $db->num_rows($q)." players found. <table><tr style='background-color:gray;'><th>User</th><th>Level</th><th>Money</th></tr>"; while($r=$db->fetch_row($q)) { $ir['IQ']=number_format($ir['IQ']); if($ir['IQ'] > $r['IQ']) { $m= "{$r['money']}"; } else if ($ir['IQ'] <= $r['IQ']) { $m = "???"; } print "<tr><td>[url='viewuser.php?u={$r[']{$r['username']}[/url]</td><td>{$r['level']}</td><td>$$m</td></tr>"; } print "</table>"; } $h->endpage(); ?>
  20. pretty much do the exact same thing... searchlocation.php <?php include "globals.php"; //search name if(!$_GET['location']) { print "Invalid use of file"; } else { $q=$db->query("SELECT * FROM users WHERE location = '{$_GET['location']}' ORDER BY username"); print $db->num_rows($q)." players found. <table><tr style='background-color:gray;'><th>User</th<th>Level</th><th>Money</th></tr>"; while($r=$db->fetch_row($q)) { $ir['IQ']=number_format($ir['IQ']); if($ir['IQ'] > $r['IQ']) { $m= "{$r['money']}"; } else { $m = "???"; } print "<tr><td>[url='viewuser.php?u={$r[']{$r['username']}[/url]</td><td>{$r['level']}</td><td>$$m</td></tr>"; } print "</table>"; } $h->endpage(); ?>   and you would only need to delete the money part in the hall of fame and userlist
  21. A very simple addon for userlist, which basically gives a user another use for IQ. If a user has more IQ than another player it shows how much money that player has in the userlist otherwise it shows as "???". open up userlist.php, then find... while($r=$db->fetch_row($q)) { $d=""; under it add.. $ir['IQ']=number_format($ir['IQ']); if($ir['IQ'] > $r['IQ']) { $m= "$/{$r['money']}"; } else if ($ir['IQ'] <= $r['IQ']) { $m = "???"; } Then find... \${$r['money']} and replace with $m you may also want to take out the feature that allows users to order players by how much money they have. Done!
  22. yeah there probs is quite a few like this... but i made this one :evil:
  23. an edited users online page...................   <?php require_once("globals.php"); $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false; switch($_GET['action']) { default: online_index(); break; case 'online1': online1_1(); break; case 'online1sub': online1stats_1_sub(); break; case 'online2': online2_1(); break; case 'online2sub': online2_1_sub(); break; case 'online3': online3_1(); break; case 'online3sub': online3_1_sub(); break; } function online_index() { global $ir,$userid,$db,$h; print "<h3>Users Online (last 15 mins)</h3> <table width='100%' height='30'><tr><td width =33.33%>[url='usersonline.php']<center>[b]Last action 15 mins[/b]</center>[/url]</td><td width =33.33%>[url='usersonline.php?action=online2']<center>Last action 1 hour</center>[/url]</td><td width =33.33%>[url='usersonline.php?action=online3']<center>Last action 5 hours</center>[/url]</td></tr></table>"; $cn=0; $q=$db->query("SELECT * FROM users WHERE laston>unix_timestamp()-15*60 ORDER BY laston DESC"); while($r=$db->fetch_row($q)) { $la=time()-$r['laston']; $unit="secs"; if($la >= 60) { $la=(int) ($la/60); $unit="mins"; } if($la >= 60) { $la=(int) ($la/60); $unit="hours"; if($la >= 24) { $la=(int) ($la/24); $unit="days"; } } $cn++; print "<table width=30%><tr><td><center>$cn. [url='viewuser.php?u={$r[']{$r['username']}[/url] ($la $unit) </center></td></tr></table>"; } } function online2_1() { global $ir,$userid,$db,$h; print "<h3>Users Online (last 1 hour)</h3> <table width='100%' height='30'><tr><td width =33.33%>[url='usersonline.php']<center>Last action 15 mins</center>[/url]</td><td width =33.33%>[url='usersonline.php?action=online2']<center>[b]Last action 1 hour[/b]</center>[/url]</td><td width =33.33%>[url='usersonline.php?action=online3']<center>Last action 5 hours</center>[/url]</td></tr></table>"; $cn=0; $q=$db->query("SELECT * FROM users WHERE laston>unix_timestamp()-60*60 ORDER BY laston DESC"); while($r=$db->fetch_row($q)) { $la=time()-$r['laston']; $unit="secs"; if($la >= 60) { $la=(int) ($la/60); $unit="mins"; } if($la >= 60) { $la=(int) ($la/60); $unit="hours"; if($la >= 24) { $la=(int) ($la/24); $unit="days"; } } $cn++; print "<table width=30%><tr><td><center>$cn. [url='viewuser.php?u={$r[']{$r['username']}[/url] ($la $unit) </center></td></tr></table>"; } } function online3_1() { global $ir,$userid,$db,$h; print "<h3>Users Online (last 5 hours)</h3> <table width='100%' height='30'><tr><td width =33.33%>[url='usersonline.php']<center>Last action 15 mins</center>[/url]</td><td width =33.33%>[url='usersonline.php?action=online2']<center>Last action 1 hour</center>[/url]</td><td width =33.33%>[url='usersonline.php?action=online3']<center>[b]Last action 5 hours[/b]</center>[/url]</td></tr></table>"; $cn=0; $q=$db->query("SELECT * FROM users WHERE laston>unix_timestamp()-300*60 ORDER BY laston DESC"); while($r=$db->fetch_row($q)) { $la=time()-$r['laston']; $unit="secs"; if($la >= 60) { $la=(int) ($la/60); $unit="mins"; } if($la >= 60) { $la=(int) ($la/60); $unit="hours"; if($la >= 24) { $la=(int) ($la/24); $unit="days"; } } $cn++; print "<table width=30%><tr><td><center>$cn. [url='viewuser.php?u={$r[']{$r['username']}[/url] ($la $unit) </center></td></tr></table>"; } } $h->endpage(); ?>
  24. a small addon for estate.php so you can see the sell price of your house sql [mysql]ALTER TABLE users ADD houseprice INT(11) DEFAULT 0;[/mysql] find $db->query("UPDATE users SET money=money-{$np['hPRICE']},will=0,maxwill={$np['hWILL']} WHERE userid=$userid");   relplace with $db->query("UPDATE users SET money=money-{$np['hPRICE']},houseprice={$np['hPRICE']},will=0,maxwill={$np['hWILL']} WHERE userid=$userid");   find print "<a href='estate.php?sellhouse'> Sell Your House</a> ";   replace with print "<a href='estate.php?sellhouse'> Sell Your House for [b]$/{$ir['houseprice']}[/b]</a> ";
  25. heres a more secure version   <?php require_once("globals.php"); $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false; if ($ir['mazeturns'] == 0) { echo "<center>You can only do this once a day!</center>"; exit; } switch($_GET['action']) { case 'entermaze': entermaze_1(); break; case 'entermaze': entermaze_1_sub(); break; case 'right': right_1(); break; case 'right': right_1_sub(); break; case 'left': left_1(); break; case 'left': left_1_sub(); break; case 'money': money_1(); break; case 'money': money_1_sub(); break; default: maze_index(); break; } echo "<h2>THE MAZE</h2> "; function maze_index() { global $ir,$userid,$db,$h; echo "Welcome to the maze! [url='maze.php?action=entermaze']<center>Enter The Maze</center>[/url]"; } function entermaze_1() { global $ir,$userid,$db,$h; echo "Which way would you like to go? [url='maze.php?action=right']<center>Go Right</center>[/url] [url='maze.php?action=right']<center>Go Left</center>[/url] "; } function right_1() { global $ir,$userid,$db,$h; $rand=mt_rand(1,2); $money=$ir['mjackpot']*3; if($rand == 1) { mysql_query("UPDATE `users` SET `mjackpot`=`mjackpot`*3 WHERE (`userid`=".$_SESSION['userid'].")"); echo "<font color=lime>Congratulations! you took the right path and your jackpot was increased to $$money</font> [url='maze.php?action=right']<center>Go Right</center>[/url] [url='maze.php?action=left']<center>Go Left</center>[/url] [url='maze.php?action=money']<center>Take the money and run</center>[/url]"; } else { mysql_query("UPDATE `users` SET `mazeturns`=0 WHERE (`userid`=".$_SESSION['userid'].")"); echo "You took the wrong path :( come back tomorrow :) [url='index.php']<center>Go Home</center>[/url]"; } } function left_1() { global $ir,$userid,$db,$h; $rand=mt_rand(1,2); $money=$ir['mjackpot']*3; if($rand == 1) { mysql_query("UPDATE `users` SET `mjackpot`=`mjackpot`*3 WHERE (`userid`=".$_SESSION['userid'].")"); echo "<font color=lime>>Congratulations! you took the right path and your jackpot was increased to $$money</font> [url='maze.php?action=right']<center>Go Right</center>[/url] [url='maze.php?action=right']<center>Go Left</center>[/url] [url='maze.php?action=money']<center>Take the money and run</center>[/url]"; } else { mysql_query("UPDATE `users` SET `mazeturns`=0 WHERE (`userid`=".$_SESSION['userid'].")"); echo "You took the wrong path :( come back tomorrow :) [url='index.php']<center>Go Home</center>[/url]"; } } function money_1() { global $ir,$userid,$db,$h; $money=$ir['mjackpot']; echo "<font color=lime>You have claimed your jackpot of $/{$ir['mjackpot']}</font> [url='index.php']<center>Go Home</center>[/url]"; mysql_query("UPDATE `users` SET `mazeturns`=0, `money`=`money`+$money WHERE (`userid`=".$_SESSION['userid'].")"); } $h->endpage; ?>
×
×
  • Create New...