Jump to content

Recommended Posts

Posted

Ok here u will be teached how to make a script  ;D

 

 

Rules of Scripting

 

This page contains a list of codes (syntax) used by the L2Walker and L2Superman scripting language. Before you begin, take a look of these very important rules of scripting.

Rules:

Rule 1: Always save as Unicode

When saving the file, use notepad and select Unicode for the encoding. Go to the tutorials section for more information.

Rule 2: Dont use Tabs

If you use tabs, your script will not function properly. Notice none of my scripts use tabs. This makes the script hard to read, but it has to be so.

Rule 3: Don't use spaces

Just like you can't use tabs, you can't use spaces, unless they are used to seperate words in comments, npc names, item names, or skill names. You may also use spaces in some of the control syntax, such as Call(), Jmp() or Label()

Rule 4: Conditions within conditions DON'T work

 

Something like this:

 

CharStatus(CHP,>=,1000)

{

Msg(Condition: Should Not Show 1)

CharStatus(CHP,>=,1000)

{

Msg(Condition: Should Not Show 2)

}

Msg(Condition: Should Not Show 3)

}

Will not work. The opening bracket { will seek the first closing bracket }. Code directly after the closing bracket will be executed. In this case, that would be the Msg(Condition: Should Not Show 3).

Note: Some of my older scripts (if not updated) use conditions within conditions. They should, however, work fine nevertheless. This is because the conditions are not necessary, but put in as a form of backup coding before I knew the information here. It is, in other words a backup feature that does not work :P

Control:

/

This is a comment. Its sole purpose is to mark sections code. Walker will ignore anything written after a comment, as long as it is on the same line. A comment could consist of a foreward slash /, several foreward slashes //////, or foreward slashes and any text beyond it ////[ East Guard ]////

 

Here are a few more examples:

Code

////[ How to use a comment 101 ]////

/This is a comment you can write anything here even this:

/Exit()

/the Exit() function above will do nothing at all.

/This is because there is a comment placed in front of it.

 

/This however will make your script exit:

Exit()/

/This is because the comment is placed after the code.

 

//////////You may use any number of foreward slashes

Delay()/<----[You may also use comments like this]

/if you do so, the the code before the comment will still work.

Call(Text)

Call() goes to a Label(), then upon the command Return() it returns back to where the Call() was placed. Take a look at this code for example:

CODE

Call(Test1)

Delay(1000)//1

Call(Test1)

Delay(1000)//2

Call(Test1)

Delay(1000)//3

Call(Test1)

Delay(1000)//4

 

EXIT()

 

Label(Test1)

Delay(2000)//Call1

Return()

 

The first Call(Test1) will jump to the Label(Test1), carry out the codes following it then return back to the first Call(Test1) once it hits Return().

 

It will then perform the Delay(1000)//1 function and continue to the second Call(Test1).

 

The second Call(Test1) will also jump to the Label(Test1) and perform the functions following but this time, upon the Return() code it will not return to the first Call(Test1) but to the second Call(Test1) and then perform the Delay(1000)//2 function.

 

This will continue to happen for each Call(Test1) and will return to that specific Call(Test1) upon the command Return()

 

If i had used Jmp() instead of Call(), the return would be ineffective, and the code would not return back to the Jmp() upon the Return() code. It would, rather, continue on with the scrip. In the case of the above script, it would end after the Delay(2000)//Call1 as there are no more effective codes following it.

 

I hope this explains it.

 

Try this script to see what i mean...then try replacing all the Call() code with Jmp() code and see what happens.

 

Delay(Milliseconds)

This will stop the script for the defined ammount of time. For example, Delay(2000) will stop the script for 2 seconds. 1000 milliseconds is 1 second.

Exit(Text)

This will terminate the script

 

GoHome(Text)

This function goes to town if you are dead. Does nothing if you are alive

 

Jmp(Text)

Refer to the Call() function found above

 

Label(Text)

Refer to the Call() function found above

 

Pause(Text)

This will pause the script indefinately. Press Continue on the script panel to continue to the script

 

Return()

