Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Sim

    Game Security

    Re: Game Security   that would be apart of securing? $20 - 1 day. Your only fixing the known sql exploit's, what about html injection's?
  2. Sim

    Game Security

    Re: Game Security aim; ninja sim msn; [email protected] 20$ 1 day turn-a-round
  3. Re: My PHP Tactical RPG Game Engine new screen available.
  4. Register for your copy of a fresh html styled email newsletter @ www.phpgameengine.com Submit your game sites/blogs/forums for inclusion into the newsletter and Submit your gaming news/articles.
  5. Re: [mc-codes ] 5 card draw [$5.00]   Thanks wolfe.
  6. 679 lines of code demo without it being on mc-codes so peeps don't have to reg to test it out: www.phpgameengine.com/5_card_draw.php if anyone needs it for mc-codes v2. i'll be happy to convert.
  7. Re: My PHP Tactical RPG Game Engine Gameplay DEMO will become available tomorrow.
  8. Re: My PHP Tactical RPG Game Engine   Probally 100$
  9. Re: My PHP Tactical RPG Game Engine Thanks guys.
  10. Re: My PHP Tactical RPG Game Engine Thats a place holder to test my features to make sure they work. Images will be diferent upon finding an artist.
  11. Engine should be complete by next weekend. Current User Features: Create Own Tactical RPG Game =Create WORLD MAP for There Tactical RPG Game as well as character =Add Locations to WOrld Map that you travel to. =Char Create =Item Add - to shop at when you get further along in world map to buy magic items, health kits, new weapons. =Attack Add - add attack to multiple enemies at once and or character = Char, Edit Enemy, Item Edit, Attack Edit all look similar to this. You can edit details or change image. delete with CONFIRM so whats left to code: Waiting on a JavaScript MAP EDITOR. if it takes to long. i'll just use a php map editor. then to code the gameplay which should take a few days.
  12. Sim

    Tactical RPG Engine

    Re: Tactical RPG Engine Simple way to sumarize how gameplay will be is to show how it will be played so single player: http://www.defenseonlinegames.com/node/301/play   still thinkign about how multiplayer will be ;]
  13. Re: Converter I see nothing wrong with an auto-convertor. I may just make one =)
  14. Re: Cash for a few Custom Mods. I can do this for you. i added you on msn. my msn is [email protected]
  15. Sim

    Tactical RPG Engine

    Re: Tactical RPG Engine  
  16. My rates are fairly low and I do high quality work. contact me via aim; ninja sim msn; [email protected] for any project at all. mc-codes, custom games, custom sites, ect.
  17. www.phpgameengine.com
  18. I am starting a new Tactical RPG Engine which will be playable through web-browsers. If anyone is interested in helping visit www.tacticalrpgengine.com/forum Notice this project idea just came to me so nothing has been started yet. We will release the Tactical RPG Engine as FREE so anyone can download the script and put it on there website so people can start there own Tactical RPG Game. I myself have been programming websites and doing php game modifications for over 10years now. Thats what I will be contributing to the project. I am really looking for someone with unique ideas, a good web-designer to create a template for the engine/game, an AI programmer so we can do single player games, and some artists so we can build a demo game off the engine to showcase.
  19. I made it nice and simple. Login/Register on same page. www.onlinecrimemmorpg.com/TBS If you do happen to check things out Heres how you gotta do things for now. Create TBS Game After you create a TBS Game, refresh left frame as it will display new links. Race Add, Unit Add, Attack Add all works.
  20. Re: Looking to hire a Programmer. I can do this; contact me via; aim; ninja sim msn; [email protected]
  21. Re: Looking for a In House Coder (30% Rev Share From Game) Contact me via aim; [email protected] msn; [email protected]
  22. Re: My Login/Reg forms not working got the problem fixed. when using an image, it renames Reg to Reg_x and Reg_y
  23. http://www.gamemakerforums.com/main.php   is it cause i'm using images as submit buttons? Code: <?php session_start(); include "template.php"; include "mysql.php"; $template = &New Template; if(isset($_SESSION['userid'])) { header("Location: index.php"); exit; } //set templates $template->set_filenames(array('body' => "templates/default/main.tpl")); if(isset($_POST['Reg'])) { //vars $ip = $_SERVER['REMOTE_ADDR']; $user = mysql_real_escape_string($_POST['textUser']); $pass = mysql_real_escape_string($_POST['textPass']); $email = mysql_real_escape_string($_POST['textEmail']); $ref = mysql_real_escape_string($_GET['ref']); $time = time(); //check if username in use $result = mysql_query("SELECT userid FROM users WHERE username='$user'"); if (mysql_num_rows($result) == 1) { //set error message $err = 'Username in use '; } //check if email in use $result = mysql_query("SELECT userid FROM users WHERE email='$email'"); if (mysql_num_rows($result) == 1) { //set error message $err .= 'Email in use '; } //check if ip address is allready used $result = mysql_query("SELECT userid FROM users WHERE lastip='$ip'"); if (mysql_num_rows($result) == 1) { //set error message $err .= 'IP address allready in use '; } //check if there was an error if (strlen($err) > 0 ) { //set template var $template->assign_var("MESSAGE" , $err); } else //reg details OK. { /* //if a referral if(isset($_GET['ref'])) { //check if referal username exists $result = mysql_query("SELECT userid FROM users WHERE username='$ref'") or die(mysql_error()); if (mysql_num_rows($result) == 1) { //get user $user = mysql_fetch_object($result); //check reward $result = mysql_query("SELECT conf_value FROM settings WHERE conf_name='Referral'") or die(mysql_error()); $setting = mysql_fetch_object($result); //give reward to referal mysql_query("UPDATE users SET money=money+$setting->conf_value WHERE userid='$user->userid'") or die(mysql_error()); } } */ //insert new user query mysql_query("INSERT INTO users (username, userpass, lastip, signedup, email) VALUES ('$user','$pass','$ip','$time','$email')") or die(mysql_error()); //run query $result = mysql_query("SELECT userid FROM users WHERE username='$user'") or die(mysql_error()); //fetch user information $user = mysql_fetch_object($result); //set session $_SESSION['userid'] = $user->userid; //redirect user header("Location: index.php"); } } if(isset($_POST['Login'])) { //vars $user = mysql_real_escape_string($_POST['textUser']); $pass = mysql_real_escape_string($_POST['textPass']); //run query $result = mysql_query("SELECT userid FROM users WHERE username='$user' AND userpass='$pass'") or die(mysql_error()); //if username and password match if (mysql_num_rows($result) == 1) { //fetch user information $user = mysql_fetch_object($result); //set session $_SESSION['userid'] = $user->userid; //redirect user header("Location: index.php"); } else { //set var $template->assign_var("MESSAGE" , 'Incorrect username and password combination'); } } //parse templates $template->pparse('body'); ?>
  24. Re: Post Apacolyptic Turn Based HEX Stratagy Game Concept, seeks team of coders I been working on something very similar to this my msn is [email protected]
  25. Re: [mc-codes] [ $40 ] High Score Flash Arcade with 341 Games!!! bump.
×
×
  • Create New...