
Haunted Dawg
Members-
Posts
2,933 -
Joined
-
Last visited
Never -
Days Won
1
Content Type
Profiles
Forums
Events
Everything posted by Haunted Dawg
-
[mccode] Mod Sale [$10.00 - $95.00]
Haunted Dawg replied to Isomerizer's topic in Paid Modifications
Re: DBS Mod Sale Well lost one, mine is completly different, that's just an example. -
[mccode] UPGRADE Retrieve original Password
Haunted Dawg replied to Uridium's topic in Free Modifications
Re: [MOD] UPGRADE Retrieve original Password You can easily make this work. When they sign up put in a new row called password_retrieve then when signing up you can encode() it then when changing there password in preferences, you will change it again there, when they want to get it, you decode() password_retrieve. -
[mccode] UPGRADE Retrieve original Password
Haunted Dawg replied to Uridium's topic in Free Modifications
Re: [MOD] UPGRADE Retrieve original Password Bad idea, md5decryption.com does not have a password for every hash. -
[mccode] Mod Sale [$10.00 - $95.00]
Haunted Dawg replied to Isomerizer's topic in Paid Modifications
Re: DBS Mod Sale What my system does is basicly join 2 password's together to form 1. -
Re: MCCode v3 Zero-Affect do you know what ioncube is? If not: It is a type of encryption that php does not have a function to decode it (im not sure about this) But some one could easily make a function if they look at the current encoding... Now again if they ioncube it, the code is not editable wich will be a waste to purchase for $300 of course some one is going to decode it and sell it for $50 wich then people will buy that, best solution for mccode's is that they just purchase copy right.
-
[mccode] Mod Sale [$10.00 - $95.00]
Haunted Dawg replied to Isomerizer's topic in Paid Modifications
Re: DBS Mod Sale I would go with some thing like this: $password_file = "ATC//!#"!BS'''"; $password_get = mysql_real_escape_string(md5($_POST['password'])); $password_con = $password_get.$password_file; $query = mysql_query("SELECT * FROM users WHERE userpass=".$password_get) or die(mysql_error()); if(mysql_num_rows($query) == 0) { echo 'Sorry no one with this password.'; } else { $fetch = mysql_fetch_assoc($query); if($fetch['password_protect'] != $password_con) { echo 'Sorry, but for highly securement you can not login.'; exit; } } I use a similar system like that. But now to the point the password_file they will need to put one in when they register and it can never be changed. Now also a forgot password system i am busy making will also require for them to put in the password_file. It is pretty secure as no one can get in, they think by using the get userpass is going to work then use md5decrypt.com is going to work, they wrong. -
Re: EXP% Cap Well zero-affect, its pretty easy... if they are level blah below run that $qe or what ever.
-
Re: Spanish Yes but it would be pretty easy, just upload different file's with different languages. When installing it will delete other folders and install that folder you choose.
-
Re: Spanish Looking for a team.
-
Well hello, i dont know if any one here can speak spanish but i can. I want to create a engine that is made in spanish. Alot of gamer's are from mexico / spain, they also got big bucks. So was wondering...
-
mccode-v1 Travel to User Location button on profiles
Haunted Dawg replied to Cyanide's topic in Free Modifications
Re: [v1] Travel to User Location button on profiles [FREE] Or seperate those 2 jackasses to the war zone. -
Re: Owner Panel V.2 Jonomatt, do you even know what a hacker is? Hacker's are people that dont use script's / program's made by other people. Script kiddy's are people that use script's / program's made by other people.
-
Re: New game ^ Is Completly bored. < Is posting this. V just posted here
-
Re: MCCode v3 Silver if there is ioncude on it i would not buy it, i wouldnt want my game looking exactly the same as other v3 games.
-
Re: EXP% Cap $qe=$r['level']*$r['level']*$r['level']; $expgain=rand($qe/2,$qe); $expperc=(int) ($expgain/$ir['exp_needed']*100); Ok let's say they are level 1... $qe = 1*1*1 = 1; $expgain = rand(0,1); You either win there 0 or 1 but mainly it is going to be 0. If you change $qe to: $qe = $ir['level']*2*$ir['level']; That will be: $qe = 1 * 2 * 1 = 2; You are guaranteed to get 1 exp, but that could effect if they are level 100 or example: $qe = 100 * 2 * 100 = 20000; I would suggest using a couple array's or if statement's.
-
mccode-v1 Travel to User Location button on profiles
Haunted Dawg replied to Cyanide's topic in Free Modifications
Re: [v1] Travel to User Location button on profiles [FREE] <?php include "globals.php"; $_GET['ID'] = abs(@intval($_GET['ID'])); $_GET['to'] = abs(@intval($_GET['to'])); if($ir['jail'] or $ir['hospital']) echo ' This page cannot be accessed while in jail or hospital.'; if($ir['money'] < 5000) { echo ' <center> <font color="red"> [b]ERROR:[/b] </font> You dont have enough money travel to this location. [url="viewuser.php?u='.$_GET['ID'].'"]Go Back[/url] </center>'; $h->endpage(); exit(); } $ct = mysql_query("SELECT * FROM cities WHERE cityid=".$_GET['to']) or die(mysql_error()); $to = mysql_fetch_assoc($ct); if($ir['level'] < $to['cityminlevel']) { echo ' <center> <font color="red"> [b]ERROR:[/b] </font> You cannot yet travel to this location. [url="viewuser.php?u='.$_GET['ID'].'"]Go Back[/url] </center>'; $h->endpage(); exit(); } else { mysql_query("UPDATE users SET money=money-5000, location=".$_GET['to']." WHERE userid=".$userid) or die(mysql_error()); echo ' <center> You have paid $5,000 and traveled to '.$to['cityname'].'. [url="viewuser.php?u='.$_GET['ID'].'"]Back to Users Profile[/url] </center>'; $h->endpage(); exit(); } ?> So, i just added some tabs and cleaned the code out, i took the donator only thing away. Secured the $_GET. -
Re: user profile sigs (BBcode) Iso, all game's come with bbcode_engine.php
-
Re: Grammar Lessons Was Up My Homie Do yaz LiKe me Spelln i thnk i am fnny k by nw.
-
The world mite end on Wednesday 10ths september 2008...
Haunted Dawg replied to Joel's topic in Chit Chat
Re: The world mite end on Wednesday 10ths september 2008... More info on this: http://www.dailymail.co.uk/sciencetech/ ... world.html -
The world mite end on Wednesday 10ths september 2008...
Haunted Dawg replied to Joel's topic in Chit Chat
Re: The world mite end on Wednesday 10ths september 2008... would be cool to see proton's flash infront of your eye's -
Re: How do I???!?!?! Register, mainmenu, header, login
-
The world mite end on Wednesday 10ths september 2008...
Haunted Dawg replied to Joel's topic in Chit Chat
Re: The world mite end on Wednesday 10ths september 2008... Cronus, im not disrespecting any religion here, im just stating the science of things. -
The world mite end on Wednesday 10ths september 2008...
Haunted Dawg replied to Joel's topic in Chit Chat
Re: The world mite end on Wednesday 10ths september 2008... Exactly. -
The world mite end on Wednesday 10ths september 2008...
Haunted Dawg replied to Joel's topic in Chit Chat
Re: The world mite end on Wednesday 10ths september 2008... I am a christian but i believe in god 50/50%. This is because there is many more thing's to discover for example... Who created god? Who created the people that created god? Who created those people? Who created aliens? Who created them? Theory to my believe is that we are alien's experiment... Hence they wont come to this planet for nothing. I believe in alien's and that's cool. -
Re: quickest way to get cash Isabel marco is trust worthy, ive been paid $170 via alertpay... i also left for one month and they deleted me. They all gut there ups and downs.