-
Posts
14 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by mags
-
Looking for a GRPG Partner for a myspace mobsters replica game
mags replied to mags's topic in Partnerships
This thread can be closed we have a partner thank you for all that looked at this -
Looking for a GRPG Partner for a myspace mobsters replica game
mags replied to mags's topic in Partnerships
im doing ok on the recovery sir ty for asking , Now for my son and me on are skills we are self teaching are selves daily and trying to grasp how it all works some makes sense and some doesnt so thats where we stand on the knowledge now what makes this different from other mob games is 1. myspace mobsters was very popular the 1#app with 30 million players until they pulled the plug on the community and we lost hundreds of accounts and thousands of dollars so some of use went to a game called mafia mofo outstanding game using the grpg script and its a popular game too but nothing like myspace mobsters ,so what im trying to do here is combine both games together and give the mob community a new mobsters game with a new twist and im still coming up with other ideals to add to the game to make it enjoyible with endless play. The database is mysql and I'm wanting to change it to mysqli and I'm also thinking about javascript. [ATTACH=CONFIG]1692[/ATTACH][ATTACH=CONFIG]1693[/ATTACH][ATTACH=CONFIG]1694[/ATTACH][ATTACH=CONFIG]1695[/ATTACH][ATTACH=CONFIG]1696[/ATTACH][ATTACH]1697[/ATTACH] i will add more later for view -
Title: Mobsters Made Men Game abstract: "Mobsters Made Men" is a Mob RPG, running of course inside the browser and will allow players to fight their way to the top of fame. My game will be a relica of the myspace mobsters with new twist and turns to give the players more to do. (Some of the) Unique features: Mobsters Made Men will have Npc and they will start to be hitlisted on the npc hitlist npcs will start to mug other players for there cash they will also be chucked into the npc jail and npcs will also try to attack players.There will be a points slot machine that will give out Cash,Points, and Items. Drive-by shootings on members and gang members. Hourly rewards for most fights won,mugs and kills.Top deadliest players in each state.(This plugins was made for me by Nonstopcoding and also can be purchased on his site) Technology used: Code will be HTML PHP CSS and possible Javascript(Still thinking about it) Current development status: So far I the game is about 40% done due to a heart attack i suffered a few weeks ago and now cash is beyond low. My own skills and tasks in the game: I'm not a coder but I'm understanding alot whats going on and learning php and html and i continue to learn every day. What I'm looking for: I really need an expert in GRPG to help finish this project off, I spent alot on this project to let it go. Expenses will be covered by: I will pay all the hosting and domain name when the project goes live, right now its on a free domain. Current team: It's just my son and myself at the moment. Share / gain of the partners: We will split the gain 50/50 and I will pay for the hosting and you will do the coding. If this interest you you can contact me here or skype. Nonstopcoding can vouch for me this is by far from a scam. Thank you for your time.
-
Hello sir and everyone this plugin is pretty cool i just purchased it for my game. I just want to point out a little mistake ,its 10 points per spin and can be edited. Thank You NonStopCoding
-
Thank you, everyone for the views and replies this job is taken. i have a few more mods that need to be created soon. like for example a gang system (my ideal gang system) , which i'm almost done planning it out and i know it will be a costly mod, and a new item/inventory system. also if any gRPG programmer has any mod' for sale please inbox your list again thank you
-
Hello im looking for a gRGP programmer that can make this mod for me below (1) staff Panel - for fast and custom missions. The S.panel must have these slots. a) Mission Name b) Level requirement c) Location d) Exp. payout e) Cash payout f) points payout g) Mastery Reward payout(special items example guns cars etc.) H) Payout Ratio (your chances of winning. Example 25% chance of winning 50% of winning etc..) I) mastery reward image slot(pic of the spec item you win) j) item requirements (4 slots so 4 different items can be required to do mission) (2) Players side a) Mastery Lvl displayed with progress bar and mastery achievement image (example MASTERY: gold 73% complete) b) Requirement info* c) Mastery Reward Image d) Start mission button (3) Data Table (4) please make sure all is secure If you can do this ,please contact me so we can talk about cost. Please if you take this job please have a working demo , for a costly mod I dont want crap work. Thank You
-
Thank you for your reply but someone contacted me on that mod, if I dont hear back in a few days I will contact you.
-
Hello everyone, I'm looking to purchase a Throne Mod or have one created for me. We can decide on price in private. I already looked in the paid mods here and tried to contact them but after a month with no response, im trying my luck here. Thank you
-
Thank You Newbie for this free plug-in, much appreciated!
-
I use GRPG, and would like to see more plug-ins for this engine
-
the only issue im having with this mod is that when i win my health remains at 100% and ideals?
-
when i attack and win my health remains at 100% <?php $menuhide=0; $atkpage=1; require_once("globals.php"); $_GET['ID'] = isset($_GET['ID']) && ctype_digit($_GET['ID']) ? abs((int) $_GET['ID']) : false; if(!$_GET['ID']){ echo "You did not select a valid ID"; $h->endpage(); exit; } $energy = $ir['maxenergy']/4; $error = ($ir['hp'] <= 0) ? "You can't attack someone when you have no health!" : $error; $error = ($ir['energy']<$energy) ? "You need to have at least 25% of your energy if you want to attack someone." : $error; $error = ($ir['jail'] > 0) ? "You can't attack someone if you are in jail." : $error; $error = ($ir['hospital'] > 0) ? "You can't attack someone if you are in the hospital." : $error; $error = ($_GET['ID'] == "") ? "You didn't choose someone to attack." : $error; $error = ($_GET['ID'] == $ir['userid']) ? "You can't attack yourself." : $error; if($ir['equip_armor'] > 0) { $yourarmorstuff = $db->query("SELECT * FROM `items` WHERE (`itmid`=".$ir['equip_armor'].")"); $dat = $db->fetch_row($yourarmorstuff); $defense = $dat['armor']; } else { $defense = 0; } $attacking_person = mysql_query("SELECT `u`.`userid`,`u`.`username`,`u`.`hp`,`u`.`maxhp`,`u`.`level`, " . "`u`.`money`,`u`.`location`,`u`.`hospital`,`u`.`jail`,`u`.`fedjail`,`u`.`gang`,`u`.`user_level`, " . "`u`.`equip_primary`,`u`.`equip_secondary`,`u`.`equip_armor`,`u`.`exp`,`us`.`strength`,`us`.`agility`, " . "`us`.`guard` " . "FROM `users` `u` " . "LEFT JOIN `userstats` `us` " . "ON `u`.`userid`=`us`.`userid` " . "WHERE (`u`.`userid`=".$_GET['ID'].")", $c) OR die(mysql_error()); $attack_person = mysql_fetch_array($attacking_person); $primarydamage = $db->query("SELECT * FROM `items` WHERE `itmid`=".$attack_person['equip_primary'].""); $ouch = $db->fetch_row($primarydamage); $prim = ($attack_person['strength']+$ouch['weapon'])-($ir['guard']+$defense); // PRIMARY "weapon" Damage. $secondarydamage = $db->query("SELECT * FROM `items` WHERE `itmid`=".$attack_person['equip_secondary'].""); $ouchy = $db->fetch_row($secondarydamage); $second = ($attack_person['strength']+$ouchy['weapon'])-($ir['guard']+$defense); // Secondary "weapon" Damage. if($attack_person['equip_primary'] > 0) { $killer = $prim; } elseif($attack_person['equip_primary'] = 0 && $attack_person['equip_secondary'] > 0) { $killer = $second; } else { $killer = $attack_person['strength'] - $ir['guard']; } if($attack_person['equip_armor'] > 0) { $ayourarmorstuff = $db->query("SELECT * FROM `items` WHERE (`itmid`=".$attack_person['equip_armor'].")"); $adat = $db->fetch_row($ayourarmorstuff); $adefense = $dat['armor']; } else { $defense = 0; } $aprimarydamage = $db->query("SELECT * FROM `items` WHERE `itmid`=".$ir['equip_primary'].""); $winn = $db->fetch_row($aprimarydamage); $aprim = ($ir['strength']+$winn['weapon'])-($attack_person['guard']+$defense); // PRIMARY "weapon" Damage. $asecondarydamage = $db->query("SELECT * FROM `items` WHERE `itmid`=".$ir['equip_secondary'].""); $win = $db->fetch_row($asecondary); $secondd = ($ir['strength']+$win['weapon'])-($attack_person['guard']+$defense); // Secondary "weapon" Damage. if($ir['equip_primary'] > 0) { $killers = $aprim; } elseif($ir['equip_primary'] = 0 && $ir['equip_secondary'] > 0) { $killers = $secondd; } else { $killers = $ir['strength'] - $ir['guard']; } if(!mysql_num_rows($attacking_person)) { echo "Invalid User Selected to attack."; $h->endpage(); exit; } $error = ($attack_person['location'] != $ir['location']) ? "You must be in the same city as the person you are attacking. Duh." : $error; $error = ($attack_person['username'] == "") ? "That person doesn't exist." : $error; $error = ($attack_person['hospital'] > 0) ? "You can't attack someone that is in the hospital." : $error; $error = ($attack_person['jail'] > 0) ? "You can't attack someone that is in jail." : $error; //$error = ($ir['level'] > 5 && $attack_person['level'] < 6) ? "You can't attack someone that is level 5 or below because you are higher than level 5." : $error; $error = ($ir['gang'] == $attack_person['gang'] AND $ir['gang'] != 0) ? "You cant attack someone in the same clan as yourself!" : $error; $error = ($attack_person['hp'] <= 0) ? "This person has no health at the moment." : $error; $error = ($attack_person['fedjail'] > 1) ? "This person is in fed and cannot be attacked." : $error; //$error = ($attack_person['user_level'] == 2) ? "Admins Cannot be attacked." : $error; if (isset($error)){ echo "".htmlentities(stripslashes($error)).""; $h->endpage(); exit; } $yourhp = $ir['hp']; $theirhp = $attack_person['hp']; echo "<center>Fight House</center> <center><font color=white>You are in a fight with ".$attack_person['username'].".</center> "; $wait = ($ir['agility'] > $attack_person['agility']) ? 1 : 0; while($yourhp > 0 && $theirhp > 0) { $damage = $killer; $damage = ($damage < 1) ? 1 : $damage; if($wait == 0) { $yourhp = $yourhp - $damage; echo "<font color=white><center> " . $attack_person['username'] . " hit you for " . $damage . " damage using their Fists. </center>"; // WEAPON STUFF HERE LATER. } else { $wait = 0; } if($yourhp > 0) { $damage = $killers; $damage = ($damage < 1) ? 1 : $damage; $theirhp = $theirhp - $damage; echo "<font color=white><center> You hit " . $attack_person['username'] . " for " . $damage . " damage using your Fists. </center> "; } if($theirhp <= 0){ // ATTACKER WINS AND UPDATES $winner = $ir['userid']; $theirhp = 0; $moneywon = floor($attack_person['money'] /10); $expwon = 150 - (25 * ($ir['level'] - $attack_person['level'])); $expwon = ($expwon < 0) ? 0 : $expwon; $newexp = $expwon + $ir['exp']; $newmoney = $ir['money'] + $moneywon; $result = mysql_query("UPDATE `users` SET `exp` = ".$newexp.", money = ".$newmoney." WHERE (`userid`=".$ir['userid'].")", $c) or die(mysql_error()); $db->query("UPDATE users SET awon=awon+1 WHERE userid=$userid",$c); $newmoney = $attack_person['money'] - $moneywon; $result = mysql_query("UPDATE `users` SET `money` = ".$newmoney.", `hospital` = 30 WHERE (`userid`=".$attack_person['userid'].")", $c) or die(mysql_error()); event_add($attack_person['userid'], "You were hospitalized by ".$ir['username']." for 20 minutes."); echo "<font color=white><center>You hospitalized " . $attack_person['username'] . ". You gain $expwon exp and stole $".$moneywon." from " . $attack_person['username'] . ".</center>"; } if($yourhp <= 0){ // DEFENDER WINS AND UPDATES $winner = $attack_person['userid']; $yourhp = 0; $moneywon = floor($ir['money'] /10); $expwon = 75 - (25 * ($attack_person['level'] - $ir['level'])); $expwon = ($expwon < 0) ? 0 : $expwon; $newexp = $expwon + $attack_person['exp']; $newmoney = $attack_person['money'] + $moneywon; $result = mysql_query("UPDATE `users` SET `exp` = ".$newexp.", `money` = ".$newmoney." WHERE (`userid`=".$attack_person['userid'].")", $c) or die(mysql_error()); $newmoney = $ir['money'] - $moneywon; $result = mysql_query("UPDATE `users` SET `money` = '".$newmoney."',`hospital` = '20' WHERE (`userid`=".$ir['userid'].")", $c) or die(mysql_error()); event_add($ir['userid'], "You were hospitalized by ".$attack_person['username']." for 20 minutes."); echo "<center><font color=white>".$attack_person['username']." Hospitalized you and stole $".$moneywon." from you.</center>"; } } //UPDATE USERS $newenergy = $ir['energy'] - floor($ir['energy'] * .10); $db->query("UPDATE `users` SET `hp` = ".$theirhp." WHERE (`userid`=".$attack_person['userid'].")", $c) or die(mysql_error()); $db->query("UPDATE `users` SET `hp` = ".$yourhp.", `energy` = '".$newenergy."' WHERE (`userid`=".$ir['userid'].")", $c) or die(mysql_error()); echo "</td></tr>"; ?>
-
sorry to ask this but im very new to this n learning somewhat but what would u run for a query/queries ? Thank you