Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: DBS Mod Sale Well lost one, mine is completly different, that's just an example.
  2. 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.
  3. Re: [MOD] UPGRADE Retrieve original Password Bad idea, md5decryption.com does not have a password for every hash.
  4. Re: DBS Mod Sale What my system does is basicly join 2 password's together to form 1.
  5. 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.
  6. 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.
  7. Re: EXP% Cap Well zero-affect, its pretty easy... if they are level blah below run that $qe or what ever.
  8. 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.
  9. Re: Spanish Looking for a team.
  10. Haunted Dawg

    Spanish

    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...
  11. Re: [v1] Travel to User Location button on profiles [FREE] Or seperate those 2 jackasses to the war zone.
  12. 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.
  13. Haunted Dawg

    New game

    Re: New game ^ Is Completly bored. < Is posting this. V just posted here
  14. 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.
  15. 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.
  16. 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.
  17. Re: user profile sigs (BBcode) Iso, all game's come with bbcode_engine.php
  18. Re: Grammar Lessons Was Up My Homie Do yaz LiKe me Spelln i thnk i am fnny k by nw.
  19. Re: The world mite end on Wednesday 10ths september 2008... More info on this: http://www.dailymail.co.uk/sciencetech/ ... world.html
  20. Re: The world mite end on Wednesday 10ths september 2008... would be cool to see proton's flash infront of your eye's
  21. Re: How do I???!?!?! Register, mainmenu, header, login
  22. Re: The world mite end on Wednesday 10ths september 2008... Cronus, im not disrespecting any religion here, im just stating the science of things.
  23. Re: The world mite end on Wednesday 10ths september 2008... Exactly.
  24. 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.
  25. 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.
×
×
  • Create New...