Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > 4Story
You last visited: Today at 04:47

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release][Website Avalon No Bugged]

Discussion on [Release][Website Avalon No Bugged] within the 4Story forum part of the MMORPGs category.

Reply
 
Old 01/30/2014, 19:22   #16
 
elite*gold: 60
Join Date: Dec 2013
Posts: 287
Received Thanks: 108
Quote:
Originally Posted by glossypvp View Post
And by the way OPTool is made by me.
Brah.. We all know it xD
.Arrogunz™ is offline  
Old 01/30/2014, 19:31   #17
 
glossypvp's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 662
Received Thanks: 658
That's the sad fact that not everyone know it. For example when levin bought the optool from u, he didn't even know who is glossy, and who made the optool.

And the other sad factj now everyone know it, and still trading with it, and 0 money goes to me. Gaining money with someone else's work, YEP, It's all I ever wanted
glossypvp is offline  
Thanks
2 Users
Old 01/30/2014, 20:59   #18




 
stotterer09's Avatar
 
elite*gold: 26
Join Date: Dec 2010
Posts: 2,628
Received Thanks: 1,816
Quote:
Originally Posted by glossypvp View Post
That's the sad fact that not everyone know it. For example when levin bought the optool from u, he didn't even know who is glossy, and who made the optool.

And the other sad factj now everyone know it, and still trading with it, and 0 money goes to me. Gaining money with someone else's work, YEP, It's all I ever wanted
I know that feelin bro^^
stotterer09 is offline  
Old 01/30/2014, 21:13   #19
 
glossypvp's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 662
Received Thanks: 658
Quote:
Originally Posted by stotterer09 View Post
I know that feelin bro^^


Should I finally release the optool? So kids like levin can't sell it anymore.
glossypvp is offline  
Old 01/30/2014, 21:24   #20
 
elite*gold: 60
Join Date: Dec 2013
Posts: 287
Received Thanks: 108
Quote:
Originally Posted by glossypvp View Post


Should I finally release the optool? So kids like levin can't sell it anymore.
Do it, with tut I still dont know how to use it xDD Just errors *-*
.Arrogunz™ is offline  
Old 01/31/2014, 08:03   #21
 
elite*gold: 0
Join Date: Jan 2014
Posts: 258
Received Thanks: 152
Quote:
Originally Posted by glossypvp View Post
That's the sad fact that not everyone know it. For example when levin bought the optool from u, he didn't even know who is glossy, and who made the optool.

And the other sad factj now everyone know it, and still trading with it, and 0 money goes to me. Gaining money with someone else's work, YEP, It's all I ever wanted
I'm know that tool is created by you. and I did not give him any money!

Quote:
Originally Posted by .Arrogunz™ View Post
Do it, with tut I still dont know how to use it xDD Just errors *-*
I fixed the errors and I think now you should sell shiny. Because he created the tool!
only he can sell the tool
TinLevin is offline  
Thanks
2 Users
Old 01/31/2014, 16:16   #22
 
Weom's Avatar
 
