Jump to content
MakeWebGames

Joshua

Members
  • Posts

    1,271
  • Joined

  • Last visited

Everything posted by Joshua

  1. Yes, I realize this is about as easy as converting mods from Vers 1 to Vers 2. But to me it's the small things :P All this does is check to see if the person being attacked is in the same clan or not. If they are you can't attack them.   In attack.php Find   else if ($myattack['location'] != $oppattack['location']){ print "You can only attack someone in the same location! [url='index.php']Back[/url]"; $h->endpage(); exit; }   After Add   else if ($myattack['gang'] == $oppattack['gang']){ print "You cannot and should not attack a clan member! [url='index.php']Back[/url]"; $h->endpage(); exit; }   And yipee, you're done. Again, I know it's simple but blah :P +1 if you needed it like me ^_- Also, if anyone would be so kind as to tell me what I could add to this $stole=round($r['money']/(rand(200,5000)/10)); To make it where if the user doesnt have much cash I dont rob them for Negative Cash :P I'd be much obliged.
  2. Re: Help fixing a small bug nm i corrected, simple as extending the "race" to "race==1"
  3. Apparently my eyes are deceiving me. I'm having problems getting this to work properly. If i go to the Original Code from McCodes it works fine. However I'm trying to add some else/if statements so differant races start off with differant stats. For w/e reason when I add these codes in it's not inserting a User ID or anything into userstats...can't for the life of me figure out why   $db->query("INSERT INTO users (username, login_name, userpass, level, money, crystals, donatordays, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, bankmoney, lastip, lastip_signup, race) VALUES( '{$username}', '{$username}', md5('{$_POST['password']}'), 1, $sm, 0, 0, 1, 12, 12, 100, 100, 5, 5, 100, 100, 1, '{$_POST['gender']}', unix_timestamp(), '{$_POST['email']}', -1, '$IP', '$IP', '{$_POST['race']}')"); $i=$db->insert_id(); if ("race"==1) { $db->query("INSERT INTO userstats VALUES($i, 10, 10, 50, 10, 10)"); $db->query("UPDATE users SET location=1"); } elseif ("race"=2) { $db->query("INSERT INTO userstats VALUES($i, 10, 50, 10, 10, 10)"); $db->query("UPDATE users SET location=2"); } elseif ("race"==3) { $db->query("INSERT INTO userstats VALUES($i, 50, 10, 10, 10, 10)"); $db->query("UPDATE users SET location=3"); }
  4. Re: +1 for helping me get this Cron_5 Min to work I'm not even 100% sure, I may have added a script a long while back and those worked off that then removed script and not removed those...but again, they were just sitting there doing nothing....The only reason i hadnt removed them recently as I wasnt sure if they had something to do with a Call to the Stats update...but looking at it, you're probably right. Also after going over my crons, ALL my other crons are just plain codes w/o the use of ' I'm wondering if I go through and remove all the ' in the crons if it will work....hrm.
  5. Re: +1 for helping me get this Cron_5 Min to work The problem was everything was working fine until I added the if race part. There were a few instances in the script written for me I had major errors where the fix was just changing " to ' The Query is exactly like the one I had that was working except it's for individual races now..that's why I'm having problems fixing it...nothing really has changed but the if statement :\
  6. Recently purchased a new Log-In script and am having problems updating the Cron. The creator has helped me a lot with the script but atm I'm on and he won't be for quite a bit...SO help me :-) por favor..i've fixed a few errors and he's helped me fix some others. The ERROR is it stopped Updating my Users Will/Brave etc. I thought it was because My users weren't Defined, but after I defined their race i'm still not updating.   $db->query("UPDATE users SET exp=exp+$qe WHERE userid={$p['userid']}"); $db->query("UPDATE users SET exp=0 WHERE exp < 0"); eve_add($p['userid'],"[url='viewuser.php?u={$r[']{$r['username']}[/url] attacked you and lost. You gained $qe",$c); } } } if ($ir['race']==1) { $db->query("UPDATE `users` SET `brave`=LEAST(`brave`+((`maxbrave`/'5')+'0.5'), `maxbrave`), `hp`=LEAST(`hp`+(`maxhp`/'3'), `maxhp`), `will`=LEAST((`will`+'20'), `maxwill`), `energy`=IF(`donatordays`<>'0', LEAST(`energy`+(`maxenergy`/'6'), `maxenergy`), LEAST(`energy`+(`maxenergy`/'12.5'), `maxenergy`))"); } elseif ($ir['race']==2) { $db->query("UPDATE `users` SET `brave`=LEAST(`brave`+((`maxbrave`/'10')+'0.5'), `maxbrave`), `hp`=LEAST(`hp`+(`maxhp`/'3'), `maxhp`), `will`=LEAST((`will`+'20'), `maxwill`), `energy`=IF(`donatordays`<>'0', LEAST(`energy`+(`maxenergy`/'3'), `maxenergy`), LEAST(`energy`+(`maxenergy`/'6.25'), `maxenergy`))"); } elseif ($ir['race']==3) { $db->query("UPDATE `users` SET `brave`=LEAST(`brave`+((`maxbrave`/'10')+'0.5'), `maxbrave`), `hp`=LEAST(`hp`+(`maxhp`/'1.5'), `maxhp`), `will`=LEAST((`will`+'10'), `maxwill`), `energy`=IF(`donatordays`<>'0', LEAST(`energy`+(`maxenergy`/'3'), `maxenergy`), LEAST(`energy`+(`maxenergy`/'6.25'), `maxenergy`))"); } $db->query($query); $db->query($query5); $db->query($query2); $db->query($query3); $db->query($query4); if($set['validate_period'] == 5 && $set['validate_on']) { $db->query("UPDATE users SET verified=0"); } if($set['validate_period'] == 15 && $set['validate_on'] && in_array(date('i'),array("00", "15", "30", "45"))) { $db->query("UPDATE users SET verified=0"); } $stocks = mysql_query("SELECT stockID FROM `stock_stocks`"); while($soc = mysql_fetch_assoc($stocks)) { $rand = mt_rand(1,2); if($rand == 2) { $mr = mt_rand(10,250); mysql_query("UPDATE `stock_stocks` SET `stockUD` = 2, `stockCHANGE` = ".$mr.", `stockNPRICE` = (`stockNPRICE` - ".$mr.") WHERE `stockID` = ".$soc['stockID']); } else { $mr = mt_rand(10,250); mysql_query("UPDATE `stock_stocks` SET `stockUD` = 1, `stockCHANGE` = ".$mr.", `stockNPRICE` = (`stockNPRICE` + ".$mr.") WHERE `stockID` = ".$soc['stockID']); } } include_once('global_func.php'); $sel = mysql_query("SELECT stockID,stockNAME FROM `stock_stocks` WHERE `stockNPRICE` < 0"); while($soc = mysql_fetch_assoc($sel)) { if(mysql_num_rows(mysql_query("SELECT holdingID FROM `stock_holdings` WHERE `holdingSTOCK` = ".$soc['stockID']))) { $user = mysql_query("SELECT holdingUSER FROM `stock_holdings` WHERE `holdingSTOCK` = ".$soc['stockID']); $user = mysql_fetch_assoc($user); event_add($user['holdingUSER'], 'Stock '.$soc['stockNAME'].' crashed, you lost all your shares.'); } mysql_query("DELETE FROM `stock_holdings` WHERE `holdingSTOCK` = ".$soc['stockID']); mysql_query("UPDATE `stock_stocks` SET `stockUD` = 1,`stockCHANGE` = 0,`stockNPRICE` = `stockOPRICE` WHERE `stockID` = ".$soc['stockID']); } ?>
  7. Ok so I've posted one or two mods i am in need of elsewhere, and one has already been done for me. I'm going to write out what I desire in a few said mods that I need for my game. The mods must include everything I request in the following descriptions. Once the mod is complete, I will transfer payment via my CC or Paypal(either way) and you in turn will transfer the completed mod. Bare in mind I have installed several apts and modified a few to fit my game, However, I expect some support for bugs and the like once I purchase the mod. IF it's required. If you feel you can design one of these mods, Simply PM me with which mod and How much you will charge me to do so. do not Pm me asking me how much I will pay as that's not the way to Barter :) Now w/o further Adue. Top Notch Referral/Donator Mod. This mod will need the following. 1. Referral Page where users can See who they have referred and whether they were approved or Denied as referrals. 2. An admin option where I can Approve/Deny referrals. 3. 10% of any donated money from referrals is credited to the referer. 4. 2% of any donated money of referrals of referrals is credited to the referer. 5. An option for Donated money Credit to Be used in stores at 100% value, or a check mailed (after 100.00 is stored) for 85% to a location they desire. At the current time that is all I have on my mind, if you know anything else that would go good with this mod, feel free to discuss with me. Crack the Vault Mod This mod will be.... 1. There will be 3 Vaults. 1 Vault will be free to use (10 attempts per day) You will have to guess a random 4 digit combination. The Winner receives the prize in the vault. I would like the vault prize to go up after so many users attempt to hack the Vault safe code. After a lot of users attempt and no success, I'd like ONE digit of the combination to be revealed. I'd like there to be on that same page, a List of all the codes the user has tried perhaps with a filter from 1-99, 100-1000,1000-3000 etc. A list of the Previous winners would also be nice to have. The Other 2 vaults will be the same, with the exception the 2nd vault will cost a bit of cash to try. Larger prize options 3rd Vault will cost A lot of cash and a very large prize option. IF it's do-able I'd like a randomizer thrown in the 3rd Vault that auto puts someone in Jail for failing. something like .1% If you think you can do this..let me know.   Court and Probation Mod. 1. Users are put on Trial for certain misdeeds in game. Be it spamming, cussing, any ToS violation basically, AND some of the Higher up crimes, and a few other random things in my game. I will have certain users assigned as Judges and Jury Duty will be randomly sent to active users. Once the case has been issued the Offender will have 5 days to write up their case and a Prosecutor will have 5 days to write up their case. The two cases will be mailed to the members of the Jury who will then have an option to find Innocent or Guilty. IF Guilty, they May select from a few options of Jail/FedJail/Probation/Time Served. Majority Vote from the Jury will be the deciding Factor unless a judge feels it's unfair. On Viewusers a list of users Crimes and Judgements I'm thinking about how to Implement the use of Lawyers but atm I'm at a loss, it may just be user oriented and people offering fee's to write up defense cases ingame. "shrugz" Perhaps have some type of "criminal history computer" In my Explore mode where users can view crimes committed and actions taken. judges who precided etc. Again, if you feel up to the task, Pm me, again, dont ask me what I'll pay as that's not how it works ;-) These are just 3 large Ideas I have mods that I will have done one way or another, it's all just who I can get to do them :) Sorry it was long winded, just tired of posting little by little :)
  8. Re: Cash for a few Custom Mods. Headed out the door to work, We'll talk when I get home Karlos
  9. Re: Cash for a few Custom Mods. Just accepted your add. Another mod I'm looking for is a special Donator/Referral Mod with a few techs that I havent seen here as of yet.
  10. Ok, so I had someone that was going to do these for me but they are going out of town for close to a month. I'm currently talking to one other person about setting something up with them to do these. I've got about 40-50 ideas for awesome un-done mods. A few of these I need so I can finish up my game, the Rest will just be done overtime for cash. I will not be able to pay until Monday so there is time for w/e wishes to do this as I still need to pay Illegal for the custom Layout he's done "thanks again" First Script-- Log-In (custom) I know there is one posted by Sniko' already on the boards, but I'd like mine to be a bit more advanced and or course..original :) I will have 3 differant Charachter classes to choose from. Each Charachter class will receive a better percentage work-out in differant areas. Ie. One class will gain more strength per work-out, one will gain more guard..etc. Each Charachter class will have a certain stat "health/energy/will/etc." Go up slightly faster than the others. Each charachter class will have a differant Starting home city/country. In the future Id like set weapons for each characther class. I.E One class could not buy a weapon I made for another class. I'm sure that'd be a bit tougher so it's not necessary as of yet. ------ 2nd Script Pm me as it's a fairly original idea and I dont want someone else making it and everyone having it >< I've seen it one other place and mine will be a bit more in depth. ------ 3rd Script- I'd like an Original Court Mod "not the V1/V2 McCodes mod "i have that and it's not what I am after" I'd like when someone breaks rules in my game or fail certain crimes/assasinations,they are sent to court and a trial is held. Users are Judges, and Other users will be served "jury duty". Maybe even have lawyers as well. but that's not needed really. The facts will be stated and the Jury of 12 will decide on Punishment. Fed Jail, Normal Jail, length of Jail time, Probation ( another mod I'd like added to this one) IF you feel you are up to the challenge, shoot me a pm or add my hotmail [email protected] and we can talk. Again, these are just a few that I'd like and I try not to post to many as these are my original ideas that I don't want everyone and their grandmothers using. IF I could code myself, I'd do them, but I'm an amateur at best =) Thanks for the read if nothing else.
  11. Re: Illegalife and his GFX I had requested Red/Black or Blue/Black/White etc. So that was more my call. It's an Underworld/Twilight/Blade theme, 2 of the 3 are red based. I may change a few colors here/there to blue and maybe throw in a few more graphics, I just wanted the Custom Set-up :)
  12. Re: [Class - Spydre452] Update I'm currently having one Designed You will have to choose a certain Race Upon log-in. Each race will start off with differant stats Each race will gain more xp in differant stats .ie. one will get more workout per strength, one per guard, etc. Each race will have their own set of jobs/crimes Each race will have one of their stats go up slightly faster than the rest. Like one race hp will go up, one awake, one energy etc. And also thinking about special scripts for each race, just not sure what I'd like
  13. Re: [Class - Spydre452] Update Make sure to post the codes in ORDER or you may have problems
  14. Re: Idea for a paid mod...will pay. Helpful information if I was a bit knowledgable in mysql and had a bit more knowledge in PHP :P I'd like to get really advanced for my game, but I'm having to take it one step at a time. Also, I'm not using the Original Gym.php, Register.php, or Crimes.php. All free mods that I've found, some altered some not. So i'd have to send a copy of the ones I'm currently using. I may even look to have some custom ones designed for just my game as I'm not exactly going to the whole "mafia" genre anywho. Only good thing is I've got hosting hook-up so I can take my time on the game to get it 100% before i actually release it to the public. If anyone can get around to doing this, Let me know what it's going to cost. I've got a few other ideas I would like to implement soon and eventually I'm going to pay someone to 99% secure it as there is no 100% ^_-
  15. Re: Help Please, Day cron and Captcha Beleive I fixed the error in my cron as it appears to be working now.
  16. I'm looking for a rather advanced mod. Willing to pay for it.   Upon user registration the person is asked to choose ther Sex, and Race The sex could remain irrelevant The Race decides on which stats start off higher. I.E if you were a Wolf you'd have higher strength, Vampire higher speed, human higher IQ etc etc.   I'd also like to integrate differant races gain more XP for certain work-outs. So if you were a wolf perhaps your strength trains more than your defense and vice versa for the other races. Could even throw in Health or Energy or even Money goes up a bit faster depending on which Race you selected upon Registration   IS this do-able and how much would it cost :) Let me know asap. Thanks, Josh.
  17. So after testing my game out I'm noticing that the charachters Ages, the Mystery box and a few other things aren't updating like they should...Anyone see an error here?   <?php include "config.php"; global $_CONFIG; if($_GET['code'] != $_CONFIG['code']) { die(""); } define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; $db->query("UPDATE fedjail set fed_days=fed_days-1"); $q=$db->query("SELECT * FROM fedjail WHERE fed_days=0"); $ids=array(); while($r=$db->fetch_row($q)) { $ids[]=$r['fed_userid']; } if(count($ids) > 0) { $db->query("UPDATE users SET fedjail=0 WHERE userid IN(".implode(",", $ids).")"); } $db->query("UPDATE users SET userCONTRACT = userCONTRACT - 1 WHERE userCONTRACT > 0"); $db->query("UPDATE users SET userBANKAMMT = userBANKAMMT + (userBANKAMMT/100*5.5) WHERE userBANKAMMT > 0 AND investlevel = 1"); $db->query("UPDATE users SET userBANKAMMT = userBANKAMMT + (userBANKAMMT/100*3.0) WHERE userBANKAMMT > 0 AND investlevel = 0"); $db->query("UPDATE users SET userBANKAMMT = userBANKAMMT + (userBANKAMMT/100*7.2) WHERE userBANKAMMT > 0 AND investlevel = 2"); $db->query("UPDATE users SET userDAYS = userDAYS - 1 WHERE userDAYS != 0"); $db->query("UPDATE users SET happiness=happiness-1 WHERE married != 0"); $db->query("DELETE FROM fedjail WHERE fed_days=0"); $db->query("UPDATE users SET daysingang=daysingang+1 WHERE gang > 0"); $db->query("UPDATE users SET daysold=daysold+1, boxes_opened = 0"); $db->query("UPDATE users SET mailban=mailban-1 WHERE mailban > 0"); $db->query("UPDATE users SET donatordays=donatordays-1 WHERE donatordays > 0"); $db->query("UPDATE users SET bankmoney=bankmoney+(bankmoney/50) where bankmoney>0"); $db->query("UPDATE users SET bankmoney=bankmoney+(bankmoney/50) where bankmoney>0 and donatordays>0"); $db->query("UPDATE users SET cybermoney=cybermoney+(cybermoney/100*7) where cybermoney>0"); $db->query("TRUNCATE TABLE votes;"); $houses = mysql_query(sprintf("SELECT * FROM `owned_houses` LEFT JOIN `users` ON (`userid` = `uhouseTenant`) WHERE `uhouseTenant` > '0'")); while ($r = mysql_fetch_array($houses)) { mysql_query("UPDATE `owned_houses` SET `uhouseRTime` = `uhouseRTime` - '1' WHERE `uhouseRTime` > '0'"); mysql_query(sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = '%u'", $r['uhouseRent'], $r['uhouseTenant'])); mysql_query(sprintf("UPDATE `users` SET `money` = `money` + '%d' WHERE `userid` = '%u'", $r['uhouseRent'], $r['uhouseOwner'])); mysql_query("UPDATE `owned_houses` SET `uhouseTenant` = '0' WHERE `uhouseRTime` <= '0'"); } ?>   Then to top it off, in my error log, i'm getting this for my Captcha PHP Fatal error: Call to undefined function imagecreatetruecolor() in /home/thug/public_html/captcha_verify.php on line 26   <?php function parse_bgcolor() { if(strlen($_GET['bgcolor']) == 6) { $p1=$_GET['bgcolor'][0].$_GET['bgcolor'][1]; $p2=$_GET['bgcolor'][2].$_GET['bgcolor'][3]; $p3=$_GET['bgcolor'][4].$_GET['bgcolor'][5]; } else { $p1=$_GET['bgcolor'][0].$_GET['bgcolor'][0]; $p2=$_GET['bgcolor'][1].$_GET['bgcolor'][1]; } return array(hexdec($p1),hexdec($p2),hexdec($p3)); } session_start(); $bgcolor=($_GET['bgcolor']) ? parse_bgcolor() : array(255,255,255); $text=array(255-$bgcolor[0],255-$bgcolor[1],255-$bgcolor[2]); $distort=rand(80,120)/100; $distort2=rand(80,120)/100; $f_x=round(75*$distort); $f_y=round(25*$distort); $s_x=round(175*$distort2); $s_y=round(70*$distort2); $first=imagecreatetruecolor($f_x, $f_y); $second=imagecreatetruecolor($s_x, $s_y); $white=imagecolorallocate($first, $bgcolor[0], $bgcolor[1], $bgcolor[2]); $black=imagecolorallocate($first, 0, 0, 0); $red=imagecolorallocate($first, 255, 0, 0); $green=imagecolorallocate($first, 0, 128, 0); $blue=imagecolorallocate($first, 0, 0, 255); imagefill($first, 0, 0, $white); $color[0]=$red; $color[1]=$green; $color[2]=$blue; for($i=0; $i<=2; $i++) { $points = array( 0 => array(10, $f_x - 10), 1 => array(5, $f_y - 5), 2 => array(10, $f_x - 10), 3 => array(5, $f_y - 5), 4 => array(10, $f_x - 10), 5 => array(5, $f_y - 5), 6 => array(10, $f_x - 10), 7 => array(5, $f_y - 5), 8 => array(10, $f_x - 10), 9 => array(5, $f_y - 5), ); imagefilledpolygon($first, $points, 5, $red); } imagestring($first, 4, rand(0, $f_x/3), rand(0,$f_y/2.5), $_SESSION['captcha'], $black); imagecopyresized($second, $first, 0, 0, 0, 0, $s_x, $s_y, $f_x, $f_y); imagedestroy($first); $red=imagecolorallocate($second, 255, 0, 0); $green=imagecolorallocate($second, 0, 128, 0); $blue=imagecolorallocate($second, 0, 0, 255); $RandomPixels=ceil($s_x*$s_y/100); for($i=0;$i<$RandomPixels;$i++) { $locx=rand(0,$s_x-1); $locy=rand(0,$s_y-1); imagesetpixel($second, $locx, $locy, $red); } for($i=0;$i<$RandomPixels;$i++) { $locx=rand(0,$s_x-1); $locy=rand(0,$s_y-1); imagesetpixel($second, $locx, $locy, $green); } for($i=0;$i<$RandomPixels;$i++) { $locx=rand(0,$s_x-1); $locy=rand(0,$s_y-1); imagesetpixel($second, $locx, $locy, $blue); } $randcolor=imagecolorallocate($second, rand(100,255), rand(100,255), rand(100,255)); for($i=0; $i<5; $i++) { imageline($second, rand(0, $s_x), rand(0, $s_y), rand(0, $s_x), rand(0, $s_y), $randcolor); $randcolor=imagecolorallocate($second, rand(100,255), rand(100,255), rand(100,255)); } @header("Content-Type: image/png"); $finished=imagerotate($second, rand(0,15)-7.5, $bgcolor[2]*65536+$bgcolor[1]*256+$bgcolor[0]); imagedestroy($second); imagepng($finished); imagedestroy($finished); ?>   There should be no reason this isn't working..i just get a Red X when i turn my cap on :\ Any help for +5?
  18. Re: [mccode v2] Humans vs. Zombies EVENT mod [done, v1.0]   <<<<<< mysql_query("UPDATE users SET hp=0 WHERE userid={$_GET['ID']}",$c); print " Your opponent is immobilized. [b]What do you want to do with {$oppattack['username']} now?[/b] <form action='attackwon.php?ID={$_GET['ID']}' method='post'><input type='submit' value='Mug Them' /></form> <form action='attackbeat.php?ID={$_GET['ID']}' method='post'><input type='submit' value='Hospitalize Them' /></form> <form action='attacktake.php?ID={$_GET['ID']}' method='post'><input type='submit' value='Leave Them' /></form>"; if (($ir['humanorzombie'] == 1 && $odata['level']) >= ($ir['level'] && $odata['humanorzombie']==0)) { echo '<form action="attackbite.php?ID='.$_GET['ID'].'" method="post"><input type="submit" value="Bite Them" /></form>'; }   Can't seem to get the attackbite to show up either, added the extra () to no avail. Logged in one of the Zombie charachters and attacked someone. After no attack link i manually added attackbite.php?Code in the url and it worked fine. I'm a coding newby so any help would be muchos appreciated =p
  19. Re: a couple of mods So just adding these simple codes to Crons will make your NPC's go on the offensive? And what if you have several NPC's. Will they all attack or just one? "confused"
  20. Re: Captcha Problem Did that as well, Checked Both Macro files and the Verify Captcha file, as WELL as re-uploaded from the original that I purchased a few weeks back.
  21. Re: Captcha Problem I def have GD as it says I do in my perl installed modules
  22. Ok, So i'm just learning PHP/MYSQL soon going to delve into C++ as well just because I want to learn it. I've always wanted to design my own game but the going is obviously slow. I've got a buddy that has about 7 differant servers all linked up in various diff states. He's given me as much space and options I could possibly need as well as a support staff for problems I encounter. Unlimited Sub-Domains/MySQL domains, Emails etc. Fantastico Delux access with the premium access and a whole bunch more. Best of all he's giving this all to me for free until I decide I dont need it anymore. He's even offered that if I can get a game up generating a lot of users he'll give me my own designated server which at the time i really don't need. What I have runs just fine for now.   My problem is, I'm using McCodes V2 with a lot of time invested to fix this that or the other. As well as adding script after script. I'm not great, heck I'm not good, maybe ..MAYBE an amateur at best. I'm looking for one or two coders who want to help design this game. All profits can be set up to be split right down the middle or in three or w/e. I've got a fairly good consumer base knowledge and I know what people like when they play these games. I myself have been an avid gamer for over 20 years and you can't help but learn a little bit :) So, to finale this, If you're interested in possibly creating a heck of a game and generating income, without paying monthly fee's. Hit me up. In the next month or so I will be putting money into this game out of my own pocket but I want to make sure i'm not just throwing it away. Thanks, let me know :)
  23. Re: Captcha Problem I'm currently on a buddies server that is large and vast. I've got unlimited SQL domains, Emails, etc.. all the space I can use as well as every script from Fantastico Delux that anyone could ever need.   I haven't seen anything about GD tho :\
  24. Using McCodesV2 when I turn Captcha on, It simply displays a small red X instead of the image. I have even tried a few free captcha mods i've found on the site and I always get this same error. I know i'm missing something, but I for the life of me don't know what. Any help?
  25. Re: Looking for a few paid mods I've got one vaguely similar to this one but all the charachters are ran through the SQL I'm more looking for a template to when someone logs on they are asked to choose a charachter/race. Going for a twilight/underworld mix game with a bit of blade thrown in. Be nice to have 3 diff races. Would make my clan wars rocket :)   As for the bots, I seen someone do this on another game and the game itself was pretty simple. So i know the coding isn't "to" hard. I'm just not sure how =p Be fun to have some NPC vampires or wolves that would do random attacks
×
×
  • Create New...