Uridium Posted October 22, 2008 Author Posted October 22, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS You would have to put a query in to reset the NPCs health so lets say you have even 5 people online and they all start vsing the NPC at the same time? I think there would be some problems there? To regards your Query this is simply an aaition to the attacktake.php Where the time is HOSP is situated just overwrite that line with ths one. You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. The bots Energy so be reset once beaten ready for the next opponent... Regards AVGUSTE's comment the sql are as follows You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. Would be your SQL ALSO You dont have to stop at just having one search page you can make as many pages as you wanted.. All you would need to EDIT from now on would be the streets.php and leave the attack2.php and attack3.php as they are Just add a command line at head of each page to only allow certain levelled player to view that Area.. Quote
Uridium Posted October 22, 2008 Author Posted October 22, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS I wasnt happy with the orginal layout when you had to fight an NPC the page stayed as it stayed static which meant the USER could just carry on clicking on the map. However i have found a cure and the page will open to the attack3.php without the aid of a link It has been tested and works fine im also trying to make it so NPCS are random and not ones that you have had to Add to the script yourself. However this is taking some time. I will post the coding which will only effect the streets.php and none of the others... Quote
Uridium Posted October 22, 2008 Author Posted October 22, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS UPDATE on the streets.php Overwrite Chance 2 with this one You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. When you Find an NPC in the Game the page will Change to the Attack3.php page so theres no more need for people to avoid the Challenges. Also Added Bots are chosen at Random Quote
StormRoBoT Posted October 23, 2008 Posted October 23, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS Thanks for this cool mod, its really good and nice.. :) Quote
owetis Posted November 2, 2008 Posted November 2, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS :-D Thank you this is a very nice mod, and falls into my theme. Quote
Uridium Posted November 2, 2008 Author Posted November 2, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS :-D Thank you this is a very nice mod, and falls into my theme. Just to let you know i tried to reg on your game but was unable to due to a missing table Unknown column 'diamonds' in 'field list' might be worth commenting out the diamonds part if they are not available Quote
Guest Sniko` Posted November 6, 2008 Posted November 6, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. Will Fix It If you've Coded The Rest Right --------------------------------------------------- OR --------------------------------------------------- Maybe you changed crystals to diamonds in register so it doesnt recognize the field name becauase it doesnt exist Quote
Karlos Posted November 7, 2008 Posted November 7, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS i would use this personally. You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. Quote
Uridium Posted November 7, 2008 Author Posted November 7, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS Can i just add for others so not to add any confusion The mention above of diamonds is not part of the streets script.. Was just trying to help someone out :) Cheeeeeeers All Quote
Karlos Posted November 7, 2008 Posted November 7, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS i would use this personally. You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. gah accendentitly put a "l" in it so heres the correct one. You're unable to view this code. Viewing code within this forum requires registration, you can register here for free. Quote
HITMAN 17 Posted November 25, 2008 Posted November 25, 2008 Re: [mccode v2] streets.php includes image + ability to fight NPCS look on my game www.thedestroyers.co.cc/streets.php my image dosent show why dosnt it show Quote
Dazza Posted November 25, 2008 Posted November 25, 2008 Re: [mccode v2] streets.php includes image + ability to fight NPCS look on my game www.thedestroyers.co.cc/streets.php my image dosent show why dosnt it show I'm not signing up to check am afraid. I'd hazard a guess and say you have the wrong path or filename Quote
Uridium Posted November 26, 2008 Author Posted November 26, 2008 Re: [mccode v2] streets.php includes image + ability to fight NPCS look on my game www.thedestroyers.co.cc/streets.php my image dosent show why dosnt it show Sometimes the CSS on the header.php can cause images not to show up if your not seeing a RED X then its 100% an issue with your CSS try changing some colour backgrounds to a lighter colour. Quote
nedved Posted December 29, 2008 Posted December 29, 2008 Re: [mccode v2] streets.php includes image + ability to fight NPCS For some reason i dont fail the steps. When it says you got arrested i dont go to jail or hospital!? Quote
POG1 Posted December 29, 2008 Posted December 29, 2008 Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS This is a pretty cool script, I know illusions has spent a long time on it and it works very well! I posted a script like this a while ago... Quote
Uridium Posted December 30, 2008 Author Posted December 30, 2008 Re: [mccode v2] streets.php includes image + ability to fight NPCS For some reason i dont fail the steps. When it says you got arrested i dont go to jail or hospital!? in your streets.php find the lines for hospital and jail $db->query("UPDATE users SET hospital=0 WHERE userid=$userid",$c); and $db->query("UPDATE users SET jail=0 WHERE userid=$userid",$c); mine is set to 0 so i could test the script just change 0 to a time you want your members to be in hospital or jail Quote
Lithium Posted December 30, 2008 Posted December 30, 2008 Re: [mccode v2] streets.php includes image + ability to fight NPCS Going in the line of Luke's post to ease up the 200 row/column listing, there are quite a load of if's that could be taken out if($ir['money']> -1) { $chance = rand(1,16); } else if($ir['money'] > 999999) { $change = rand(1,17); // <- $change? or $chance? } this could be easyly changed to $chance = ($ir['money'] < '99999') ? rand(1,16) : rand(1,17); and then... if ($chance == 1) { $expcur=(($ir['exp']+$ir['exp_needed'])/100); $exp=(($expcur)*rand(1,5)); print"<center><font size=3><font color=red>You stop in the local gym and purchase some illegal steroids , you gain some exp! "; $db->query("UPDATE users SET exp=exp+$exp WHERE userid=$userid",$c); } this could be easyly changed to switch($chance) { case 1: //whatever code to satisfy $chance($result) break; .... } a closer look to the code shows that the mapped image... isn't doing anything there... or am i missing something? Quote
Melkrow Posted October 3, 2012 Posted October 3, 2012 bump in hopes that somebody will bring this mod to life in this decade :) Quote
sniko Posted October 3, 2012 Posted October 3, 2012 bump in hopes that somebody will bring this mod to life in this decade :) I think you've just put yourself forward for bumping it. Quote
Melkrow Posted October 4, 2012 Posted October 4, 2012 I think you've just put yourself forward for bumping it. I said this decade, not this century! Quote
AnonymousUser Posted October 4, 2012 Posted October 4, 2012 i was working on this but got buried with other projects :( Quote
rothchild731 Posted June 12, 2014 Posted June 12, 2014 Hey the images for this are gone, and I figured I would make my own but what format do I need on the height/width and the transparent one? Quote
Script47 Posted June 12, 2014 Posted June 12, 2014 Hey the images for this are gone, and I figured I would make my own but what format do I need on the height/width and the transparent one? Dude, this thread is quite old. Some of the people on the thread aren't even around. Best bet is to try and make it fit for you. Quote
rothchild731 Posted June 12, 2014 Posted June 12, 2014 Dude, this thread is quite old. Some of the people on the thread aren't even around. Best bet is to try and make it fit for you. Lol right on. Thanks man. I was just browsing around trying to see if there is any scripts I could use. I do animation and graphic designs and I am trying to learn how to incorporate that in with coding. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.