Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Your or mine?
  2. I would like to see latest Blog's on the "Portal". I would like to see latest Blog Entry associated with user posts somewhere. I know not many people make blog's, but I want to start blogging and I want maximum exposure to my blog.
  3. Sim

    AJAX Help

    Was that yes to me or him?
  4. Sim

    AJAX Help

    From what I have read, it would be best to use txt file or some other sort of file rather then a sql DB for something like this. I may be wrong though.
  5. You will have to be typing the descriptions somewhere as she Lil said they had to be "created"
  6. The person would still have to enter Description's, but it sure would save a lot of time. Hey Lilith. I am interested in this job. I want the job because I need money of course. I can type at over 90wpm and I am a experienced php/mySQL programmer. I also have never used any "admin access" given to me in ways I should not.
  7. I thought you just paid someone $520 for him/her to create you a mod that you never received?
  8. I find it funny.
  9. how about some information?
  10. I think something like a Online Teaching Class. After x people sign up. They are given a lesson x ammount of days with a small assignment to show what they have learned. Nothing super HARD, just a Crash Course. I wouldn't mind helping. Also, there shouldn't be no grading as this would discourage people. A simple pass/fail system would work.
  11. screen shots!!
  12. I am about to start my next new project. As you will be a partner in it. I have not came up with a complete design yet for the game itself as I would like this to be more of a team effort then a solo effort, but I want to follow my concept. Game is strickly Tick-Based. Game is mostly multiplayer with team battles as well as 1v1 battles Game has lobby system where players find others to battle or join there team. Game has multiple "World's" (maps) for battle's. Game "World's" has multiple "Towns" (each player/team starts in a Town) Game "Towns" allow multiple "Actions" Game "Actions" are like "Committing Crimes", "Recruiting Member's" Each Action takes x amount of time to complete. Multiple "Actions" can happen at once. Game Objective is for your team or yourself is to "Control World". I would also like for an average game to only take between 5-15 minute's. What I need? Maybe a few programmer's. Some Artists are needed. Game Designer, Tester and Game Master. Contact me via msn @ [email protected]
  13. Sim

    WTF

    Theres a new Zodiak sign. so nows there 13. I am no longer a gemini. I'm something different now.
  14. I have never seen a template cost 4000$
  15. Sim

    jQuery helps ;[

    Thanks for the great effort Djkanna, but I need to use jQuery. I will displaying a lot more then just a form. There will a lot of other things being displayed and more then one other form being displayed too.
  16. Sim

    jQuery helps ;[

    Yes, but does it change the actual inside of the form? I don't need same form returned.
  17. I don't want to use iFrame. Here is what I came up with, but its not working.. It displays nothing. I place this code on external SITE to try to call my PHP file. <script type="text/javascript" src="http://somedomain.com/pet.php?petID=5"></script>   my pet.php page just calls the class in pet.class.php on "somedomain.com" so I'll just post the pet.class.php file < ?php class pet { //construct function __construct() { $this->petDisplay(); } //show pet function petView($petData) { //vars to replace in looper file $replacers = array("{NAME}", "{IMG}", "{LVL}", "{LID}"); //open template file $first_sec = file_get_contents("template/pet.htm"); $template = str_replace($replacers, $petData, $first_sec); Header("content-type: application/x-javascript"); echo $template; } //get all user pets function petDisplay() { require_once('mysql.class.php'); //vars $mysql = new mysql(); $petID = $_GET['petID']; $petUserID = $_GET['petUserID']; //get pet $mysql->query("SELECT pets.petID, pets.petName, pets.petFileType, userpets.upPetID, userpets.upHits FROM userpets, pets WHERE userpets.upID='$petID' AND pets.petID=userpets.upPetID"); $data = mysql_fetch_assoc($mysql->result); $hits = $data['upHits'] + 1; $petsID = $data['upPetID']; //get potential new pet $mysql->query("SELECT petID, petReq, petName, petFileType FROM pets WHERE petParentID='$petsID'"); $dataNew = mysql_fetch_assoc($mysql->result); //LEVEL UP!! if($hits >= $dataNew['petReq'] && $dataNew['petReq'] != 0) { $newPetID = $dataNew['petID']; //update user pet sql data $mysql->unreturnquery("UPDATE userpets SET upPetID='$newPetID', upHits='1' WHERE upID='$petID'"); //send email about LEVEL UP!! $msg = "Your pet has advanced to " . $dataNew['petName'] . ". View your new pet at somedomain.com/mypets.php"; $header = "From: SECRET SITE <[email protected]>\n\r"; mail($email, "Congradulations on Pet Advance", $msg, $header); //set data $pet = array($dataNew['petName'], "pets/" . $dataNew['petName'] . '.' . $dataNew['petFileType'], 1); } else { $mysql->unreturnquery("UPDATE userpets SET upHits='$hits' WHERE upID='$petID'"); //set data $pet = array($data['petName'], "pets/" . $data['petName'] . '.' . $data['petFileType'], $hits); } $this->petView($pet); } } ?>   Any ideas. If I call pet.php by itself. It will output my template which is just an image. ;]
  18. Sim

    jQuery helps ;[

    No errors, but its flawed. View your source. It removes all HTML but the form itself.
  19. Sim

    jQuery helps ;[

    hmm. http:// is required. People are calling my php file from there webserver.
  20. Sim

    jQuery helps ;[

    Same result.
  21. Whats some different quest types? It doesn't matter how simple or hard they are. I do not need actual quests. Here is what I can currently think of. Talk different NPC Find different NPC Give Item to NPC or Find Item and Give to a NPC Defeating a NPC Defeat X NPC's Escort NPC x to Destination X Whats some different player stats? Here is what I can currently think of that's needed. HP: MP: STR: DEF: Now what about some skill's? So far I got: Hunting Fishing Mining Wood Cutting Farming Alchemy Herbalism (spell's) Wooling (clothing) Should I even add Wooling since this is a form of Alchemy?
  22. Sim

    jQuery helps ;[

    I am making this for learning purpose's and failing. ;[ Mission: To display new FORM from with my SESSION counter every time button is clicked Problem: It removes my HTML!!! and outputs whats in my ajax.php file?? Someone told me I should use full path's to js files, so I am. my INDEX page (index.php) <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js" type="text/javascript"></script> <script src="http://www.phpengines.info/ajax/js/plugins/jquery.form.js" type="text/javascript"></script> <script src="http://www.phpengines.info/ajax/js/forms.js" type="text/javascript"></script> <div id="outcome1" style="color:red"></div> <div id="outcome"> <form name="form1" id="form1" method="post" action="http://www.phpengines.info/ajax/js/ajax/ajax.php"> <div id="test"><input type="submit" id="save" value="save" /></div> </form> </div> </body> </html>   my forms.js file $(document).ready(function(){ $("#save").mouseup(function () { $("#outcome1").html("Saving..."); $.ajax({ url: $("#form1").attr("action"), global: false, type: "POST", data: $("#form1").serialize(), dataType: "html", success: function(msg){ $("#outcome").html(msg); }, error: function(msg) { $("#outcome").html(msg); } }); }); });   My ajax.php file (the source file) <? session_start(); if(!isset($_SESSION['ajax'])) { $_SESSION['ajax'] = 1; } else { $_SESSION['ajax']++;; } echo ' <form name="form1" id="form1" method="post" action="http://www.phpengines.info/ajax/js/ajax/ajax.php"> Boomer ' . $_SESSION['ajax'] . ' test <div id="test"><input type="submit" id="save" value="save' . $_SESSION['ajax'] . '" /></div> </form>'; ?>
  23. Sim

    Cloud Server's

    What is a Cloud Server? I can't figure out the concept of it.
  24. The section doesn't even need to be about Flash Programming. Maybe flash games in Players Corner. Wii and PS3 only got 4 threads in A YEAR!!! That is non-sense.
×
×
  • Create New...