
Alien
Members-
Posts
61 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Alien
-
Re: v2.0 now released this new engine looks like mypimpscript but a lot less advanced in looks make something different
-
(MCCODES) V2 Layout For Sale $100 is starting bid
Alien replied to doinkinator's topic in Paid Modifications
Re: (MCCODES) V2 Layout For Sale $100 is starting bid Damn you Guys are noobs saying its worth like $10 you have a go at makign one He made me one and it looks fab ! just to let you guys know this is a +1 person to deal with ! -
(MCCODES) V2 Layout For Sale $100 is starting bid
Alien replied to doinkinator's topic in Paid Modifications
Re: (MCCODES) V2 Layout For Sale $100 is starting bid Hi doinkinator im not one of the most popular members of CE but i admire your work very much could you please add me on MSN as i would like a custom template made - that is if you do custom i have previously bought templates from Rpg-Style who's work i did admire very but ive got to say it your work does top his a bit i think you should stick with the $100 price tag for the first template your selling as it is high quality and i can see youve put time into it its simple - but good add me on MSN : [email protected] - because i would like a custom template -
Re: MCcodes 2.5 - Mono District i never said its a new engine its standard mccodes v2 enchanced
-
Dont know about you guys but i wanna see how this is ! :)
-
Re: just restarted my game fresh and wondering yey lol thats the simplest reason i had this problem a few days ago when i was transfering between servers :P i had to edit a few files for it to start working
-
Re: [mccode v2] Looking for someone to secure my freind secures sites he will do a whole site for $30 basically that will rid it of neally a security flaws get back to me if your intrested
-
Re: Ruby Trader Mod FREE!!! V2 100 days = a lot tbh people will still donate
-
Re: The Mafia City im not really bothered with that atm because i will be changing it :P
-
Opened it Yesterday there are a few minor bugs but game is working very well http://themafiacity.com/
-
Re: Businesses Mod [Mccode V2] very very very nice mod i cant belive your giving it away for free
-
Basically ive Launched my game yesterday and i wanna see if its any good for you guys ! :) http://www.deadlyminded.com/ i would also like some feedback ! :)
-
Re: [McCodes v2]Crystal Temple Advanced unforgivenwar sucks they where in it for the entertainment but now they are purely in the for cash i would respect them if they where in it for both but a lot of owners are going just for the cash option
-
Re: [McCodes v2]Crystal Temple Advanced thx ! :) im planning on learning more php btw are there any bugs ??
-
Re: [McCodes v2]Crystal Temple Advanced but anyway this is about the code so lets talk about it lol
-
Re: [McCodes v2]Crystal Temple Advanced yeah it looked good :)
-
Re: [McCodes v2]Crystal Temple Advanced that depends on how much will difference there is gona be on each house i.e. House 1 : 100 House 2 : 110 House 3 : 120 and soo on there wont be that much difference But if its House 1 : 100 House 2 : 200 House 3 : 400 then its just silly and also you would have to know how much my crystal packs are gona be bfore you can say its too easy/hard 200 crystals & 31 DD - $5
-
Hi guys :) Im not very well known and i am quite new to coding This is my first mod so please no distructive critisism (me accepting constructive critisism) basically this add's will refill, brave refill and health refill but ive taken IQ out because i aint gona have an easy way of getting stats in my game :) some of you migth think im crazy for putting refill's of will especially well no because to get will costs like 50 crystals and the only way of getting crystals : donating of buying from a donator :) This code is very easy but i could not find on CE so i posted I am new to coding so if you find any bugs please let me know :) <?php include "globals.php"; if(!$_GET['spend']) { print "Welcome to the crystal temple! You have [b]{$ir['crystals']}[/b] crystals. What would you like to spend your crystals on? [url='crystaltemple.php?spend=will']Will Refill - 50 Crystals[/url] [url='crystaltemple.php?spend=refill']Energy Refill - {$set['ct_refillprice']} Crystals[/url] [url='crystaltemple.php?spend=brave']Brave Refill - 10 Crystals[/url] [url='crystaltemple.php?spend=healh']Health Refill - 5 Crystals[/url] [url='crystaltemple.php?spend=IQ']IQ - {$set['ct_iqpercrys']} IQ per crystal[/url] [url='crystaltemple.php?spend=money']Money - \$".number_format($set['ct_moneypercrys'])." per crystal[/url] "; } else { if($_GET['spend'] == 'refill') { if($ir['crystals'] <$set['ct_refillprice']) { print "You don't have enough crystals!"; } else if($ir['energy'] == $ir['maxenergy']) { print "You already have full energy."; } else { $db->query("UPDATE users SET energy=maxenergy,crystals=crystals-{$set['ct_refillprice']} WHERE userid=$userid"); print "You have paid {$set['ct_refillprice']} crystals to refill your energy bar."; } } if($_GET['spend'] == 'will') { if($ir['crystals'] < 50) { print "You don't have enough crystals!"; } else if($ir['will'] == $ir['maxwill']) { print "You already have full Will."; } else { $db->query("UPDATE users SET will=maxwill,crystals=crystals-50 WHERE userid=$userid"); print "You have paid 50 crystals to refill your will bar."; } } if($_GET['spend'] == 'brave') { if($ir['crystals'] < 10) { print "You don't have enough crystals!"; } else if($ir['brave'] == $ir['maxbrave']) { print "You already have full brave."; } else { $db->query("UPDATE users SET brave=maxbrave,crystals=crystals-10 WHERE userid=$userid"); print "You have paid 10 crystals to refill your brave bar."; } } if($_GET['spend'] == 'health') { if($ir['crystals'] < 5) { print "You don't have enough crystals!"; } else if($ir['health'] == $ir['maxhealth']) { print "You already have full health."; } else { $db->query("UPDATE users SET health=maxhealth,crystals=crystals-5 WHERE userid=$userid"); print "You have paid 5 crystals to refill your health bar."; } } else if($_GET['spend'] == 'money') { print "Type in the amount of crystals you want to swap for money. You have [b]{$ir['crystals']}[/b] crystals. One crystal = \$".number_format($set['ct_moneypercrys']).".<form action='crystaltemple.php?spend=money2' method='post'><input type='text' name='crystals' /> <input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'money2') { $_POST['crystals']=(int) $_POST['crystals']; if($_POST['crystals'] <= 0 || $_POST['crystals'] > $ir['crystals']) { print "Error, you either do not have enough crystals or did not fill out the form. [url='crystaltemple.php?spend=money']Back[/url]"; } else { $iqgain=$_POST['crystals']*$set['ct_moneypercrys']; $db->query("UPDATE users SET crystals=crystals-{$_POST['crystals']},money=money+$iqgain WHERE userid=$userid"); print "You traded {$_POST['crystals']} crystals for \$".number_format($iqgain)."."; } } } $h->endpage(); ?> Screenshot: Please remember that i am new to coding :) But if you like this code +1 me :)
-
Re: [ANY VERSION] GFX FOR SALE! (From $1) nice i might need a advertising banner for my website :) add me please on MSN [email protected]
-
Re: Mccodes v2 Theme (want to buy) Yeah he does (Can a mod please close this topic please ! :) ) that guy charges : Public Template : $30 per copy Unique Template : $120 - $150 (i cant remember exactly)
-
Re: Mccodes v2 Theme (want to buy) im not really looking for something unique and judging by the sales $10 / $30 ect... from other people i think its reasonable
-
Re: Mccodes v2 Theme (want to buy) ... ok guys ...
-
I am looking for a good Mccodes Theme (header,login and register) i am willing to pay up to $30 i might push it up if i really like the template enough I dont mind if it is Public/Unique plz just put up screenshots of header,login,register and say how much you would like it i will judge if i like it or not and i might say a bit less or accept it (will only last 3 hours and i will only accept 1) so basically from now untill i finish work and go home i will buy one (if its good) no flame please and it must already be made so i can view it :) please also be online when i want to buy i dont really like waiting lol (none of us do)
-
Re: [mccode v2 template] Battle Field [30$] plz get back to me about the template :) :-D
-
Re: [mccodes V2] Commander/Criminal Mod [$50.00] this is basically what they have on drugrunners.net nothing to do with mccodes