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!

[Script] Inferno City

Newbie Spellweaver
Joined
Mar 9, 2020
Messages
64
Reaction score
18
Hello everyone, a very little share here. Looks like no one's gonna share it so here it is.
This is not the original but a modified Union Bank script.

[UPDATED]


Like a patch, just extract or merge the data folder to your client/server folder.

What's new:
1. Buff rewards by kills
How it works: Just like the original, kill specific numbers of mobs and get them buffs.

500 Kills - Defense Reinforcement
1000 Kills - Attack Reinforcement
1500 Kills - Attack Speed Increase
3000 Kills - Skill Delay Decrease
5000 Kills - Gold Drop Rate Increase
10000 Kills - Item Drop Rate Increase

2. Working quest (Sketchy Grocer - Blazed Curiousity - Collect 100 Inferno Crystal)

[Note] If you don't have:
QUEST_2382.qst (quest.lst)
npc_premium_lavacity.ntk (gametalk.dat)
-Just use the provided quest files
OR create your own and use the files i've provided as your reference.

3. Lev, wld, and mmp files have been added.

[Note] Check your mapslist.luc and make sure the map entry 82 is for inferno city (premium_lavacity_instance.Lev) and it's a new instance map (nInstantMap = 2).

Also make sure the Inferno Crystal (IN_106_158) and Grocer's Treasure (IN_117_258) are listed on your item.isf.

Bonus files - Must add to glogic.rcc:
-Genitem files
-Crowsale file (For Sketchy Grocer)

mateo13 - [Script] Inferno City - RaGEZONE Forums

|
mateo13 - [Script] Inferno City - RaGEZONE Forums
 
Last edited:
Newbie Spellweaver
Joined
Oct 20, 2011
Messages
75
Reaction score
10
1.No kill count
Write your code collect point when mob died.
2.No buffs by kills
Write your code for make condition when kill mobs amount ... then get buff.
3.Sketchy Grocer's quest - Game freeze when clicking on "ask after him"
Maybe you dont have quest.
 
Newbie Spellweaver
Joined
Mar 9, 2020
Messages
64
Reaction score
18
1.No kill count
Write your code collect point when mob died.
2.No buffs by kills
Write your code for make condition when kill mobs amount ... then get buff.
3.Sketchy Grocer's quest - Game freeze when clicking on "ask after him"
Maybe you dont have quest.

Thanks for the tip! I saw your demo and it's a wow. You're really good at making these scripts tbh.

Anyways i have figured out what causing the freeze, it was the reward item Grocer's treasure - it was missing on my item.isf.
So then i copied one and the quest is now working.

For the buffs maybe i'll just copy or modify what's in Union Bank script.

I'll update the files later.
 
Newbie Spellweaver
Joined
Mar 9, 2020
Messages
64
Reaction score
18
[Final Update]
Like the original:
-Solo Dungeon
-All 6 buffs
Kindly read the original post for more information.

-Added wld and mmp files as requested.
 
Junior Spellweaver
Joined
Dec 16, 2013
Messages
158
Reaction score
7
erm sir ~ mateo 1st i thanks you for ur sharing~ but my level editor cant open ur lev and wld i don know why @@ im using juver level~
 
Newbie Spellweaver
Joined
Mar 9, 2020
Messages
64
Reaction score
18
erm sir ~ mateo 1st i thanks you for ur sharing~ but my level editor cant open ur lev and wld i don know why @@ im using juver level~

Then they are not supported by juver files.
 

jsz

Newbie Spellweaver
Joined
Mar 6, 2021
Messages
14
Reaction score
7
Hello everyone, a very little share here. Looks like no one's gonna share it so here it is.
This is not the original but a modified Union Bank script.

[UPDATED]


Like a patch, just extract or merge the data folder to your client/server folder.

What's new:
1. Buff rewards by kills
How it works: Just like the original, kill specific numbers of mobs and get them buffs.

500 Kills - Defense Reinforcement
1000 Kills - Attack Reinforcement
1500 Kills - Attack Speed Increase
3000 Kills - Skill Delay Decrease
5000 Kills - Gold Drop Rate Increase
10000 Kills - Item Drop Rate Increase

2. Working quest (Sketchy Grocer - Blazed Curiousity - Collect 100 Inferno Crystal)

[Note] If you don't have:
QUEST_2382.qst (quest.lst)
npc_premium_lavacity.ntk (gametalk.dat)
-Just use the provided quest files
OR create your own and use the files i've provided as your reference.

3. Lev, wld, and mmp files have been added.

[Note] Check your mapslist.luc and make sure the map entry 82 is for inferno city (premium_lavacity_instance.Lev) and it's a new instance map (nInstantMap = 2).

Also make sure the Inferno Crystal (IN_106_158) and Grocer's Treasure (IN_117_258) are listed on your item.isf.

Bonus files - Must add to glogic.rcc:
-Genitem files
-Crowsale file (For Sketchy Grocer)

mateo13 - [Script] Inferno City - RaGEZONE Forums

|
mateo13 - [Script] Inferno City - RaGEZONE Forums

- Just want to share/add a workaround kill counter

PHP:
Add this line to function EventDie just before the return.

 PrintSimpleXMLMsgAll(5, {"PREMIUM_MAP_SYSTEM_MESSAGE", 6, MobCount}, COLOR_WHITE); //Find PREMIUM_MAP_SYSTEM_MESSAGE in gameintext.xml


add this line:
<VALUE Lang="GS" Index="6">Kills: %1%</VALUE>

see it in action -->

hth!
 
Last edited:
Banned
Banned
Joined
Sep 5, 2011
Messages
411
Reaction score
10
- Just want to share/add a workaround kill counter

PHP:
Add this line to function EventDie just before the return.

 PrintSimpleXMLMsgAll(5, {"PREMIUM_MAP_SYSTEM_MESSAGE", 6, MobCount}, COLOR_WHITE); //Find PREMIUM_MAP_SYSTEM_MESSAGE in gameintext.xml


add this line:
<VALUE Lang="GS" Index="6">Kills: %1%</VALUE>

see it in action -->

hth!

hi sir can you teach us how to enable all macro options? thanks in advance..
 
Newbie Spellweaver
Joined
Mar 9, 2020
Messages
64
Reaction score
18
- Just want to share/add a workaround kill counter

PHP:
Add this line to function EventDie just before the return.

 PrintSimpleXMLMsgAll(5, {"PREMIUM_MAP_SYSTEM_MESSAGE", 6, MobCount}, COLOR_WHITE); //Find PREMIUM_MAP_SYSTEM_MESSAGE in gameintext.xml


add this line:
<VALUE Lang="GS" Index="6">Kills: %1%</VALUE>

see it in action -->

hth!

Made it better. Thanks a lot bro!
 
  • Like
Reactions: jsz
Newbie Spellweaver
Joined
Feb 14, 2022
Messages
21
Reaction score
0
can update link download back?
map inferno city and
quest2382.qst
 
Back
Top