L2JMobius

Recent Posts

21
Here we are talking about several servers on one protocol... One login and several game servers on one version, not several logins and game servers :) then it is clear that separate acm panels will be needed :)
Yes of course, is only e tip
Quote
Yoooo... it started and now I'm going to test it. And I have a question?
Are all database tables now imported into the login? Or is something wrong?
I noticed that, only one table is inserted in gameserver, all the rest in loginserver...
22
Marketplace / Re: Essence Events
« Last post by Serenitty on April 22, 2024, 10:47:48 PM »
Hai, Added World Ranking Festival and Ranking Festival.
23
There was an error which I think I fixed with the latest commit. Try to update to the latest version.


Yoooo... it started and now I'm going to test it. And I have a question?
Are all database tables now imported into the login? Or is something wrong?


Now I see... when a server is selected, a table is automatically created in the game server :) have to test donate system...
24
I know it may seem obvious, but SEPARATE the loginserver and gameserver databases, for those who have just one server it's okay... there will be no way to use the system with 2 servers with the login tables inserted in both, so it's the tip. 8)
Well, after the tip, the ERROR
"Error updating Gameserver version file."  :'(

Here we are talking about several servers on one protocol... One login and several game servers on one version, not several logins and game servers :) then it is clear that separate acm panels will be needed :)
25
General Discussion / Re: Another one :(
« Last post by dramaa on April 22, 2024, 03:54:40 PM »
any idea how to make enchantable hair accessories?  :-\
26
General Discussion / Classic Seven Signs DailyMission
« Last post by midnight on April 22, 2024, 12:08:07 PM »
Hi, hope you are well guys, i'm trying to add this mission:
onedayreward_begin   id=254   reward_id=7   reward_name=[Daily Hunting (Lv. 20 or lower)]   reward_desc=[Receive it when you kill any 30 monsters. Monsters that are level 6 or lower than the character are not counted.]   

with this code:
   <reward id="254" reward_id="7" name="Daily Hunting (Lv. 20 or lower)" requiredCompletion="30" isOneTime="false">
      <!-- Receive it when you kill any 30 monsters. Monsters that are level 6 or lower than the character are not counted. -->
      <handler name="monster">
         <param name="minLevel">1</param>
         <param name="maxLevel">20</param>
      </handler>
      <items>
         <item id="29817" count="1" />
      </items>

but doens't work, someone knows why ? (It doesn't count when i kill a monster)
Kind regards!
Edit.
I add from the next game version the file MonsterDailyMissionHandler.java, and added DailyMissionMasterHandler.java the next lines:
import handlers.dailymissionhandlers.MonsterDailyMissionHandler;
DailyMissionHandler.getInstance().registerHandler("monster", MonsterDailyMissionHandler::new);

But ingame the number will go up by 1 only when the character level goes up by 1.
27
General Discussion / Re: Another one :(
« Last post by dramaa on April 22, 2024, 08:56:38 AM »
There are some items that also have the enchant option in the system, take a look

that's is the problem, i know hot to give it a grade in system but i dont know how to enable enchant :/
28
Knowledge Base / Re: [GUIDE] Install L2JMobius on Debian 10.
« Last post by Galagard on April 22, 2024, 08:41:20 AM »
Like that?




I noticed that GUI appears if i change one option in GameServerTask.sh
Code: [Select]
java -Djava.awt.headless=trueto FALSE (but Interface.ini needs to be configured to True)
29
I know it may seem obvious, but SEPARATE the loginserver and gameserver databases, for those who have just one server it's okay... there will be no way to use the system with 2 servers with the login tables inserted in both, so it's the tip. 8)
Well, after the tip, the ERROR
"Error updating Gameserver version file."  :'(
30
General Discussion / Re: ADD BUFFER
« Last post by the_coca_ on April 22, 2024, 02:48:22 AM »
Hi everyone,

I'm new and I don't know much about the commands,

Could someone make a video for how to add a simple buffer and gm shop to my server?

I ask for a video because that way I understand better!

Thank you!! ;D ;D

game\data\stats\npcs\custom SchemeBuffer

that is the buffer you just have to give it to //spawn (id of the npc)

and for the shop the easiest way is to enable the community board and in the npc custom file create a npc as an example:
 
   <npc id="900000" displayId="id of a npc for the skin" type="Folk" name="put name here" usingServerSideName="true" title="Merchant" usingServerSideTitle="true">

and you do the dialogue in html/default with the same number as your npc id in this case 900000

<html><body>%npcname%:<br>
Welcome adventurer! Do you have something for me? <br>
I have everything you need for your adventure, take a look.<br>
<button value="Merchant" action="bypass _bbstop;merchant/main.html" width=200 height=30 back="L2UI_CT1.OlympiadWnd_DF_BuyEquip_Down" fore="L2UI_CT1.OlympiadWnd_DF_BuyEquip">
</body></html>