Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,667
  • Joined

  • Last visited

  • Days Won

    75

Everything posted by Uridium

  1. Still tinkering with ideas.. for me the worst part of any mccodes was the lack of admin abilities
  2. here are a few ideas.... 1 = Complete cronless engine that would work via phpmyadmin 2 = New links in explore to be done via phpmyadmin which wuld mean less editing of the explore script... 3 = Idea from razor42.. Upgraded referrer. one that admins can setup so for example.. 3a Person referring if they are a donator to a game should receive extra benefits than someone who isn't a donator and referring someone...
  3. Might aswell I still think theres some life left in mccodes...
  4. not sure yet the mods I created over the years have had some damn decent ideas behind them so I guess the newer ones will have to surpass those :)
  5. Iv'e been toying with the Idea of creating some more mods for Mccodes V2
  6. I like this mod and felt more could be done so heres a preview of what can be achieved.... Screenshot available
  7. how about Mafians-Engine.co.uk though id leave your name in there also ;) maf-IAN-s lol
  8. Genocide sounded good to me
  9. Peters work is from what ive seen on a whole new level nice presentation and some damn decent ideas behind his work weldone Peter...
  10. Explorer don't work just says LOADING... Chrome: SLOW DOWN was a black screen couldn't see track...
  11. Few Factors for all your questions... TIME = Do you have enough of this to put into running/creating a game PREPERATION = Most games on here are fly on the wall games which means, they install they run and hope for the best.. What can you offer that no-one else offers ? THINK-TANK = Most decent games have a damn good brain behind them that's why they are successful. if your game is based on Medieval then you need to be 1000% accurate at what your building everything in your game has to be associated with what the theme is about and everything within that theme needs to be accurate. Items Weapons and storyline.. (Pure Fail) a medieval game that has mention of a baseball bat will and could be the games biggest let down and if your users don't feel that your not being serious then you will lose... (Pure Genius) however a Medieval game where your Re-search regards this past has been added calculated and well thought out will be a success BUT remember NEVER fall into the pit what I mean by this is if a player has an AXE that can do 30 damage then don't have a knife that can inflict 50 Damage cos that isn't how it is..
  12. Very nice mod very very nice
  13. This is just an upgrade from Alains Barter Mod on the previous version it wasn't possible to remove items you were selling However this can now be done and items are places back into your inventory
  14. This mod will allow clans to upload a banner for their clans purely just for decorative purposes...
  15. Isomerizer is back
  16. This is actually a very nice mod well executed and does what it says on the tin.. Weldone Kyle and don't be giving me any shoutouts you did all the work :)
  17. Wasn't this tried before and failed.. Although people say they are bored/hate these forums we've all been coming here for years its a way of life now...
  18. MTG wadda guy ;) ALL praise MTG we bow to you oh holy sock oops lol Glad your back on your feet now Anthony Read you memoir and really felt for you ive been in a similar predicament but not for the duration you was in, So I feel for ya..
  19. Sent you an inbox
  20. overwrite your content.php with this one..   <?php if (! IsModerator()) { header("Location: index.php"); return; } TableHeader("Add Days"); if (isset($_POST['user'])) { if(!FindUser($_POST["user"])) { ErrorMessage("Selected user is invalid"); return; } else if (!isset($_POST['Days'])) { ErrorMessage("You must select the amount of days to give"); return; } else { $currentMembership = GetUserVariable(premiumMember); // Initial value or old membership if ($currentMembership == null || $currentMembership + 0 < time()) $currentMembership = time() + (GetConfigValue("premiumMembershipDuration", "premium") * $_POST["Days"] * 48 * 60); // Adding to the current membership else $currentMembership += (GetConfigValue("premiumMembershipDuration", "premium") * $_POST["Days"] * 48 * 60); SetUserVariable(premiumMember, $currentMembership); // REMOVED FOLLING LINES THESE ARE NOT NEEDED ANY MORE BUT WILL KEEP FOR FUTURE USE.. //$newValue = (GetUserVariable(premiumMember,$_POST["user"]) + $_POST["Days"]) + 0; //SetUserVariable(premiumMember, $newValue, $_POST["user"]); ResultMessage(Translate("New value is % s", TimeInterval(time(), GetUserVariable(premiumMember,$_POST["user"])))); } } echo "<form method='post' name='AddPremiumdays'>"; echo "<table class='plainTable'>"; echo "<tr><td width='1%' valign='top'><b>" . str_replace(" "," ",Translate("User:")) . "</b></td><td>" . SmartSelection("select id,username from users where id <> 1", "user", $userId) . "</td></tr>"; echo "<tr><td width='1%' valign='top'><b>" . str_replace(" "," ",Translate("Days:")) . "</b></td><td><input type='text' name='Days' placeholder='Amount of days'></td></tr>"; // leave below lines unedited this will come in useful for a later addition if needed.. /*if (GetUserVariable(premiumMember) == 0) { echo Translate("User has no days left"); } else echo Translate("user has %s.", TimeInterval(time(), GetUserVariable(premiumMember))) ."<br>";*/ echo "</table>"; echo "</form>"; TableFooter(); ButtonArea(); SubmitButton("Add Days", "AddPremiumdays"); EndButtonArea();
  21. Your content.php is wrong its adding by days and not by time so the userVariable is always wrong,,,
  22. I used this and im still not a premium member
  23. where have I heared the web addy deadlystreets before
  24. Things I would like to see on NWE is an option to (install module now or install module later) From the admin Panel Modules to Upgrade and Modules Available section....
  25. MAILING SYSTEM: Users who are not Premium Members can send messages but cannot send cash or items from a message. Premium members can send cash or items to a member that is not a premium member.. but the none premium member cannot collect the cash or items until they have become a Premium Member.. Premium members who send cash/items to a none Premium member can Cancel their items/cash sent if the none Premium member doesn't upgrade their account... LOG reports for sending of items/cash are now logged for sender to view their transfers These will tell you if any Items have been accepted or are still dormant for you too collect back.. ADMIN can block transfers if they feel that a conspiracy is happening between sender and receiver...   A few more modules are being worked on Im still tinkering with those for the moment...
×
×
  • Create New...