AlabamaHit
Members-
Posts
1,308 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by AlabamaHit
-
Re: Windows XP 64 bit Nvidia 9600 GT Mobile drivers? If you have a multi core processor and alot of ram. You might check into Vista 64. It's faster and more compatible. I konw from expericnce. I'm still in shock to see that....but just thought i would let you know..
-
Help with Instant Credit For paypal donaters?
AlabamaHit replied to DEA's topic in General Discussion
Re: Help with Instant Credit For paypal donaters? why can't peopel use the damn search feature.. Here is a Site suggestion. Stop people from posting ike this and delete their post...Or remove the search feature. cause its not used. http://criminalexistence.com/ceforums/i ... ic=27070.0 ...took 5 seconds. -
Re: battle bots problem Why would i want to fix your game for you? if you are searching Battle Tent over and over your a moron mix it up..and honestly your looking for a fix. LEARN HOW TO SEARCH battle tent fix. http://criminalexistence.com/ceforums/i ... pic=2880.0 5 seconds to find....if you cant do something like that. How are you supposed to run a game?? Honestly... Yeah I know I sound like a smart azz and sound very mean. I'm just sick of seeing people that will not put forth effort themselfs. If you have been on this site as long as me then you would know what I mean. And yes its a site to help teach you. But its not daycare. And 99% of the problems you have on your game is already on here...So mix up your search cuase its here.
-
Re: battle bots problem No its not...This has been answered 50 times I know of on here.
-
Re: battle bots problem ok now you are the 500th poerson to just ask without searching. SEARCH THE FORUMS damn is it that hard to type in the search? http://criminalexistence.com/ceforums/i ... on=search2
-
Re: April Fools Joke [MCCODE V2] I was joking i think this is funny. and would really funny to the players.
-
Re: April Fools Joke [MCCODE V2] DOn't be fooling me LOL :wink:
-
Re: Hitman Players [$30] Not true In the State of Alabama your a Minor unitl 19 years of age.
-
Re: [v2 $varies] Einey's Mod Shop (Read the store info before posting) I show no respect cuase i was showed none from most peopel thats jsut how it is. And your are dumber than i thought. I don't charge alot for my mods. I have Many mods I made and sold that people posted for Free so stfu on respect bs caues thts the way it is. ANd yes people would rather seea picture. and honestly do you want 200 poeple signing iup for your game to look at a mod? and never come back thats just waisted cluter on your db. This is how CE is if you don't like it Bye. Sorry that you actually thought that it would be differnt. Oh and 80% of your mods are Free already. or can made from a free one by editing a few words.....just saying.
-
Re: [v2 $varies] Einey's Mod Shop (Read the store info before posting) Because your selling not him. Thats why you should answer and post information, screenshots and such. Its as simple as that. Why should anyone signup for a game to view a mod...Thats freakin stupid..Now to start on your mods...come one...way overpiced. Ill make the mods for half the price except for Quest and Stats increasing one. Yeah go ahead and yell, and complain...i don't care.
-
Re: Crons, Timestamp or none? cool :mrgreen:
-
Re: Crons, Timestamp or none? Just started playing around with this.....Its very simple stuff. I noticed if you choose every 5 minutes its true every 5 mintues to the time you started it. So it wont be on the 5s of like 2:05 , 2:10, but you can fix that by editing the time of it in phpmyadmin and making it on those time.....also when you make one it executes it then..Obvously to set the time stamp to know when to run again. This can very very handy.
-
Re: help with this formula Yeah I agree. I just used it cause he claims it was his original. I guess who ever gave him the codes or where he donwloaded it someone messed them up lol
-
Re: Hitman Players [$30] Stolen Mod PROVEN You made this mod.......and you cant make a game? LMFAO where is md this guy needs to be banned for stealing trying to sell
-
Re: get more traffic Advertising..... but thats not free.
-
Re: jobs information So you come back to start your begging again huh? They told you where you add it...You have had more time than most to learn. If you want it to give exp...add it yourself. You have got to learn at some point.
-
Re: Userlist.php could it be this ORDER BY userid ASC LIMIT 0, 100 ? maybe ORDER BY u.userid ASC LIMIT 0, 100
-
Re: help with this formula max of 75 what % ? thats easy... try this out. $expgain = rand($qe/50,$qe/50) > $ir['exp_needed']/100*75 ? $ir['exp_needed']/100*75 : rand($qe/50,$qe/50);
-
[McCodes V2] Assassinate user (donator only)
AlabamaHit replied to Dayo's topic in Free Modifications
Re: [McCodes V2] Assassinate user (donator only) $do = sprintf("UPDATE users SET money = 0 WHERE userid = %u",($ir['userid'])); $db->query($do); You don't have to use a ` also. you don't have to quote a Number. And um......what is the , for in it... if you don't want sprintf $db->query("UPDATE users SET money = 0 WHERE userid = ".$ir['userid'].""); -
Re: Need help with a custom airport thing - Keep it if you can fix! i wonder what the point of the chagne is? why not just chagne the monorail.php? But if your wanting this....Here ya go. <?php include "globals.php"; switch($_GET['city']) { case 'portadown': portadown(); break; case 'london': london(); break; case 'washington': washington(); break; case 'paris': paris(); break; case 'berlin': berlin(); break; case 'vegas': vegas(); break; case 'kathmandu': kathmandu(); break; default: index(); break; } function index()//Problem you had no main page. { global $ir, $userid, $h, $db; //This was your problem. You didn't give the global echo " <table class='table' width='65%' cellpadding='2'> <tr> <th>City</th> <th>Level</th> <th>Cost</th> <th>Travel</th> </tr> <tr> <td>Portadown</td> <td>1</td><td>/$1,000</td> <td>[url='airport.php?city=portadown']Go[/url]</td> </tr> <tr> <td>London</td> <td>5</td> <td>/$3,000</td> <td>[url='airport.php?city=london']Go[/url]</td> </tr> <tr> <td>Washington</td> <td>10</td> <td>/$5,000</td> <td>[url='airport.php?city=washington']Go[/url]</td> </tr> <tr> <td>Paris</td> <td>20</td> <td>/$7,500</td> <td>[url='airport.php?city=paris']Go[/url]</td> </tr> <tr> <td>Berlin</td> <td>30</td> <td>/$10,000</td> <td>[url='airport.php?city=berlin']Go[/url]</td> </tr> <tr> <td>Las Vegas</td> <td>40</td> <td>/$12,500</td> <td>[url='airport.php?city=vegas']Go[/url]</td> </tr> <tr> <td>Kathmandu</td> <td>50</td> <td>/$15,000</td> <td>[url='airport.php?city=vegas']Go[/url]</td> </tr> </table>"; } function portadown() { global $ir, $userid, $h, $db; //This was your problem. You didn't give the globals if($ir['money'] < 1000) { print "You don't have enough money to cover the ticket"; } else if($ir['level'] < 1) { print "You are not high enoguh level to go here!"; } else($ir['level'] > 0 and $ir['money'] >999) { $db->query("UPDATE users SET money=money-1000,location=1 WHERE userid=$userid"); print "You paid /$1,000 to travel to Portadown"; } } function london() { global $ir, $userid, $h, $db; //This was your problem. You didn't give the globals if($r['money'] < 3000) { print "You don't have enough money to cover the ticket"; } if($ir['level'] > 4 and $r['money'] >2999) { $db->query("UPDATE users SET money=money-3000,location=2 WHERE userid=$userid"); print "You paid /$3,000 to travel to London"; } else if($ir['level'] < 5) { print "You are not high enough level to go here!"; } else($ir['level'] > 4 and $ir['money'] >2999) { $db->query("UPDATE users SET money=money-3000,location=2 WHERE userid=$userid"); print "You paid /$3,000 to travel to London"; } } function washington() { global $ir, $userid, $h, $db; //This was your problem. You didn't give the globals if($ir['money'] < 5000) { print "You don't have enough money to cover the ticket"; } else if($ir['level'] < 10) { print "You are not high enoguh level to go here!"; } else($ir['level'] > 9 and $ir['money'] >4999) { $db->query("UPDATE users SET money=money-5000,location=3 WHERE userid=$userid"); print "You paid /$5,000 to travel to Washington"; } } function paris() { global $ir, $userid, $h, $db; //This was your problem. You didn't give the globals if($ir['money'] < 7500) { print "You don't have enough money to cover the ticket"; } else if($ir['level'] < 20) { print "You are not high enoguh level to go here!"; } else($ir['level'] > 19 and $ir['money'] >7499) { $db->query("UPDATE users SET money=money-7500,location=4 WHERE userid=$userid"); print "You paid /$7,500 to travel to Paris"; } } function berlin() { global $ir, $userid, $h, $db; //This was your problem. You didn't give the globals if($ir['money'] < 10000) { print "You don't have enough money to cover the ticket"; } else if($ir['level'] < 30) { print "You are not high enough level to go here!"; } else($ir['level'] > 29 and $ir['money'] >9999) { $db->query("UPDATE users SET money=money-10000,location=5 WHERE userid=$userid"); print "You paid /$10,000 to travel to Berlin"; } } function vegas() { global $ir, $userid, $h, $db; //This was your problem. You didn't give the globals if($ir['money'] < 12500) { print "You don't have enough money to cover the ticket"; } else if($ir['level'] < 40) { print "You are not high enough level to go here!"; } else($ir['level'] > 39 and $ir['money'] >12499) { $db->query("UPDATE users SET money=money-12500,location=6 WHERE userid=$userid"); print "You paid /$12,500 to travel to Las Vegas"; } } function kathmandu() { global $ir, $userid, $h, $db; //This was your problem. You didn't give the globals if($ir['money'] < 15000) { print "You don't have enough money to cover the ticket"; } else if($ir['level'] < 50) { print "You are not high enough level to go here!"; } else($ir['level'] > 49 and $ir['money'] >14999) { $db->query("UPDATE users SET money=money-15000,location=7 WHERE userid=$userid"); print "You paid /$12,500 to travel to Kathmandu This is a very cold place!"; } } $h->endpage(); ?> could problems in there...You didn't set a index.. (Default for the page). And you have to use global on each function thats why it said you had not enough money. Also you migh notice i changed the order of your else. and ifs..and stuff..Also make blocks first.. Like example if you have enough money block else if you are high enough level block else if your brave is high enough block else we are good do it. Also last one in line should be else not else if.
-
Re: Link.? modifity the installer.php find if($pvf+$wvf+$dvf+$avf+$gvf < 5) { print "<hr /><font color='red'>One of the basic diagnostics failed, so Setup cannot continue. Please fix the ones that failed and try again.</font><hr />"; } change to if($pvf+$wvf+$dvf+$avf+$gvf < 4) { print "<hr /><font color='red'>One of the basic diagnostics failed, so Setup cannot continue. Please fix the ones that failed and try again.</font><hr />"; }
-
[mccodes V2] Delete item from shop mod $10
AlabamaHit replied to jon182's topic in Paid Modifications
Re: [mccodes V2] Delete item from shop mod $10 lol, you cant sell what you didnt make. -
[v1]Need abit of help with anouncements
AlabamaHit replied to TheMafia!'s topic in General Discussion
Re: [v1]Need abit of help with anouncements wtf are the @ for? take those out....... and thats if your code is right..... -
Re: [V2 Attack Bug lol that kinda defeats the point of what the code was blocking now don't it?