elite*gold: 120
Join Date: Apr 2012
Posts: 1,982
Received Thanks: 2,464
- Register script:
PHP Code:
// Process the POST data.
if(isset($_POST) && !empty($_POST)){
    
// Validate user name.
    
if(empty($username)){
        
$errors[] = 'Please provide a user name.';
    }else if(
strlen($username) < || strlen($username) > 16){
        
$errors[] = 'User name must be between 3 and 16 characters in length.';
    }else if(
ctype_alnum($username) === false){
        
$errors[] = 'User name must consist of numbers and letters only.';
    }else{
        
        
// Check if username already exists in the database.
        
$sql "SELECT szUserID FROM TGLOBAL_GSP.dbo.TACCOUNT WHERE szUserID = ?";
        
$stmt odbc_prepare($GLOBALS['dbConn'],$sql);
        
$args = array($username);
        if(!
odbc_execute($stmt,$args)){
            
$errors[] = 'Failed to determine if this username already exists in the database.';
        }elseif(
$row odbc_fetch_array($stmt)){
            
$errors[] = 'User name already exists, please choose a different user name.';
        }
    }
    
    
// Validate user password.
    
if(empty($password)){
        
$errors[] = 'Please provide a password.';
    }else if(
strlen($password) < || strlen($password) > 16){
        
$errors[] = 'Password must be between 3 and 16 characters in length.';
    }else if(
$password != $password2){
        
$errors[] = 'Passwords do not match.';
    }
    
    
// Validate reCAPTCHA.  This is to prevent someone botting account creation.
    
$response recaptcha_check_answer($recaptcha_private_key,$_SERVER['REMOTE_ADDR'],$_POST['recaptcha_challenge_field'],$_POST['recaptcha_response_field']);
    if(!
$response->is_valid){
        if(
$response->error == 'incorrect-captcha-sol'){
            
$errors['recaptcha'] = 'Incorrect answer to reCAPTCHA';
        }else{
            
$errors['recaptcha'] = $response->error;
        }
    }
    
    
// Persist the new account to the database if no previous errors occured.
    
if(count($errors) == 0){        
        
$Salt md5($password);        
        
$sql "INSERT INTO TGLOBAL_GSP.dbo.TACCOUNT
                (szUserID,szPasswd,bCheck)
                VALUES (?,'
$Salt',1)";
        
$stmt odbc_prepare($GLOBALS['dbConn'],$sql);
        
$args = array($username,$password,$user_ip);
        if(
odbc_execute($stmt,$args)){
            
$success htmlentities("Account {$username} successfully created!");
        }else{
            
// This means the insert statement is probably not valid for your database.  Fix the query or fix your database, your choice ;)
            
$errors[] = 'Failed to create a new account, please try again later';
        }
    }

Your script:

PHP Code:
// Process the POST data.
if(isset($_POST) && !empty($_POST)){
    
// Validate user name.
    
if(empty($username)){
        
$errors[] = 'Please provide a user name.';
    }else if(
strlen($username) < || strlen($username) > 16){
        
$errors[] = 'User name must be between 6 and 16 characters in length.';
    }else if(
ctype_alnum($username) === false){
        
$errors[] = 'User name must consist of numbers and letters only.';
    }else{
        
        
// Check if username already exists in the database.
        
$sql "SELECT szUserID FROM TGLOBAL_GSP.dbo.TACCOUNT WHERE szUserID = ?";
        
$stmt odbc_prepare($GLOBALS['dbConn'],$sql);
        
$args = array($username);
        if(!
odbc_execute($stmt,$args)){
            
$errors[] = 'Failed to determine if this username already exists in the database.';
        }elseif(
$row odbc_fetch_array($stmt)){
            
$errors[] = 'User name already exists, please choose a different user name.';
        }
    }
    
    
// Validate user password.
    
if(empty($password)){
        
$errors[] = 'Please provide a password.';
    }else if(
strlen($password) < || strlen($password) > 16){
        
$errors[] = 'Password must be between 6 and 16 characters in length.';
    }else if(
$password != $password2){
        
$errors[] = 'Passwords do not match.';
    }
        
    
// Persist the new account to the database if no previous errors occured.
    
if(count($errors) == 0){        
        
$Salt = ($password);        
        
$sql "INSERT INTO TGLOBAL_GSP.dbo.TACCOUNT
                ( szUserID,szPasswd,bCheck)
                VALUES (?,'
$Salt',1)";
        
$stmt odbc_prepare($GLOBALS['dbConn'],$sql);
        
$args = array($username,$password,$user_ip);
        if(
odbc_execute($stmt,$args)){
            
$success htmlentities("Account {$username} successfully created!");
        }else{
            
// This means the insert statement is probably not valid for your database.  Fix the query or fix your database, your choice ;)
            
$errors[] = 'Failed to create a new account, please try again later';
        }
    }

Weom is offline  
Old 01/31/2014, 21:33   #23
 
elite*gold: 0
Join Date: Oct 2010
Posts: 546
Received Thanks: 152
And the db ???
julianjl is offline  
Old 02/01/2014, 08:03   #24
 
elite*gold: 0
Join Date: Jan 2014
Posts: 258
Received Thanks: 152
Quote:
Originally Posted by julianjl View Post
And the db ???
Website not created by me.
I just I published to help people
TinLevin is offline  
Thanks
2 Users
Old 02/01/2014, 11:54   #25
 
elite*gold: 60
Join Date: Dec 2013
Posts: 287
Received Thanks: 108
Quote:
Originally Posted by TinLevin View Post
Don't is my work O.o
I just published to help people
.Arrogunz™ is offline  
Old 02/01/2014, 16:42   #26
 
Ib3s's Avatar
 
elite*gold: 0
Join Date: Jan 2014
Posts: 14
Received Thanks: 0
Quote:
Originally Posted by TinLevin View Post
Don't is my work O.o
I just published to help people
wow, such english
Ib3s is offline  
Old 02/03/2014, 11:03   #27
 
elite*gold: 0
Join Date: Jan 2014
Posts: 258
Received Thanks: 152
Quote:
Originally Posted by Ib3s View Post
wow, such english
what ?
TinLevin is offline  
Thanks
1 User
Reply

Tags
website


Similar Threads Similar Threads
[RELEASE] Marhet4S & Avalon 4S CMS
01/31/2014 - 4Story - 8 Replies
Hey, hier release ich 2. meiner CMS, die ihr für euren Privat Server benutzen könnt. Ihr müsst einfach die Config.php und die db.config.php bearbeiten, und eure MYSQL und SQL Server Daten dort eingeben. Um die Website auf eurem PC laufen zu lassen braucht ihr Wamp oder XAMPP. Wenn ihr fragen habt im Thread oder einfach eine PN. Download Marhet4S: klick mich hart *-* Download Avalon4S:Klick mich richtig hart *_* Bitte beachtet das diese CMS Lücken haben können! In der Marhet Seite ist im...
[RELEASE] Avalon Heroes HACK's AvaPwn's
12/18/2011 - General Gaming Releases - 19 Replies
I made this a while ago, and im only releasing the adventure and scenario mode hacks. ( hacking in battle mode is kinda lame -.- ) To avoid easy leeching: My in game name is Kilgorin now you should figure out what to change in the script. if you dont, you suck noob leecher.



All times are GMT +1. The time now is 04:47.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.