
Deisel80
Members-
Posts
16 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Deisel80
-
Re: houses It is a good possibility that the marriage mod could cause this problem but i have been running my own version of shared house marriage for over a year with no probs. If you have the mod that is everywhere you should have three tables controlling this..... will = the current amount of will you have left maxwill= the maximum will you can get if you arent married willmax= the maximun will you can get if you are married I might have the last two reversed. I am going off of memory from a mod that i havent seen in over a year? Sorry, i wrote my own. Anyway, you need to make sure that your estate.php is using these tables correctly when a house is purchased. If you post your estate.php up here someone may be able to help you more.
-
Re: drug farm It does cost and if i remember correctly its pretty expensive. I believe it does have like a 30 day trial or something. You can download it straight from the product home page.
-
Re: drug farm Dude seriously, I love to help new people but your going to have to learn what to post if you want any help. First of all it tells you where to look (Line 420) and since not all of us have this mod you would probably want to post several lines before and after the line in question before anyone can help you. I'm going to take a guess that your new to coding so I would say you would probably be better off if you could get a copy of Zend Studios. I think you will find it helpful like i did. It will help you with debugging your code.
-
Re: MAILS Are you talking about A: Your mails dont show up at all even if you click the mailbox link. OR B: It doesnt display in the menu when you have a new mail. i.e "Mailbox (1)" ?????????
-
Re: Help with Cyberbank!!! The cyber bank by default becomes available in the explore page only when you are in city #5. It appears in the menu not in the "country" as you are calling it. I'm posting this so you can control it by both location and level of the user. Find in explore.php if($ir['location'] == 5) { print " [url='cyberbank.php']Cyber Bank[/url] "; } And replace with: if($ir['location'] == 5 AND $ir['level']==75) { print " [url='cyberbank.php']Cyber Bank[/url] "; } You will need to change the "location" to the cityid of the city you want it to appear in and change level to the level you want the user to be required. If either of these conditions is not met the cyberbank will not display.
-
Re: I really need help http://www.warages.net/index.html That is what i got when i went to your site. "index.html" rename that page to something else ie. "index2.html" or something like that and see if your login doesn't come back up. Your login still works if you go directly to the page. i.e "http://www.warages.net/login.php"
-
Re: Help needed with prefrences! You need to post more info for anyone to really be able to help you. Since you haven't posted any of your preferences page coding up here all anyone can do is take a wild guess. My guess would be that your database is holding your password as an encrypted md5 string but your preference page is trying to compare a plain text password or vise versa. I would check that first.
-
Re: Help please with Hall of Fame I'm assuming you would be the owner or staff member at least. I dont know what your user_level numbering scheme is. By default i think admins are set to level 2 so you would use something like this........... $q=mysql_query("SELECT u.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.user_level < 2 ORDER BY us.labour DESC,u.userid ASC LIMIT 20", $c); That query may not be totally correct cuz its on the fly and im really tired lol. You really just need to add the red part into your HOF queries.
-
Re: reisterphp Like everyone here has said so far, stopping issues by ip is almost pointless because of the ready availability of tools to change your ip address. I do have a few such controls in my sites and will post them here for you but for the most part they are easily defeatable. These will only stop the dumbest of people. Reminds me of an old quote. "Its only there to keep an honest man honest, all others will find a way around it." For bank transfers, cash transfers and items transfers I use this............ $ipc=mysql_query("SELECT * FROM users WHERE userid={$_POST['user']} LIMIT 1",$c); $ip=mysql_fetch_array($ipc); if($ip['lastip'] == $ir['lastip']) { Die("You may not send items between multi accounts!"); } As for the register page my users have to use a valid email address to sign up. An email is then sent to them to activate there account. I do have this in there though..... $ip = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; $z=mysql_query("SELECT * FROM users WHERE lastip='$ip'",$c); if(mysql_num_rows($z)) { die("Multiple accounts are not allowed. If you need more than one account on this IP address contact staff."); } Like i said before, all of this is easily defeated and shouldnt be relied upon to stop multis altogether. Just trying to be helpful lol.
-
Re: donators only Add this at the beginning of your script. if($ir['donatordays'] < 1) { die("This Feature Is For Donators Only.... [url='index.php'] Home[/url]"); }
-
Re: v1 Terrorist Mod $10.00 I adapted the car bomb mod over to serve this purpose but the users have to have the "TNT" item in their inventory to be able to use it. The users love it on my game so if you dont have the car bomb mod this might be a good way to go.
-
Make users verify their email address?
Deisel80 replied to gawduranidiot's topic in General Discussion
Re: Make users verify their email address? Ive already purchased this mod. I cant remember from who off hand but i found it here on CE. Just do a search for it on the boards. I am very pleased with my copy and he has v1 and v2 versions if i remember correctly. -
Transfer current v1 game to v2??? Possible?
Deisel80 replied to KDawg08's topic in General Discussion
Re: Transfer current v1 game to v2??? Possible? That is all well and good but there are many differences in the database tables from v1 to v2. A big one being items, without some work they will not transfer over easily. Any scripts from V1 can be adapted over to V2 with little effort involved. -
Re: [v1] Issue a Threat [FREE] Let me tell you guys a little something about our little friend _Stoner_ here. This gentleman owns www.criminalisland.com which used to be known as www.gangsta-paradise.com. The asshole has been trying to hack into other game sites to promote his own. As far as im concerned i really dont give a shit who charges you what or why. My advice to you is shut the hell up and keep a real low profile. Sometimes you just screw with the wrong guy and i can assure you _Stoner_ , no matter what site you have it will never be left alone. Anyone else that hates little pricks like this should make a point to screw with him too. If anyone wants proof of his activities I will be more than happy to provide it.