AbsentCrisis
Members-
Posts
154 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by AbsentCrisis
-
Buy Your Custom Header, Login or Register!!!
AbsentCrisis replied to ishmell's topic in Paid Modifications
Re: Buy Your Custom Header, Login or Register!!! I like it simple clean layout...but not one that seems to reflect a rpg site. -
Re: Military Nation Well technically they do have a life but a sad one...all the advice I can offer you is go through all the files and secure them.
-
Re: Military Nation Reigster is down ;)
-
Re: Military Nation I like the inside look simple but nice, although it could be improved majorly.
-
Re: Converting V1 to V2 This wont fully convert it...and theres topics made for this already.
-
Well I have made a mugging modification, which allows a user to mug someone without needing to attack them. This modification costs $5, as I do not want to over charge but yet again I do not want to distribute freely. This mod is secure to a high extent and functions exactly how it is supposed to. How to use: First you have to input the ID of the user you are trying to mug then you either succeed or fail. If you succeed you will gain X amount of crystals and money from the mugged user, you will also gain X amount Theft Points from the user which you can use in the theft point market to gain certain things. Also you will have information on your mugging successes and failures in your user profile page which others can see. Whereas if you fail you are sent to jail for X amount of time and the mug failures info in your user profile page will increase. Either way the user you attempt to mug will be alerted of you activities via an event and they can choose how to react towards you. Contact me on: [email protected] Thanks AbsentCrisis. (Also a special thanks to MTG for helping when I got stuck on this mod!)
-
Re: [mccode v2] Player Card ($8) There is a small problem if you look at this player ID the Name stretches out too far.. So if you could come to a fix for this would be good.
-
Re: CE Server Well it was only to show my concern not to complain...since everyone else thinks its working normal or better thants fine.
-
Re: CE Server Now it seems to be loading like usual again but it is still quite slow couldnt hurt to upgrade the server used.
-
Re: CE Server Cant say the same is happening down my end...but none the less it is still very slow and would greatly benefit from exta server's
-
Well I made this topic seeing as the past few days every page has been loading astronomically slow, which is very anoying for me and other users. Pages seem to be loading 4x slower than usual (which is already slow). Some questions I would like to ask is that, does CE have its own server if so how many..and would it be possible to expand on the number of server to increase page loading speeds. Anyone else who has any opinions on this please comment im sure we can get this problem fixed if we talk out. This topic was not made to moan/complain nor do I have a slow internet connection so that may tell you a few things.
-
[MCCODES v2] Job display in viewuser.php
AbsentCrisis replied to kaball's topic in General Discussion
Re: [MCCODES v2] Job display in viewuser.php But isnt using "$r" selecting all that from the global file if im not mistaken.. -
Re: [Guide]MC Economy Well it depends on how bad you let your economy suffer and for how long, reseting is never the best choice its the last choice. Im sure if the game was only running for a few months you coul easily fix with taxes and prices increases.
-
[MCCODES v2] Job display in viewuser.php
AbsentCrisis replied to kaball's topic in General Discussion
Re: [MCCODES v2] Job display in viewuser.php change this "Job: {$ir['jrNAME']} " to "Job: {$r['jrNAME']} " - I think this should fix, bare om mind never worked with mcc. -
Re: [MCCODES v2] Attack restriction <?php // for colors } else if(($ir['level'] - $odata['level']) >= 4) // should be a 4 because this would only let you attack 2 levels lower { print "User not attackable. [url='index.php']Back[/url]"; $h->endpage(); exit; [c
-
Re: [MCCODES v2] Attack restriction Oh thanks for clearing that out I dont use mccodes so wouldnt know have very little knowledge about the script and how it works.
-
Re: [Guide]MC Economy Gurpreet an idea for to help you would be to add high taxes on things since the money is available to users. Not much more you can do except for reset which wouldnt be wise.
-
Re: [Guide]MC Economy Really good info there on how to keep a game economy stable...even though I do not run a mcc game or any other game engine - I couldn't help but notice that 80%+ of game I see have unstable economies they earn thousands from crimes even millions and items are sold for a few thousand. At this case scenario you would end up in hyperinflation, and thus the end of the game.
-
Re: [MCCODES v2] Attack restriction I dont work with mccodes and I am not experienced in coding but here my shot at it, <?php // for color :P if ($ir['level'] - $r['level'] >= 4) { echo 'You may not attack this person becuase he/she is 3 levels lower than you!'; exit($h->endpage()); } What this should do is stop you attacking someone 3 levels below you, add this to attack.php along with the other if statments. Hope this helps you! [EDIT 17:04] Looks like litium beat me to it and is using abs nice 1.
-
Re: Something other than male/female? Couldnt you do something in a file mccodes uses on everypage load replacing the text "male" & "female" with your chosen options. str_replace or something not sure :S
-
Re: [v2] New Header Print screen or link menice...and what browser do you use? and wasnt this made by djkanna you just found the html + css of the template and gave to him.
-
Re: Request |Nuclear Mod| v2 I believe something like this should work for V2 untested or anything, also I havent worked with mcc. <?php include "globals.php"; if($ir['nbombs'] == 0 && $ir['userid'] != 1) { die("You have no Nuclear Bombs"); } if(isset($_GET['LaunchBomb'])) { print "You have launched the nuclear bomb. "; $q=$db->query("SELECT * FROM users WHERE user_level=1 ORDER BY userid ASC",$c); $moneytaken=0; $crystaltaken=0; $banktaken=0; while($r=$db->fetch_row($q)) { $bombrand=(int) rand(950,35000); if($_POST['id1']) { if($r['userid'] == $_POST['id1']) { $db->query("UPDATE `users` SET `hospital` = `hospital` + '{$bombrand}', `hospreason` = 'Target Bombed by <a href=\'$ir[userid]\'>$ir[username]</a> '",$c); } } if($_POST['id2']) { if($r['userid'] == $_POST['id2']) { $db->query("UPDATE `users` SET `hospital` = `hospital` + '{$bombrand}', `hospreason` = '2nd Target Bombed by <a href=\'viewuser.php?u=$ir[userid]\'>$ir[username]</a> '",$c); } } if($_POST['id3']) { if($r['userid'] == $_POST['id3']) { $db->query("UPDATE `users` SET `hospital` = `hospital` + '{$bombrand}', `hospreason` = '3rd Target Bombed by <a href=\'viewuser.php?u=$ir[userid]\'>$ir[username]</a> '",$c); } } if($_POST['id4']) { if($r['userid'] == $_POST['id4']) { $db->query("UPDATE `users` SET `hospital` = `hospital` + '{$bombrand}', `hospreason` = '4th Target Bombed by <a href=\'viewuser.php?u=$ir[userid]\'>$ir[username]</a> '",$c); } } if($_POST['id5']) { if($r['userid'] == $_POST['id5']) { $db->query("UPDATE `users` SET `hospital` = `hospital` + '{$bombrand}', `hospreason` = '5th Target Bombed by <a href=\'viewuser.php?u=$ir[userid]\'>$ir[username]</a> '",$c); } } event_add($r['userid'],"The city has been bombed by a unknown person!",$c); $rand=(rand(1,9)); $expa+=rand(1.00,3.00); $rad=(rand(10,1000)); $moneytake=rand($r['money']/50,$r['money']/10); $banktake=rand($r['bankmoney']/50,$r['bankmoney']/10); $crysttake=rand($r['crystals']/50,$r['crystals']/10); $moneytaken=$moneytaken+$moneytake; $crystaltaken=$crystaltaken+$crysttake; $banktaken=$banktaken+$banktake; $db->query("UPDATE users SET hospital=hospital+$rad, hospreason='Bombed By a Nuclear Bomb by <a href=\'viewuser.php?u=$userid\'>{$ir['username']}</a>', money=money-$moneytake, bankmoney=bankmoney-$banktake, crystals=crystals-$crysttake WHERE userid={$r['userid']}",$c); } $db->query("UPDATE `users` SET `money` = `money` + '{$moneytaken}', `bankmoney` = `bankmoney` + '{$banktaken}', `crystals` = `crystals` + '{$crystaltaken}' WHERE `userid` = '{$userid}'",$c); $expgainedq=$db->query("SELECT * FROM `users`",$c); $expgained=$db->num_rows($expgainedq)*5; $db->query("UPDATE users SET exp=exp+$expgained WHERE userid=$userid",$c); print "Nuclear Bomb is successful! You have gained ".number_format($expgained)."% Exp!. You have gained \$".number_format($moneygained)." Money You have gained \$".number_format($bankgained)." Bank Money You have gained ".number_format($crystalgained)." Crystals "; $db->query("UPDATE `users` SET `nbombs` = `nbombs` - '1' WHERE `userid` = '{$userid}'",$c); } else { if(!$_POST['method']) { print "You have [b]$ir[nbombs][/b] nuclear bombs! <font color=red>Warning Users: This bomb will bomb everyone except staff, and we are not responsible if you misuse this bomb. If you get hacked and this bomb is used, not our fault.</font> What do you want to do? -Method One will let you put everyone in hospital for 10-200 minutes, and you choose 5 special ID's to choose to bomb, They get bombed and put in for upto 35,000 minutes (10 days!) <form action='nuclearbomb.php' method='post'><input type='hidden' name='method' value='fivepeople'><input type='submit' value='Method One'></form> -Method Two puts everyone in hospital for upto 1000 minutes, and you don't choose anyone special to bomb. <form method='post' action='nuclearbomb.php?LaunchBomb'><input type='hidden' name='method' value='nopeople'><input type='submit' value='Method Two'></form>"; } else if($_POST['method'] == "fivepeople") { print "Which Five People do you want to launch the bomb at? <form action='nuclearbomb.php?LaunchBomb' method='post'> <input type='hidden' name='method' value='fivepeople'> User One (ID) : <input type='text' name='id1'> User Two (ID) : <input type='text' name='id2'> User Three (ID) : <input type='text' name='id3'> User Four (ID) : <input type='text' name='id4'> User Five (ID) : <input type='text' name='id5'> <input type=submit value='Launch Bomb'></form> "; } } $h->endpage(); ?>
-
Re: What would you do with $100,000,000? Nuclear Bomb :P lol
-
Re: Request |Nuclear Mod| v2 Use the search feature, heres what it comes up with: http://criminalexistence.com/ceforums/i ... pic=9137.0
-
[MCcode] Raffle Script out of interest
AbsentCrisis replied to radio_active's topic in Paid Modifications
Re: [MCcode] Raffle Script out of interest Yh i think you should sell it also...$5 would be a good price.