Jump to content
MakeWebGames

ShadyCoco

Members
  • Posts

    98
  • Joined

  • Last visited

Everything posted by ShadyCoco

  1. Hey. Nice idea, with a little more work with design and as you say more IE friendly it will be a nice place to put my game. Nice job and Good luck on other projects. :)
  2. Karos online - PVP mmorpg (3D) Crossfire - FPS Dragon nest - MMORPG dungeon. version(http://dn.cherrycredits.com/) PS im always looking for good graphics PvP mmorpgs so pm me :P
  3. This is really nice for new people and also old people who want to make some from a base :) Good job man :)
  4. Buy now price £30. But all offers welcome :) And yeah never thought about that Zu..
  5. Ermm never used range check.... Is this how it would work:   <?php //checking to 999,999 $rangechecking = range(1,999999); if ($_POST['amount'] > $rangechecking) { exit; } else { echo ' you posted a number between 1 and 999,999'; exit; } ?>   Is that about right?
  6. Well you cant put this to a crime style....
  7. V1 is the same as MrDJK (dj kanna) So id go with V2 :3
  8. Hey, I'm selling a fantasy template PSD - not coded. Screenshot: I cant code the template so don't ask me. Some people on here might code it for you. I'd recommend Dave, peter. Comments Welcome. Post offers
  9. Ermm. Best of luck? Sharing really isn't caring when money is around. I really wouldn't let anyone look at my code/project files source or anything else without me knowing them for ++ years... This group should be with friends. Not random people :? PS: I'm GREAT at spider diagrams so hit me up I'll draw you guys an AWSOME diagram!
  10. Me. IGN: -[L]- Clan: CryB1tch I'll make a new topic for this maybe :P
  11. Hello. I'm going to make one free mod for GRPG and need some ideas... I'm not the best coder but can do some cool things. I've been one of the only coders to make mods for GRPG. My old account/name was SlanderDesign. So go look at some of my other free mod posts and see what my coding is like. If you have a mod in mind please post and I'll see what I can do for you. Rules of my free mod: No more than 3/4 Files (500/700 lines MAX) No selling Please keep my comments - it wont affect your loading times and will keep my copyrights for people to see. Support for errors will be limited - I wont stop what I'm doing to come fix your game/mod. So post your Ideas and I'll be back to see what I can do for you :)
  12. Ermm. You have _target="blank" why? That'd open a new tab or page depending on browser... Also < href="http://blah.php"> why have http://? simply href="5050.php" would do. Amount and newpoints needs abs(intval()); Also $winner = rand(0,1); could be better with mt_rand() :) And selecting owner from the DB... Use MRES because some people might not have secured thier user name change so this could be a place to exploit it. It's a real nice mod but it's just C/P from money 5050 and changed with points.... Thanks for posting it anyway :)
  13. Good point. I've always liked having a 2nd step for anything that can cause problems in my game. IE admin/staff panels. A 2nd password, custom admin login names. Thay is always more you can do but then it becomes over kill and slows the page down. :)
  14. Lol, I have a project using this engine and is a little like NEaB in the style BUT! The coding is a mess. The core file is all compact (one long line of code no breaks or tabs!) and countless JS errors. List of problems I have: No attack system No admin side worth using. Package system has no security/no security at all for chat. Movment system countless bugs. No optimizing images - uses a **** ton of bandwidth. This engine is good only for people with a lot of time and don't want to make a BIG project. And for the record NEaB looks EPIC from what I've seen. Pitty I'm poor and cant afford the miniNEaB :)
  15. I have to agree with Peter. This template has a miss match of genres... Scrolls/pirate and Bats/horror I couldn't think of a game or site I could use this for :/ Sorry mate Good luck on other templates.
  16. Oh :( My bad, thanks for the alert spud - it's been a while since I did any real coding :P Edit: This is a player manger system so I don't see why we need protection? If this page is for admin/mods only it really don't need much security :)
  17. Wow. Alot of different speeds here and pings. Dave your ping is epic for Crossfire... :/ and Danny... you need to go to BT or virgin and ask them to do an area check and find out who has faster and cheaper internet :) For me BT is the best in my area. Living just 200~300 yards from the server/pole transmiter thing? :)
  18. <?php require("top.php"); ?> <?php if (in_array($name, $admin_array)){ // select members for select fields. $result = mysql_query("SELECT name,id FROM login ORDER BY name DESC") or die(mysql_error()); $member_list = ""; while($row = mysql_fetch_array( $result )) { if($row['name'] == $_POST['name']){ $member_list .= "<option selected=\"selected\" value=\"".$row['name']."\">".$row['name']."</option>"; }else{ $member_list .= "<option value=\"".$row['name']."\">".$row['name']."</option>"; } } if(isset($_POST['Update'])){ if(strlen($_POST['credits']) <= 10 and strlen($_POST['money']) <= 10 and strlen($_POST['bullets']) <= 10){ if(is_numeric($_POST['credits']) and is_numeric($_POST['money']) and is_numeric($_POST['bullets'])){ if(empty($_POST['credits'])){ $_POST['credits'] = 0; } if(empty($_POST['money'])){ $_POST['money'] = 0; } if(empty($_POST['bullets'])){ $_POST['bullets'] = 0; } // update state. $creditsgive = abs(intval($_POST['credits'])); $moneygive = abs(intval($_POST['money'])); $bulletsgive = abs(intval($_POST['bullets'])); $result = mysql_query("UPDATE login SET credits='".$creditsgive."', money='".$moneygive."', ammo='".$bulletsgive."' WHERE name='" .mysql_real_escape_string($_POST['name']). "'") or die(mysql_error()); echo "".$_POST['name']."'s items have been changed."; }else{ echo "One or more values are invalid."; } }else{ echo "One or more values are invalid."; } } if(isset($_POST['Search']) or isset($_POST['Update'])){ $sql = "SELECT money,credits,ammo FROM login WHERE name='".mysql_real_escape_string($_POST['name'])."'"; $query = mysql_query($sql) or die(mysql_error()); $row = mysql_fetch_object($query); $search_credits = htmlspecialchars($row->credits); $search_money = htmlspecialchars($row->money); $search_ammo = htmlspecialchars($row->ammo); } ?> <form method="post"> <table width="350" border="0" cellpadding="0" cellspacing="2" class="table"> <tr> <td colspan="3" align="left" class="head">Member Management: </td> </tr> <tr> <td colspan="3" align="left" class="sub">Select Member: </td> </tr> <tr> <td align="left" class="cell">Username:</td> <td width="175" align="center" class="cell"><select name="name" class="entryfield" id="name"> <option value="">Select.</option> <?php echo $member_list; ?> </select> </td> <td width="100" align="center" class="cell"> <input name="Search" type="submit" class="button" id="Search" onfocus="if(this.blur)this.blur()" value="Search." /></td> </tr> <tr> <td colspan="3" align="left" class="sub">Options:</td> </tr> <tr> <td width="75" align="left" class="cell">Credits:</td> <td width="275" colspan="2" align="center" class="cell"><input name="credits" type="text" class="entryfield" id="credits" value="<?php echo $search_credits; ?>" maxlength="10" /></td> </tr> <tr> <td width="75" align="left" class="cell">Money:</td> <td width="275" colspan="2" align="center" class="cell"><input name="money" type="text" class="entryfield" id="money" value="<?php echo $search_money; ?>" maxlength="10" /></td> </tr> <tr> <td width="75" align="left" class="cell">Bullets:</td> <td width="275" colspan="2" align="center" class="cell"><input name="bullets" type="text" class="entryfield" id="bullets" value="<?php echo $search_ammo; ?>" maxlength="10" /></td> </tr> <tr> <td colspan="3" align="right" class="submit"><input name="Update" type="submit" class="button" id="Update" onfocus="if(this.blur)this.blur()" value="Update." /></td> </tr> </table> </form> <?php } ?> <?php require("bottom.php"); ?>   Added abs intval to the credits, money, bullets... Don't use MRES for a number totaly pointless :) Also try using Mysqli as mysql is less secure... Or something along them lines. GL
  19. "The only pages I changed was my register, login, activate, forgotpassword" You may of included the wrong header? Login,register, any page with GRPG without a session needs nlheader.php and nlfooter.php That's the only thing I can think of. If you need more help PM your msn and I can try my best.
  20. ShadyCoco

    Any one know ?

    Hello. If you wanted to obtain the script... Generic RPG is a part of the open source project over at http://sourceforge.net/ If you wanted something else... Post in support and I'll help you out. GL
  21. Don't know if this is the right section... but here's the link:   This kept me watching for the whole 2 hours and gave me some really great ideas for a new game... Hope it does the same for you guys :) Enjoy
  22. Not bad at all :D
  23. As the title says: How fast is your internet? Do a speed test and share resutls: http://speedtest.net/ http://www.speedtest.net/result/1447640260.png
  24. Sent jack a PM last night f he don't reply I'll upload and send you link.
  25. Ermm Don't echo it? end the php put the code there like so <?php //your code here //heres where you want the HTML //end the PHP ?> <!-- add HTML here --> <!-- start php again --> <?php //carry on with your code... // then end or leave open ?> Hope this help you...
×
×
  • Create New...