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!

Lucidsoft - User Panel

Junior Spellweaver
Joined
Sep 16, 2009
Messages
137
Reaction score
103
Sedrika - Lucidsoft - User Panel - RaGEZONE Forums

(Thanks to Rayzen for this image)

Hello RazeZoner,

In this Topic i want to share my User Panel with you. This is not a Web Application. It's a Tool but it is working with PHP for all requests and PHP -> SQL.

This UserPanel is coded to manage the account and the characters from the user.

The Following features are included:
- For everyone:
  • Exp | Drop | Penya display
  • User Online | Peak counter
  • Online Staff List
  • GuildTime is resetable
  • Change Account Password
  • Multilangual ( English and German )
  • View Cash Count
  • Including a Cash Shop (image below)
  • A character viewer to view 19 information about the Character and an Inventory viewer to view the current inventory from the user
  • Inventory Bag Viewer
  • Character Bank Viewer
  • Bug Report function with two cathegories
  • Delete Items via Inventory Viewer
  • Get Buffed via Panel
  • User Chat to chat with the other gamer

- For Staff Member
  • Bug Report Viewer

- For Administrator
  • Account Maintenance mode via Character name
  • Add or Remove Cash Points from an Account
  • Ban an Account via Account name or Character name
  • Delete character from other players
  • Ban user from chat ( that will ban the whole account for the chat )

To create a connection to the Panel you have to open the panel.ini in the client and write there the panel link.
For Example:
[Settings]
PanelRoot=http://lucidsoft.de/panel
If you don't add a / after the link it's not a problem. The Panel adds there one.

Server Owners are on the safe side because they only have to edit the config.php which you can find in the inc folder.

PHP:
    /********************************************
    *            Lucidsoft User Panel           *
    *           Script by Sedrika © 2011        *
    ********************************************/

    // Defining MSSQL Data
    define(MSSQL_DSN, 'SADETTIN-VAIO\SQLEXPRESS');
    define(MSSQL_USER, '');
    define(MSSQL_PASS, '');
    
    // Connecting to MSSQL (ODBC)
    $mssql = odbc_connect('Driver={SQL Server};Server='.MSSQL_DSN.';', MSSQL_USER, MSSQL_PASS);
    
    // DON'T CHANGE
    $version = '1.7';    // Panel Version
    
    // Panel Settings
    $usepanel    = 1;            // Use Panel (1 = On, 0 = Off)
    $exp    = 1250;             // Experience
    $drop    = 1000;             // Drop
    $penya    = 750;                 // Penya
    $bancheck = 1;                // Block User Panel if account is banned (1 = On, 0 = Off)
    $blockwartung = 1;            // Block User Panel if account is in maintenance (1 = On, 0 = Off)
    $allowpwchange = 1;            //Allow user to change there password via panel (1 = On, 0 = Off)
    $MaxPWChangePerDay = 1;        // How often you are allowed to change your password per day
    $wpass = "test";            // Maintenance Password
    $pwhash = "kikugalanet";    // Password Hash
    $dlang = "english";            // Default panel language ("german", "english")
    
    // Admin Panel
    $BanViaPanel = 1;            // Allow to ban via Panel (1 = On, 0 = Off)
    $BanSuperAdmin = 1;            // Only a Super Admin can bann accounts via Panel (1 = On, 0 = Off)
    $DeleteCharacter = 1;        // Allow to delete character via Panel (1 = On, 0 = Off)
    $DeleteSuperAdmin = 1;        // Only a Super Admin can delete character (1 = On, 0 = Off)
    
    // Character Viewer
    $AllowBuff = 1;                // Allow user to buff via Panel (1 = On, 0 = Off)
    $RMBuff = 1;                // Add Ringmaster buffs (1 = On, 0 = Off)
    $BuffTime = 60;                // Buff Time in Minutes
    
    // Inventory
    $DeleteItem = 1;            // Allow user to delete Items from the character via Panel (1 = On, 0 = Off)
    
    // Item Shop Settings
    $use_item_shop  = 1;                        // Use Item Shop (1 = On, 0 = Off)
    $Use_AddBill = 1;                            // Use AddBill function (1 = On, 0 = Off)
    $AddBill_Port = 27507;                        // AddBill Port
    $AddBill_Pass = "8b8d0c753894b008ce426b2e";    // OnBuyingInfo Password
    
    // Server Status
    $Port_Cert = 8855;            // Certifier Port
    $Port_Login = 11356;        // Login Server Port
    $Port_World1 = 8248;        // World Server 1 Port
    $Port_World2 = 0;            // World Server 2 Port ( Port 0 = Off )
    $Port_World3 = 0;            // World Server 3 Port ( Port 0 = Off )
    $Port_World4 = 0;            // World Server 4 Port ( Port 0 = Off )
    
    // Staff Member
    $staff_cnt = 2;        // How much staff member yougot
    
    // Staff Member Names
    function GetStaffName($cnt){
        $staff = array( 0 => "Sedrika",
                        1 => "Michael"    );
        return $staff[$cnt];
    }
    
    // Staff Auth
    $user_0 = "F"; // Normal User
    $user_1 = "J"; // Supporter
    $user_2 = "L"; // Game Master
    $user_3 = "M"; // Game Master
    $user_4 = "N"; // Head Game Master
    $user_5 = "O"; // Operator
    $user_6 = "P"; // Developer
    $user_7 = "R"; // Admin
    $user_8 = "Z"; // Super Admin

