Jump to content
MakeWebGames

rulerofzu

Members
  • Posts

    2,464
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by rulerofzu

  1. Try using nbbc on sourceforge rather than the bbcode thats with mc2.
  2. Well yeah I was being generous. :D   Starting out on ads you would be silly not to set a limit so you can judge your best click/registrations.   30% is optimistic. Id say a lot lot less than that for a text based game.
  3. £200 on ads on a good ad network will get you about 4-5 days of adverts max.
  4. Useful for those who do not have ssh. Good find
  5. if ($myattack['energy'] >= $myattack['maxenergy']/2){   is 50% so change the /2
  6. From the msg ive just received asking for help on this.   Dayo you havnt updated your create table sql to include the time field.
  7. Karlos had one up for sale limited no. of copies though so dunno if he will sell it now.
  8. lmao   never used that before so didnt think to look it up....but hey kudos to you for pulling me up for it
  9. I reckon you should make this for free LazyT.....show everyone how its done 8o
  10. Here is a suggestion for this.   As gym training requires the use of will potions (or whatever you call them on your game) and crystals   Place a link to show use will potion[100] <-- number the player has left. Or it says you have none left.   I use such a link on my game and the players love it :D
  11. welcome back btw.
  12. in laymans terms   the jquery will equip/unequip on the page rather than you going back n forth between other pages.   I only tested the unequip but im sure the equip will work in the same way.
  13. Different files in the download I just checked.
  14. lol doesnt work :P
  15. Works fine. The only problem I can see is that FF users who love to run noscript run immediately into problems due to the script being called from an external url. Running a min js file on a server (721kb) isnt that much of a server load. Well as long as your on a decent server :D For the screenshot lovers out there....here is one for you :D Nice job though jquery :D
  16. lmao. lazy t.
  17.   I suggest using it, Zed.... It automatically merges the items, I think 8| Looking good though :) :thumbsup: Nope, MCCode standard one doesn't merge, I don't think so anyway, I've edited mine   Well I havnt changed mine and it merges the items 8|
  18. Yeah ive got an extra column in my inv table which gave a column count mismatch so nothing with your actual code as suspected.
  19. I had an issue with the header code but possibly my test site. Could be best to use the item add function though anyway.   event_add($Auction2['SellerID'],'Your auction finished without any bids.'); item_add($Auction2['SellerID'], $Auction2['ItemID'], 1); mysql_query("DELETE FROM `gAuction` WHERE (`ID` = ".$Auction2['ID'].")")or die(mysql_error());
  20. seanybob did this a few days ago over in the market place. although if your gonna post a version free nobody will complain except seanybob maybe lol
  21. Call this confirm.php or whatever you wish should do the job.   <?php include "globals.php"; $_GET['ID'] = ( isset($_GET['ID']) AND ctype_digit($_GET['ID']) ) ? $_GET['ID'] : '' ; if (isset($_GET['ID']) ) { $itm=$db->fetch_row($db->query(sprintf("SELECT iv.`inv_itemid`,`inv_userid`,i.`itmid`,`itmtype`,`itmname`,it.`itmtypeid` 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=%u AND iv.inv_userid=%d", $_GET['ID'], $_SESSION['userid']))); echo ' Do you want to continue and use [b]'.$itm['itmname'].'[/b]? <table width="75%" border="0" cellpadding="1" cellspacing="1" align="center"> <tr> <td><form action="itemuse.php?ID='.$_GET['ID'].'" method="post" name="ID"><input type="submit" value="continue"></form></td> </tr> </table> > [url="inventory.php"]Go Back[/url] '; } ?>
  22. You will need to call the inventory and match the inv_itemid to the items table itmid or your going to be using the wrong item. Use the left join query thats already in your itemuse file or write another.
  23. [mccode v2.x] Static Information Bar
  24. The footer bar cronus? Thats a mod from here. He didnt do the css for Zu in answer to your question although he can do the css if you want.
  25. Fella called Mark Hopkins www.alternate-creations.com
×
×
  • Create New...