Refer to the Call() function found above. The misconception about Return() is that it is used to restart the script, which it does not.

 

Say(Message)

This will display the message inside the brackets to the L2walker chat area. Other players CAN see the output of this script. If you were to write say(I am a bot!), you would be saying to other players "I am a bot!"

NPC Interaction:

Here is an example of NPC Commands:

CODE

LABEL(Wirphy)

NPCSEL(Wirphy)

DELAY(1000)

NPCDLG(Wirphy)

DELAY(1000)

DLGSEL(Quest)

DELAY(1000)

StrInDlg(Say you will help)

{

DLGSEL(Say you will help)

JMP(Wirphy)

}

StrNotInDlg(Say you will help)

{

DELAY(1000)

NPCDLG(Wirphy)

DELAY(1000)

DLGSEL(Go to another village)

DLGSEL(Go to another village)

DLGSEL(The Northeast Coast - 700 ??)

DELAY (30000)

}

 

 

DlgSel(Diologue)

Selects the defined dilogue in a diologue window

 

NPCDlg(NPCNAME[iD=#])

Enables diologue with the defined NPC

 

NPCSel(NPCNAME[iD=#])

Selects an NPC

 

StrInDlg(Diologue)

Looks for a certain string in the dilogue and if it exists performs functions withiin a mathematica brace { }. The brace MUST follow this statement for it to function correctly

 

StrNotInDlg(Diologue)

Looks for a certain strin in the dilogue and if it does not exists, the script will performs functions in a mathematica brace { }. a mathematica brace { } must follow the script.

BuyItem(ITEMNAME[iD=#],#;)

Buys Item. Must have the buy window open with the desired npc

 

BuySeed(SEEDNAME[iD=#],#;)

Buys seed. Must have the buy seed window open with the desired npc

 

LoadItem(ITEMNAME[iD=#],#;)

takes out the desired item from the warehouse. Withdraw window must be opened. Use semicolon ; to add other items. Here is an example:

CODE

LoadItem(Stem[iD=1864],50;Varnish[iD=1865],50)

This code will remove 50 stems and 50 varnish from the warehouse

 

SaveItem(ITEMNAME[iD=#],#;)

similar to the above, except that it will put items into the warehouse instead of take them out. Here is an example:

CODE

LABEL(Itemdeposit)

NPCSEL(Airy[iD=7522])

DELAY(1000)

NPCDLG(Airy[iD=7522])

DELAY(1000)

DLGSEL(Deposit Item (Private Warehouse))

DELAY(1000)

ITEMCOUNT(Stem[iD=1864],>,0)

{

SaveItem(Stem[iD=1864],9999)

CALL(Itemdeposit)

Delay(2000)

}

The first part of this script is not necessary. It selects the desired npc (in this case, Airy), and opens the "Deposit Item" window (see NPCs section below for more information). Similar to the above load item syntax, which removes 50 stems and 50 varnish, it will place 9999 stems (or all, if you don't have that many) into the warehouse.

SellItem(ITEMNAME[iD=#],#;)

Similar to the BuyItem(ITEMNAME [iD=#],#;) function. The buy window must be open with an NPC. This code will buy the desired items, provided that the NPC carries them and you have the required adena.

 

SellSeed(SEEDNAME[iD=#],#;)

Similar to the BuySeed() function, but it sells seeds instead

 

Character

I am not entirely familiar with the UseSkill syntax. When it comes to this section, I advise you use common sense.

UseSkill(NAME[iD=#],NPC,TARGETNAME)

This syntax is used to make your character cast a spell on an NPC target. The target name has to be specified.

UseSkill(NAME[iD=#],Party,TARGETNAME)

I am unfamiliar with the use of this syntax. If anyone knows, please email me.

UseSkill(NAME[iD=#],Pet,TARGETNAME)

UseSkill(NAME[iD=#],Player,TARGETNAME)

UseSkill(NAME[iD=#],Self,TARGETNAME)

ChangeWaitType(0|1)

Sets the character to either sit or stand. 0 = sit, 1 = stand.

 

UseItem(ITEMNAME [iD=#];)

Uses a desired item or items

Settings:

Set(DefPath,Add,x,y,z,radii)

This syntax adds a Path point to the Define PathPoint section (found on the Pathing tab) of l2walker.

Set(DefPath,Clear)

This syntax clears all path points

Set(DefRange,Add,x,y,z)

This syntax adds a point to the Define Range section of the Pathing tab in L2-Walker options.

Set(DefRange,CLEAR)

This syntax clears all Define Range positions

Set(FIGHTSTART)

This syntax enables fighting mode.

Set(FIGHTSTOP)

This syntax disables fighting mode

Set(Item,NoPick,NAME[iD=#])

This syntax sets a

Set(Item,Pick,NAME[iD=#])

Set(Item,Save,NAME[iD=#])

Set(L2Walker,Disable)

This syntax disables L2-Walker. Scripts still function when L2-Walker is disabled

Set(L2Walker,Enable)

This syntax enables L2-Walker. Scripts still function when L2-Walker is disabled

Set(Mon,Attack,NAME [iD=#])

This syntax sets the settings of a perticular monster (as defined by Name[iD=#]) to Attack. In other words, Walker will attack that perticular monster.

Set(Mon,AttackOne,NAME [iD=#])

This syntax sets the settings of a perticular monster (as defined by Name[iD=#]) to Attack alone. In other words, Walker will attack that perticular monster, but only if that monster is found to be by itself.

Set(Mon,NoAttack,NAME [iD=#])

This syntax sets the settings of a perticular monster (as defined by Name[iD=#]) to Not Attack. In other words, Walker will not attack that perticular monster, unless that monster initiates combat.

Set(RangeType,Defpath)

This syntax sets the perimiters of fighting to the Define Path Point mode.

Set(RangeType,DefPos,x,y,z,radii)

This syntax sets the perimiters of fighting to the Center of an x, y and z Point, with a radius as defined by the radii.

Set(RangeType,DefRange)

This syntax sets the perimiters of fighting to the Define Range mode.

Set(RangeType,RAnd)

This syntax sets the perimiters of fighting to the RAnd mode (what ever that does).

Set(RangeType,StartPos,radii)

This syntax sets the perimiters of fighting to the "Combat Begin Point is Center Point" mode with a radius as defined by radii.

Conditions:

CharStatus(CHP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Must be followed by a mathematical brace { }. This script is to be followed by a mathematical brace { }. This code will calculate the character's current HP value, and if the conditons >=|> |==|!=|<|<= satisfy the number to the right #, the script within the a mathematical brace { } will be executed .

CharStatus(CMP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it calculates the MP value. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(HP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it calculates the HP percenage. If it satisfies the conditions it will perform the script within the brackets { }.

CharStatus(LV,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it calculates the HP percenage. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(MP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it calculates the MP percenage. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(RACE,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it checks the character's race (by this, I assume they mean Class). If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(SP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first code of the CharStatus() seires, but it calculates the SP value. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(STAND,>=|>|==|!=|<|<=,0|1)

{

//code to be executed goes here

}

Similar to the first code of the CharStatus() sequence, but it checks wether or not the character is standing. 0 = sit, 1 = stand. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(WEIGHT,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first code of the CharStatus() sequence, but it calculates the weight value of the character's inventory. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

PosInRange(x,y,z,radii)

{

//code to be executed goes here

}

Must be followed by a mathematical brace { }. Checks wether or not the character is within the specified area (detirmened by the x, y and z axis as the epicenter of the location and the radius as the possible distance away from that location). If the character is found within this area, the code within the a mathematical brace { } is executed.

PosOutRange(x,y,z,radii)

{

//code to be executed goes here

}

Must be followed by a mathematical brace { }. Checks wether or not the character is within the specified area (detirmened by the x, y and z axis as the epicenter of the location and the radius as the possible distance away from that location). If the character is NOT found within this area, the code within the a mathematical brace { } is executed.

ItemCount(ITEMNAME[iD=#],>=|>|==|!=|<|<=,1)

{

//code to be executed goes here

}

This code is to be followedby a mathematical brace { }. Make sure both the open and close bracket is on a seperate line. This code Checks wether or not you have a certain ammount of items in your inventory (including what your character is equiped with) and if it satisfies the conditions it will perform the script within the a mathematical brace { }. Here is an example:

CODE

ITEMCOUNT(Wooden Arrow[iD=17],<=,20)

{

DELAY(1000)

Call(ToTown)

}

Operators:

{

//code to be executed goes here

}

Mathematical Brace . These are preceeded by a conditonal statement, such as a CharStatus() code. if the condition is satisfied, the code in the a mathematical brace will be executed. otherwise, it will be skipped. This is not to be used alone as a means of defining an object or a section of code. The opening and closing braces are to be each ALONE on a seperate line with no other characters or spaces preceeding and/or following it on that same line.

==

Equal to. Used in conditional statements

>

Greater Than. Used in conditional statements

>=

Greater Than or Equal To. Used in conditional statements

<

Less Than. Used in conditional statements

<=

Less Than, or Equal to. Used in conditional statements

!=

Not Equal to. Used in conditional statements

;

A semicolon seperates item names in many of the codes under the "Items" section. This lets you define more than one type of item to be stored, sold, bought, withdrawn in a single code. The example under the LoadItems() script, found above, shows how the semicolon would be used.

 

This guide it's not mine,i just found it in my pc and i share it.

Have fun  ;)

Posted

If you have written  this, cg! :)

Lain first read what i wrote ok?

 

This guide it's not mine,i just found it in my pc and i share it.

Have fun  ;)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • First of all do not use a demo template that is not even yours. Do not copy works, and do not sell my works claiming that it is your works. It has come to my knowledge that you are abusing customers by stealing from their panels and applying it to new customers. People are paying for those and you just re-sell them for your own advantage. https://l2-ragnarok.com/features page, is done by me. You stole the features page and sold it to someone else. You know exactly who it is. Now you are using my l2 template made for lokagamers, to showcase your panel and you have the audacity to change the copyrights to your own name. This is a website i made for lokagamers, remove everything you are using without owning the copyrights. https://demo.lin2web.com/login Stop selling things that are not your own. I dont understand why people like you think it's okay to act in this way.
    • Super responsive, clearly understood what I needed, and delivered everything on time — even going the extra mile with small details I hadn’t thought of. The CMS looks amazing and runs flawlessly on all devices. If you’re looking for reliable, skilled, and easy-to-work-with web devs, I 100% recommend him.
    • Hello guys, I’d like to introduce your audience to my original project, which has gained popularity in Europe and among the Russian-speaking community. I just never got around to posting about it here until now. At one point, I wanted to develop a launcher (game file downloader) in the browser, and that idea eventually evolved into a full-fledged CMS engine with extensive functionality. SphereWeb is a massive ecosystem for Lineage 2 JAVA servers, packed with everything a server administrator and players might need. From October 2024 to April 24, 2025, my project has been installed on 250 different domains. SphereWeb is your best choice — a modern web engine designed specifically for administrators of Lineage 2 Java game servers. It offers a rich and user-friendly interface for managing your server with ease. ✅ Player Control Panel – covers all player needs: Authorization, registration, password change, account linking and synchronization, contacting the admin via support system, teleporting a character (and sending items to warehouse) to a town, warehouse management (sending items in-game), and making server donations. ✅ Admin Control Panel – opens up new horizons, giving you access to: Extensive panel customization (more on this later) Donation history with charts News and page creation Stream management (add streams) Item shop creation Starter packs creation Bonus code generation XenForo news integration Email message settings Global activity log Traffic insights (track where your users come from) Extensions section (plugins – more on that later) Server management Auto software updates Tech support Custom translations Now, about the Control Panel settings: The standard settings are organized into several tabs: Language There are 5 available languages: Russian, English, Spanish, Portuguese, and Greek, covering 99% of translation needs. You can also set a default language for the panel.   Features Toggle built-in features of the control panel: News, Shop, Balance, Statistics, Support, Balance Transfer, Bonus Code, Streams, Data Emulation. Enable/disable options to keep the panel clean and focused on what you need. Captcha Support for Google reCAPTCHA, Cloudflare Turnstile, or default hCaptcha. Old-school recommendation: use Google reCAPTCHA v2. Fake Online Boosting Basic settings for boosting the online counter. Registration Settings Configuration options for the registration process. Email Connect your panel to an SMTP server. Misc General-purpose settings and adjustments. Template Choose and preview the design template for your landing page. Logo Upload your control panel logo and favicon. Palette Customize the color scheme of your control panel interface. Menu Add links to your site’s navigation menu. Background Upload high-resolution background images for login, registration, and password recovery pages. Notifications Set up Telegram notifications for selected events. In Sphere 2, I’ve paid special attention to plugins, making it easy to add and expand functionality. By default, the panel includes several built-in extensions (plugins).   Giveaway – allows you to host item giveaways for users directly on the website. Internal Forum – a built-in forum system inside the Control Panel (more details on it below). Launcher – a free solution for updating game files. It delivers unmatched speed and runs directly in the browser, allowing full design customization. Traders – (currently for Lucera2 only) displays a list of offline shops, their items, prices, and player locations directly on the website. Roulette – a fun game where users spin the wheel to win items. Item Editor – a tool for creating custom in-game items. Item Increase – tracks and displays item count by ID across the server in graph form, showing which players hold the most. Registration Statistics – a simple chart showing registration trends over time. SQL Collection – a plugin for adding or adjusting Java server builds if your current build isn’t supported or needs customization. ✅ Supported Java Server Builds The system currently supports a variety of popular Java server builds. Full list available in the admin panel. 🧩 Forum Plugin In the first version of Sphere, a basic internal forum was quite popular among server admins — so in Sphere 2, it came back better than ever. Inspired by XenForo, the forum is rich in features and designed for both community and solo players: Players can create clan communities to connect and play together. Clan creators can upload clan logos and header banners, customize text color for the clan name. Clan members can post on the public clan wall or chat in a dedicated clan chat. Clan logos and banners appear across the forum for all members. For players who like to show off: Under each username, the forum can display PvP/PK stats, in-game time, and character list. Players can choose to hide this data if they prefer privacy. Admins can assign moderator roles to users for specific forum sections, ensuring proper content management and community moderation.   💰 Donations & Rewards The administrator has a wide range of reward settings for player donations — almost every suggested method has been implemented: Cumulative discount system – discounts increase as the total donation amount grows. One-time bonus – an extra reward for a specific donation. Permanent shop discounts – based on the player's total donation history. One-time item shop discounts – also based on total donations. Item-based rewards – configurable rewards delivered automatically after donation. ✅ Supported Payment Systems (Current list is available in the admin panel and may vary by region.) 🔄 SphereWeb Auto-Update System Sphere is actively developed — I improve it almost daily. To ensure everyone stays updated, I’ve implemented multiple update methods: Automatic – once I push updates to GitHub, they are downloaded to Sphere clients within 5 minutes. Manual – if automatic updates are disabled or your site was offline during update release, you can trigger the update manually with one click. File Scanner – this feature scans your Sphere installation, compares files with the latest version, and shows missing or modified files you can restore. 📸 Control Panel Screenshots (Here you’d typically show screenshots or say where they can be found.)   💬 Final Words A lot of work has gone into this project. I occasionally post updates in the Sphere Telegram channel — when I don’t forget. I’m truly proud of the results. 🚀 Want to Install It? Before you rush in, please note: Installation won’t work on localhost. A valid SSL certificate is required. Repo: GitHub - Cannabytes/SphereWeb2 Upload the archive to your hosting. Open your website in the browser — the installer will guide you. ⚠️ Some Russian hosting providers block wide IP ranges, which may interfere with installation. 💸 Pricing Three usage plans available: Free – limited to 20 game account registrations per day. $12.5/month – no Sphere limitations. $20/month – no Sphere limitations + access to all commercial plugins. Your balance is shown in the admin panel, and you can renew access anytime. ✅ All users receive updates, regardless of subscription tier. A lot of work has been done, and from time to time I share updates in the Sphere Telegram channel — when I don’t forget. I’m truly proud of what I’ve built. Did you like it? Want to install it yourself? Please note — you won’t be able to install it on a local server. A valid SSL certificate is also required. Steps to install: Download the package from the GitHub repository: Cannabytes/SphereWeb2 Extract the archive on your hosting. Open your website in a browser — the installer will launch automatically. Just follow the instructions. 🔧 Minimum Requirements: PHP 8.2 MariaDB or MySQL 5.8 SSL certificate for your website   💵 Pricing SphereWeb offers 3 usage options: Free Plan – limited to 20 game account registrations per day. $12.5/month – no limitations, full access to Sphere features. 3. $20/month – no limitations + access to all commercial plugins. Your current balance is shown in the admin panel, and you can renew your license whenever you wish. Regardless of your plan, you will always receive updates. 🆕 Latest Updates: User Registration Source Tracking: Now, when a user registers, you can see where they came from before landing on the site via Telegram notifications. Bulk Deletion of Bonus Codes: Added functionality to bulk delete bonus codes for better management. Starter Pack Editor: A new editor for creating and managing starter packs is now available. Item Removal from Warehouse: Admins can now remove items from a user's warehouse. Server-Specific Settings: Each server now has a "Functions" button, providing additional customization options for each server. Warehouse Cleanup: Admins can now clear the warehouse for all users or by specific item ID. Custom Return Button: The "Return to Site" button can now be disabled, and you can set a custom link for it. Character List UI Overhaul: The character list in the admin panel has been redesigned to be more minimalist and user-friendly. User Info Page Improvements: The user information page has been enhanced for better navigation and access to key data. Donation History Updates: The donation history page has been improved for better data presentation. Item Stacking and Splitting: Users can now stack or split identical items (e.g., ID 57 (150) + ID 150 = ID 57 (300)). Admins can configure which items can be stacked and split. Account Deletion: Users now have the option to delete their own accounts from the account list. Success Chest Plugin: A new "Success Chest" plugin has been added, allowing admins to define chests with specific items, their prices, and visual parameters. Reworked Warehouse: The warehouse now operates in a separate modal window. When items are purchased, they are automatically added to the warehouse without page reloads. Registration Reward: Admins now have the ability to reward users for registration, adding more incentives. Item Stacking and Splitting Customization: Admins can now specify which items players can split and stack in their warehouse. These settings are available in the admin panel under the server's "Functions" button, offering granular control over item management. Account Deletion Feature: Players now have the ability to remove their accounts from the account list (but not from the server). In the future, this feature will be customizable for each server. Success Chest Plugin: A new "Success Chest" plugin has been added, allowing admins to define the items inside the chest. Players can then randomly draw one item from the chest. This feature is still in early testing, and any feedback or issues will be addressed in future updates. Improved Warehouse/Inventory: The warehouse/inventory system has been enhanced. Now, when items (such as starter packs or chests) are purchased, they are immediately added to the warehouse without requiring a page refresh. Additionally, the modal window for the warehouse now opens when the warehouse button is clicked with the mouse wheel. 😊 Log Sorting by Server: Logs now include the ability to sort by server, making it easier to manage and review data for each individual server. Registration Source Tracking: Telegram notifications now include information about where a user came from before registering on your site. Bulk Deletion of Bonus Codes: Admins can now bulk delete server-specific bonus codes, as well as bonus codes that were generated for all servers. Customizable Starter Packs: A new option has been added to modify and customize starter packs, giving more flexibility to server admins. Item Removal from Warehouse in Profile: Admins can now remove items from a user's warehouse directly from their profile. "Functions" Button in Admin Panel: A new "Functions" button has been added to the admin panel, offering additional tools for server management. This includes the ability to clear the server’s warehouse entirely or by specific item ID. Disabling the "Return to Site" Button: Under Admin Panel -> Settings -> Miscellaneous, there is now an option to disable the "Return to Site" button in the site menu
    • We are waiting you today at 8pm +3 GMT website: https://l2evo.net The patch will be available 30 min before the grand opening. Come join the best Interlude pvp server.  
  • Topics

×
×
  • Create New...