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!

[Help] How add drop item in boss?

Newbie Spellweaver
Joined
May 23, 2017
Messages
70
Reaction score
9
Hi guys! I have a small server and I am not good with programation or edition about server, and I am here to request your help.

Before all, I want to thanks @UseresU and @yokohiro to help me all time and answer my questions here and on Discord. Thank you for help us and for your job here!

I have a lot of doubts to put here so I go begin, if someone can help me I will be greatefull.

1° How I use the command to open tower-sky?
Exemple: /sky_tower_open_state <tower_id> <type> <param>
what is or where I find <type> or <param> to put in command?


2° How can I add drop in bosses?
I want to add set drop on some bosses in game.

3° I have been tried add npc buff on server following Yokohiro tutorial but... when I try to login in game the channel show Offline server, someone knows how can I fix it?
 
Newbie Spellweaver
Joined
Apr 26, 2020
Messages
28
Reaction score
8
1. To Open Sky Tower, just change your server time to your ST Schedule. It usually at Saturday and Sunday 8PM to 10PM, but you still can't jump to each floor using /tpn command.

But if you are willing to test the specific floor, i have some trick to do that.
NOTE: This trick must not applied in Public Server, because the floor will not count up, so this is only for testing purpose.

Code:
701|天空之塔1F.世界外的世界|258|邊境調查團的存在是為了探索人類未知的世界,然而他們發現,有來自其他世界的文明,也在做著與他們相同的事。|F0021|F0022||60|150[COLOR=#ff0000]|7|[/COLOR]S701||S701S|S701S|bgm701|bgm701|bgm701|bgm701|1|||1|||||||||||||||||||40|59959|||400|||||Loading_701|||||||0|

Change 7 that i marked above to 3, it should look like this:
Code:
701|天空之塔1F.世界外的世界|258|邊境調查團的存在是為了探索人類未知的世界,然而他們發現,有來自其他世界的文明,也在做著與他們相同的事。|F0021|F0022||60|150[COLOR=#FF0000]|3|[/COLOR]S701||S701S|S701S|bgm701|bgm701|bgm701|bgm701|1|||1|||||||||||||||||||40|59959|||400|||||Loading_701|||||||0|

I dont really know what that means but it seems like:
7 is for Raid
3 is normal dungeon
1 is world map

Don't forget to revert it to 7 when you done testing.

2. To add drop item in boss is really easy.
First you need to know the boss ID, there are several ways to check the boss ID but the easiest one is checking it from AKDB.

1. In this example, i use Deep's Cavern (Solo), Argus boss.

Code:
https://www.aurakingdom-db.com/zone/104-deeps-cavern-solo
https://www.aurakingdom-db.com/npc/40756-abyss-behemoth-argus

As you can see above, the Argus boss ID is 40756.

2. Open S_DropItem.ini and search ID 40756

Code:
40756|<深淵之龍>巨獸‧阿古斯|52|100|319|6|2|0|100|10269|阿古斯的石心|2|20|12527|阿古斯的斷角|2|5|12461|阿古斯的王者之角|2|0.5|10979|精鑄配方:阿古斯的龍心|2|5|12570|LV50武器箱|2|30.5|13645|LV50防具箱|2|30.86|11032|無瑕的經驗秘石|3|5|13649|LV50未鑑定防具配方|2|2|61030|未鑑定的男性頭飾|2|0.01|61031|未鑑定的女性頭飾|2|0.01|61032|未鑑定的男性服飾|2|0.01|61033|未鑑定的女性服飾|2|0.01|11148|未鑑定的神秘披風|2|0.1|11049|源神之力|5|0.99|13715|未辨識的奧義‧戰術特色|2|0.01|||||||||||||||||||||

The pattern is |Item ID|Item Desc|Item Drop Count|Item Rate|.
Now lets add Serena's Key of Gaia and Pure XP Crystal as example:

Code:
40756|<深淵之龍>巨獸‧阿古斯|52|100|319|6|2|0|100|10269|阿古斯的石心|2|20|12527|阿古斯的斷角|2|5|12461|阿古斯的王者之角|2|0.5|10979|精鑄配方:阿古斯的龍心|2|5|12570|LV50武器箱|2|30.5|13645|LV50防具箱|2|30.86|11032|無瑕的經驗秘石|3|5|13649|LV50未鑑定防具配方|2|2|61030|未鑑定的男性頭飾|2|0.01|61031|未鑑定的女性頭飾|2|0.01|61032|未鑑定的男性服飾|2|0.01|61033|未鑑定的女性服飾|2|0.01|11148|未鑑定的神秘披風|2|0.1|11049|源神之力|5|0.99|13715|未辨識的奧義‧戰術特色|2|0.01[COLOR=#ff0000]|40218|Serena's Key of Gaia|1|0.2|11048|Pure XP Crystal|50|2|[/COLOR]||||||||||||
 
Newbie Spellweaver
Joined
May 23, 2017
Messages
70
Reaction score
9
Thank you for explain me @goodcccc I will try it when I got home. If I get some problem I post here.
 
Last edited:
Newbie Spellweaver
Joined
May 23, 2017
Messages
70
Reaction score
9
1. To Open Sky Tower, just change your server time to your ST Schedule. It usually at Saturday and Sunday 8PM to 10PM, but you still can't jump to each floor using /tpn command.

But if you are willing to test the specific floor, i have some trick to do that.
NOTE: This trick must not applied in Public Server, because the floor will not count up, so this is only for testing purpose.

Code:
701|天空之塔1F.世界外的世界|258|邊境調查團的存在是為了探索人類未知的世界,然而他們發現,有來自其他世界的文明,也在做著與他們相同的事。|F0021|F0022||60|150[COLOR=#ff0000]|7|[/COLOR]S701||S701S|S701S|bgm701|bgm701|bgm701|bgm701|1|||1|||||||||||||||||||40|59959|||400|||||Loading_701|||||||0|

Change 7 that i marked above to 3, it should look like this:
Code:
701|天空之塔1F.世界外的世界|258|邊境調查團的存在是為了探索人類未知的世界,然而他們發現,有來自其他世界的文明,也在做著與他們相同的事。|F0021|F0022||60|150[COLOR=#FF0000]|3|[/COLOR]S701||S701S|S701S|bgm701|bgm701|bgm701|bgm701|1|||1|||||||||||||||||||40|59959|||400|||||Loading_701|||||||0|

I dont really know what that means but it seems like:
7 is for Raid
3 is normal dungeon
1 is world map

Don't forget to revert it to 7 when you done testing.

2. To add drop item in boss is really easy.
First you need to know the boss ID, there are several ways to check the boss ID but the easiest one is checking it from AKDB.

1. In this example, i use Deep's Cavern (Solo), Argus boss.

Code:
https://www.aurakingdom-db.com/zone/104-deeps-cavern-solo
https://www.aurakingdom-db.com/npc/40756-abyss-behemoth-argus

As you can see above, the Argus boss ID is 40756.

2. Open S_DropItem.ini and search ID 40756

Code:
40756|<深淵之龍>巨獸‧阿古斯|52|100|319|6|2|0|100|10269|阿古斯的石心|2|20|12527|阿古斯的斷角|2|5|12461|阿古斯的王者之角|2|0.5|10979|精鑄配方:阿古斯的龍心|2|5|12570|LV50武器箱|2|30.5|13645|LV50防具箱|2|30.86|11032|無瑕的經驗秘石|3|5|13649|LV50未鑑定防具配方|2|2|61030|未鑑定的男性頭飾|2|0.01|61031|未鑑定的女性頭飾|2|0.01|61032|未鑑定的男性服飾|2|0.01|61033|未鑑定的女性服飾|2|0.01|11148|未鑑定的神秘披風|2|0.1|11049|源神之力|5|0.99|13715|未辨識的奧義‧戰術特色|2|0.01|||||||||||||||||||||

The pattern is |Item ID|Item Desc|Item Drop Count|Item Rate|.
Now lets add Serena's Key of Gaia and Pure XP Crystal as example:

Code:
40756|<深淵之龍>巨獸‧阿古斯|52|100|319|6|2|0|100|10269|阿古斯的石心|2|20|12527|阿古斯的斷角|2|5|12461|阿古斯的王者之角|2|0.5|10979|精鑄配方:阿古斯的龍心|2|5|12570|LV50武器箱|2|30.5|13645|LV50防具箱|2|30.86|11032|無瑕的經驗秘石|3|5|13649|LV50未鑑定防具配方|2|2|61030|未鑑定的男性頭飾|2|0.01|61031|未鑑定的女性頭飾|2|0.01|61032|未鑑定的男性服飾|2|0.01|61033|未鑑定的女性服飾|2|0.01|11148|未鑑定的神秘披風|2|0.1|11049|源神之力|5|0.99|13715|未辨識的奧義‧戰術特色|2|0.01[COLOR=#ff0000]|40218|Serena's Key of Gaia|1|0.2|11048|Pure XP Crystal|50|2|[/COLOR]||||||||||||


Hello @goodcccc so I tried add new drops in boss but when I start the server I got some errors and when I log in server the channel is "offline" I follow your tutorial like you show upside. I followed the parameters item like you said also.
 
Back
Top