Please don't change the Panel Version.

Here are some Pictures:

Sedrika - Lucidsoft - User Panel - RaGEZONE Forums

Sedrika - Lucidsoft - User Panel - RaGEZONE Forums

Sedrika - Lucidsoft - User Panel - RaGEZONE Forums

Sedrika - Lucidsoft - User Panel - RaGEZONE Forums


Additional Information:
This tool is crypted to hide the source code from reflectors
and there are no backdoors every request is serversided.

If you want to flame or something like this please leave this thread without any comment.

If you have any suggestions please write them here.


 
Junior Spellweaver
Joined
Sep 16, 2009
Messages
137
Reaction score
103
Actually not but i can add it to the admin panel.

Edit:
Forgot to write if you wan't to open the character viewer just click on the characters name.
 
Joined
Oct 6, 2008
Messages
471
Reaction score
73
Actually not but i can add it to the admin panel.

Edit:
Forgot to write if you wan't to open the character viewer just click on the characters name.

That would be awesome if you could add it to the admin panel. The ability to check inventory, bags, and bank items would make it one of the best public CP's ever if not the best
 
Last edited:
Junior Spellweaver
Joined
Sep 16, 2009
Messages
137
Reaction score
103
Thanks you.
I saw many UP's and all web based by mine is a tool because im failing at php xD
And as a tool i can simply code tabs like offi and form designs.
 
Newbie Spellweaver
Joined
Sep 6, 2011
Messages
57
Reaction score
0
HAHA, wow this seems awesome but how do i install it or set it up'
yes i know i am a complete leecher,noob or whatever. you say what you want, i just want to know ^-^
 
Not working on UnitedFlyf
Loyal Member
Joined
Apr 21, 2009
Messages
1,385
Reaction score
934
That would be awesome if you could add it to the admin panel. The ability to check inventory, bags, and bank items would make it one of the best public CP's ever if not the best

EoCRM already does this and is 100% public with source code available.
 
Custom Title Activated
Loyal Member
Joined
Sep 9, 2008
Messages
1,949
Reaction score
390
variety is the spice of life. lol
 
Not working on UnitedFlyf
Loyal Member
Joined
Apr 21, 2009
Messages
1,385
Reaction score
934
variety is the spice of life. lol

I'm just saying it's not automatically "the best CP ever" if it has a feature already available.

Also, no release here should be trusted in the slightest. It's incredibly easy to make a FUD(fully undetectable) trojan/virus/backdoor especially when it connects to a server.

Considering I've seen a "Lucidsoft antihack" which was proven to be a trojan to infect players, I wouldn't use this application if it was the most amazing program I'd ever seen.
 
Junior Spellweaver
Joined
Sep 16, 2009
Messages
137
Reaction score
103
I used to Crypt it MPRESS v2.18.

I can put a non compressed version of it.

<- File


And now you cant say there is any virus. If you don't trust download mpress and crypt this non crypted version by yourself and check it via virustotal ----
 
We are Maverick!
Loyal Member
Joined
Feb 27, 2009
Messages
2,915
Reaction score
1,000
I used to Crypt it MPRESS v2.18.

I can put a non compressed version of it.

<- File


And now you cant say there is any virus. If you don't trust download mpress and crypt this non crypted version by yourself and check it via virustotal ----

Reupload the panel.
 
MC Web Designs
Joined
Oct 28, 2010
Messages
888
Reaction score
111
Awsome project, love it. Would be awsome if someone developed a system for admin/staff to change everything about players, like you could change thier names, add/take away the penya, give items ect ect. I know some(Most) can be done with PHP, but like it said, it would be awsome. :)
 
Newbie Spellweaver
Joined
Feb 15, 2012
Messages
95
Reaction score
12
I'm sorry to bump something so old, but from what I see here there's tools that are extreamly handy. Does anyone happen to have the files still? Since all the links are zapped, was hoping to ask about em. Hate to see som'in this useful vanish.
 
Experienced Elementalist
Joined
Feb 2, 2012
Messages
241
Reaction score
17
Wow, this is an amazing project.
can somebody reupload the files in other file hosting sites?

i cant download from uploaded.to
 
Back
Top