Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release]Player Painel + Admin Painel

Shh, quiet, you might piss somebody off
Developer
Joined
Dec 23, 2011
Messages
1,795
Reaction score
2,139
Some Functions

•Game Webshop - send items via email on game.
•Coin System - Players require gain coins to buy webshop items.
•Choice your Character to Buy the items
•Change Password - Running change password in 0x md5.
•Notices System - Insert via phpmyadmin ( or other ) a notice in Painel.
•Admin Painel - ADD coin, Game Gold, Add gm, remove GM, Add item to WebShop, Edit item in webshop, Add category and edit, See Players inventory.
•no requires iweb install.
•and someone functions

But i translate only for Portuguese language
Requires someone translate for english
And for portuguese no needs translations

Setting Up painel
Open the file config.php
Edit Connection to mysql running
Run 2 tables in paste SQL
If sql.sql no add in the table user the options mudev and money you needs add manually this columns

@edit
Setting up admin painel
Go to file config.php
Look this lines
$id1=32
$id2=48

change this numbers to id of account admin
example
zepekeno=1024
$id1=1024

you can add more accounts admin
$id3=##

•contacts
i have add a only contacte for me but you can modify
just needs to open the file contacts.php and edit the lines name icq skype email etc


to add news just need atribute id for notice
a date in stile 28/07/2012 and a notice in this next column

Well get link here

BR painel
Password to download and extract file: forum.ragezone.com

Painel translate by ladiladi85

;D
 
Last edited:
PW Dev <3
Joined
Feb 28, 2011
Messages
722
Reaction score
117
Some Functions

•Game Webshop - send items via email on game.
•Coin System - Players require gain coins to buy webshop items.
•Choice your Character to Buy the items
•Change Password - Running change password in 0x md5.
•Notices System - Insert via phpmyadmin ( or other ) a notice in Painel.
•Admin Painel - ADD coin, Game Gold, Add gm, remove GM, Add item to WebShop, Edit item in webshop, Add category and edit, See Players inventory.
•no requires iweb install.
•and someone functions

But i translate only for Portuguese language
Requires someone translate for english
And for portuguese no needs translations

Setting Up painel
Open the file config.php
Edit Connection to mysql running
Run 2 tables in paste SQL
If sql.sql no add in the table user the options mudev and money you needs add manually this columns

to add news just need atribute id for notice
a date in stile 28/07/2012 and a notice in this next column

Well get link here


Password to download and extract file: forum.ragezone.com

;D

Did you write this?
 
Junior Spellweaver
Joined
Mar 2, 2011
Messages
187
Reaction score
22
Hmm tryed this script to see what is about but for some reason it doesnt let me login with old users , and the ones created from register.php of this script dont work in pw...
i looked at the database and found out that the passwords are somehow saved differently tought the code used is the same as the old script i was using before...
Here a screen of what i changed and the password thing i was talking about

P.S. the last 3 are the users created with this script the rest are from the old one
 
Last edited:
Shh, quiet, you might piss somebody off
Developer
Joined
Dec 23, 2011
Messages
1,795
Reaction score
2,139
Hmm tryed this script to see what is about but for some reason it doesnt let me login with old users , and the ones created from register.php of this script dont work in pw...
i looked at the database and found out that the passwords are somehow saved differently tought the code used is the same as the old script i was using before...
Here a screen of what i changed and the password thing i was talking about

P.S. the last 3 are the users created with this script the rest are from the old one
this painel its for 1.45 original server with no modifications in authd
i use authd 1.45 original ( My_Authd in files ) and all functions are okay
the original logins protocols use this passwd style

0xMD5

look a example of my db
Bola - [Release]Player Painel + Admin Painel - RaGEZONE Forums


ptmpm - [Release]Player Painel + Admin Painel - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Feb 9, 2012
Messages
36
Reaction score
1
I can't log in to the Panel. Im using the 1.4.4 files, can any tell me what is wrong?
i run the sql scripts they are good. But
/index.php?act=login&do=auth

What is the problem ?

thanks
 
Junior Spellweaver
Joined
Apr 9, 2012
Messages
120
Reaction score
36
i think this one not work for 1.4.4 olds account but new register from this script will work but not work some info
 
Initiate Mage
Joined
Feb 9, 2012
Messages
36
Reaction score
1
Ahham.. youre right, and any idea how can i add the old players to the panel?

* MODD:
When i register with the panel, the client say: "Incorrect accout name or password", but its ok. Any idea?
 
Joined
Sep 29, 2009
Messages
1,563
Reaction score
321
as I said ADMZePekeno they are 2 different register methods available on ragezone ... if you release your script 4 all you need to support the 2 different passwd styles ... [ #7 ]
 
Robb
Member
Joined
Jan 22, 2009
Messages
1,224
Reaction score
465
Actually the original password system is where you have them in a binary dump, not raw md5 strings.

The bit that changes it is if you have Call adduser('blah','$password','blah'....); or Call adduser('blah',$password,'blah'....);
the 0x is a command to import the MD5 hash in as hex bytes and save it in binary form, but if you put 's around it then it will ignore the command and input the hash as a string.
 
Joined
Feb 8, 2010
Messages
711
Reaction score
361
Old method is so ...ugly :(

Who came up with dumping a hash into a VARCHAR field? Why not make it nice and formatted string? That's pretty much first thing I changed in adduser and aquireuserpasswd mysql procedures.
 
Initiate Mage
Joined
Feb 9, 2012
Messages
36
Reaction score
1
i got it to work with the old way encrypted passwords
instead of:
$password = "0x".md5($login.$password);
put:
$password = md5($login.$password, true);
and it should work

it's not solved the problem any other idea?

*Solved

ADMZePekeno!

I tried youre Authd, but when i started the server, the client say "server network error" Why?
 
Last edited:
Back
Top