Jump to content
MakeWebGames

Djkanna

Members
  • Posts

    3,138
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by Djkanna

  1. Haha, yes. Urm it would be either v1.0.0 or prerelease v1.9.x Gotta admit though even though they're pretty much blocks, those baby chickens are 'awwwwww'. ;D
  2. Djkanna

    Man

    Hmm I tried to kill the guy, but it wouldn't keep still. :( I like it but as Neon said no real purpose yet.
  3. Google Images, provinding you're using them for reference purposes. Stock providers I somehow doubt have mythical creatures, however I could be wrong so look here too. ^And the above. Edit: Perhaps Flickr.
  4. Djkanna

    Im back!

    Welcome back Danny.
  5. And that. (@Peterisgb) So don't blame the creator.
  6. Well then we'd need to see the file. :)
  7. Also look at the date in which this was posted, don't expect things to be still up after (what 3 years), this is directed at the images section of the mini rant.
  8. Working off of v2.03 (no idea what's changed in Redux) as it's also a bug in 2.03. Find: $d = $db->query("SELECT `itmsellprice`,`itmbuyprice`,`itmbuyable`,`itmtype`,`itmdesc`,`itmname` FROM `items` WHERE `itmid` = {$_POST['item']}"); in your edit item form function. Replace with: $d = $db->query("SELECT `itmsellprice`, `itmbuyprice`, `itmbuyable`, `itmtype`, `itmdesc`, `itmname`, `weapon`, `armor` FROM `items` WHERE `itmid` = {$_POST['item']}");
  9. It's okay for your first mod, well done. If I may offer a small suggestion, doing something like this: $itemtype = array (); $getItemTypes = $db->query ('SELECT `itemtypeid`, `itemtypename` FROM `itemtypes`'); if ($db->num_rows($getItemTypes) > 0) { while ($it = $db->fetch_row($getItemTypes)) { $itemtype[$it['itemtypeid']] = $it['itemtypename']; } } if (empty($itemtype)) { echo '<p>Sorry we had trouble getting the item type information, please try again later.</p>'; $h->endpage(); exit; } Or of course get the name when you get the info for the items, either way. Not every game/person would have the exact same item types and some may have even more, I know your supposed to modify things before putting them into the game, but people don't then complain.
  10. Well I highly doubt there is anything in there of importance, that isn't in the original MCC staff file.
  11. Okay I only got so far, I think the rest is located in the 'file' that should be on Ravan's server. However staff.php is just for announcements and settings (in MCCodes) so just grab that file. Ravan's staff.php file (version 1.2) http://pastebin.com/kMf2hE5w The bag of crap that came after decoding parts of it, it's not formated (I got so far and couldn't be bothered/ may also have messed up a part of it.). http://pastebin.com/xtFFFYLw (notice at the end we're grabbing the next part from their server (the information stored within eval($codelock_decrypter["locker"]->output()); ).
  12. I think A.B means something like <!--HTML--> <p id="currentlySelected"></p> <label for="selectList">Select something:</label> <select type="dropdown" onchange="changeSelected()" name="options" id="selectList"> <option value="one">One</option> <option value="two">Two</option> <option value="three">Three</option> </select> <!--JS--> <script> function changeSelected() { var drp = document.getElementById('selectList'), drpVal = drp.options[drp.selectedIndex].text; document.getElementById('currentlySelected').innerHTML = drpVal; return; } </script> Could be wrong.
  13. ^This. I don't think Redux has much of an imprint in this community, and definately not as much as V2 does, continue to create V2 mods, personally I don't think Redux would be worth getting just to make mods for, as I don't really know how many are using it.
  14. Because at that time Zero, was obsessed with the French. (probably still is. :P)
  15. Very nice, I am unsure if you're trying to add a little more depth to your object, but your footrest seems a little wonky.
  16. You was not misinformed, the value can be changed, however how Cronic is using it is fine.
  17. $_SERVER['PHP_SELF'] is fine.
  18. :P The page wouldn't have worked but considering errors are turned off, and there's an error before it (due to the blank page remaining after the \ had been removed) it really wouldn't have made it that far.
  19. Okay then, at least people now know. :D
  20. Just a thought, apparently he's working on a game with another MWG member, so perhaps he doesn't have the time to check his PM's. You probably should state whether it's directly (rather than 'mainly')aimed at Dayo and you're not looking for someone other than Dayo, or anyone will do (to a degree, you know what I mean).
  21. I don't, no sorry. I'm sure there's someone on here that creates game scripts.
  22. I don't think the problem is the genre's have been overused, it's just each game follows a similar path, there's still room for another mafia,army,vampire etc game, you've just got to make it different from the others out there.
  23. Preferably your own, that way you can build to your exact specifications for your desired game. If that's not an option, I'd have to say MCCodes, just because of the extensive list of modifications available, and the amount of support you can get (afaik GRPG has little to no support).
  24. Great to hear, best of luck with your courses.
  25. I wub you.
×
×
  • Create New...