Master Class Chapter 3 branch.
This commit is contained in:
3
L2J_Mobius_10.3_MasterClass/dist/game/GameServer.sh
vendored
Normal file
3
L2J_Mobius_10.3_MasterClass/dist/game/GameServer.sh
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
#! /bin/sh
|
||||
|
||||
./GameServerTask.sh &
|
49
L2J_Mobius_10.3_MasterClass/dist/game/GameServer.vbs
vendored
Normal file
49
L2J_Mobius_10.3_MasterClass/dist/game/GameServer.vbs
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
'Get Java path.
|
||||
Dim path
|
||||
Set shell = WScript.CreateObject("WScript.Shell")
|
||||
path = shell.Environment.Item("JAVA_HOME")
|
||||
If path = "" Then
|
||||
MsgBox "Could not find JAVA_HOME environment variable!", vbOKOnly, "Game Server"
|
||||
Else
|
||||
If InStr(path, "\bin") = 0 Then
|
||||
path = path + "\bin\"
|
||||
Else
|
||||
path = path + "\"
|
||||
End If
|
||||
path = Replace(path, "\\", "\")
|
||||
path = Replace(path, "Program Files", "Progra~1")
|
||||
End If
|
||||
|
||||
'Load java.cfg parameters.
|
||||
Dim parameters
|
||||
Set file = CreateObject("Scripting.FileSystemObject").OpenTextFile("java.cfg", 1)
|
||||
parameters = file.ReadLine()
|
||||
file.Close
|
||||
Set file = Nothing
|
||||
|
||||
'Load GUI configuration.
|
||||
window = 1
|
||||
Set file = CreateObject("Scripting.FileSystemObject").OpenTextFile("config\Interface.ini", 1)
|
||||
Do While Not file.AtEndOfStream
|
||||
If Replace(LCase(file.ReadLine()), " ", "") = "enablegui=true" Then
|
||||
window = 0
|
||||
Exit Do
|
||||
End If
|
||||
Loop
|
||||
file.Close
|
||||
Set file = Nothing
|
||||
|
||||
'Generate command.
|
||||
command = path & "java " & parameters & " -jar ../libs/GameServer.jar"
|
||||
If window = 1 Then
|
||||
command = "cmd /c start ""L2J Mobius - Game Server Console"" " & command
|
||||
End If
|
||||
|
||||
'Run the server.
|
||||
exitcode = 0
|
||||
Do
|
||||
exitcode = shell.Run(command, window, True)
|
||||
If exitcode <> 0 And exitcode <> 2 Then '0 Terminated - 2 Restarted
|
||||
MsgBox "Game Server terminated abnormally!", vbOKOnly, "Game Server"
|
||||
End If
|
||||
Loop While exitcode = 2
|
14
L2J_Mobius_10.3_MasterClass/dist/game/GameServerTask.sh
vendored
Normal file
14
L2J_Mobius_10.3_MasterClass/dist/game/GameServerTask.sh
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
# exit codes of GameServer:
|
||||
# 0 normal shutdown
|
||||
# 2 reboot attempt
|
||||
|
||||
while :; do
|
||||
[ -f log/java0.log.0 ] && mv log/java0.log.0 "log/`date +%Y-%m-%d_%H-%M-%S`_java.log"
|
||||
[ -f log/stdout.log ] && mv log/stdout.log "log/`date +%Y-%m-%d_%H-%M-%S`_stdout.log"
|
||||
java -Djava.awt.headless=true $(cat "java.cfg") -jar ../libs/GameServer.jar > log/stdout.log 2>&1
|
||||
[ $? -ne 2 ] && break
|
||||
# /etc/init.d/mysql restart
|
||||
sleep 10
|
||||
done
|
14
L2J_Mobius_10.3_MasterClass/dist/game/config/AccessLevels.xml
vendored
Normal file
14
L2J_Mobius_10.3_MasterClass/dist/game/config/AccessLevels.xml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/AccessLevels.xsd">
|
||||
<!-- Access levels -->
|
||||
<access level="-1" name="Banned" nameColor="FFFFFF" titleColor="ECF9A2" isGM="false" allowPeaceAttack="false" allowFixedRes="false" allowTransaction="false" allowAltg="false" giveDamage="false" takeAggro="false" gainExp="false" />
|
||||
<access level="0" name="User" nameColor="FFFFFF" titleColor="ECF9A2" childAccess="0" isGM="false" allowPeaceAttack="false" allowFixedRes="false" allowTransaction="true" allowAltg="false" giveDamage="true" takeAggro="true" gainExp="true" />
|
||||
<access level="10" name="Chat Moderator" nameColor="FFFFFF" titleColor="ECF9A2" childAccess="0" isGM="false" allowPeaceAttack="false" allowFixedRes="false" allowTransaction="true" allowAltg="false" giveDamage="true" takeAggro="true" gainExp="true" />
|
||||
<access level="20" name="Test GM" nameColor="FFFFFF" titleColor="ECF9A2" childAccess="10" isGM="false" allowPeaceAttack="false" allowFixedRes="true" allowTransaction="false" allowAltg="true" giveDamage="false" takeAggro="false" gainExp="false" />
|
||||
<access level="30" name="General GM" nameColor="0000C0" titleColor="0000C0" childAccess="20" isGM="false" allowPeaceAttack="false" allowFixedRes="true" allowTransaction="false" allowAltg="true" giveDamage="false" takeAggro="false" gainExp="false" />
|
||||
<access level="40" name="Support GM" nameColor="000C00" titleColor="000C00" childAccess="30" isGM="false" allowPeaceAttack="false" allowFixedRes="true" allowTransaction="false" allowAltg="true" giveDamage="false" takeAggro="false" gainExp="false" />
|
||||
<access level="50" name="Event GM" nameColor="00C000" titleColor="00C000" childAccess="40" isGM="false" allowPeaceAttack="false" allowFixedRes="true" allowTransaction="false" allowAltg="true" giveDamage="false" takeAggro="false" gainExp="false" />
|
||||
<access level="60" name="Head GM" nameColor="0C0000" titleColor="0C0000" childAccess="50" isGM="false" allowPeaceAttack="false" allowFixedRes="true" allowTransaction="true" allowAltg="true" giveDamage="true" takeAggro="true" gainExp="true" />
|
||||
<access level="70" name="Admin" nameColor="0FF000" titleColor="0FF000" childAccess="60" isGM="true" allowPeaceAttack="true" allowFixedRes="true" allowTransaction="true" allowAltg="true" giveDamage="true" takeAggro="true" gainExp="true" />
|
||||
<access level="100" name="Master" nameColor="00CCFF" titleColor="00CCFF" childAccess="70" isGM="true" allowPeaceAttack="true" allowFixedRes="true" allowTransaction="true" allowAltg="true" giveDamage="true" takeAggro="true" gainExp="true" />
|
||||
</list>
|
638
L2J_Mobius_10.3_MasterClass/dist/game/config/AdminCommands.xml
vendored
Normal file
638
L2J_Mobius_10.3_MasterClass/dist/game/config/AdminCommands.xml
vendored
Normal file
@@ -0,0 +1,638 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/AdminCommands.xsd">
|
||||
<!-- ADMIN COND EXCEPTIONS -->
|
||||
<admin command="admin_exceptions" accessLevel="100" />
|
||||
<admin command="admin_set_exception" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN ADMIN -->
|
||||
<admin command="admin_admin" accessLevel="100" />
|
||||
<admin command="admin_admin1" accessLevel="100" />
|
||||
<admin command="admin_admin2" accessLevel="100" />
|
||||
<admin command="admin_admin3" accessLevel="100" />
|
||||
<admin command="admin_admin4" accessLevel="100" />
|
||||
<admin command="admin_admin5" accessLevel="100" />
|
||||
<admin command="admin_admin6" accessLevel="100" />
|
||||
<admin command="admin_admin7" accessLevel="100" />
|
||||
<admin command="admin_gmliston" accessLevel="100" />
|
||||
<admin command="admin_gmlistoff" accessLevel="100" />
|
||||
<admin command="admin_silence" accessLevel="100" />
|
||||
<admin command="admin_diet" accessLevel="100" />
|
||||
<admin command="admin_tradeoff" accessLevel="100" />
|
||||
<admin command="admin_set_mod" accessLevel="100" />
|
||||
<admin command="admin_saveolymp" accessLevel="100" />
|
||||
<admin command="admin_sethero" accessLevel="100" />
|
||||
<admin command="admin_settruehero" accessLevel="100" />
|
||||
<admin command="admin_givehero" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_endolympiad" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_setconfig" accessLevel="100" />
|
||||
<admin command="admin_config_server" accessLevel="100" />
|
||||
<admin command="admin_gmon" accessLevel="100" />
|
||||
<admin command="admin_worldchat" accessLevel="100" />
|
||||
<admin command="admin_zones" accessLevel="100" />
|
||||
<admin command="admin_pointpicking" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN ANNOUNCEMENTS -->
|
||||
<admin command="admin_announce" accessLevel="100" />
|
||||
<admin command="admin_announce_crit" accessLevel="100" />
|
||||
<admin command="admin_announce_screen" accessLevel="100" />
|
||||
<admin command="admin_announces" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN BAN -->
|
||||
<admin command="admin_punishment" accessLevel="100" />
|
||||
<admin command="admin_punishment_add" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_punishment_remove" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN BBS -->
|
||||
<admin command="admin_bbs" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN BUFFS -->
|
||||
<admin command="admin_buff" accessLevel="100" />
|
||||
<admin command="admin_getbuffs" accessLevel="100" />
|
||||
<admin command="admin_stopbuff" accessLevel="100" />
|
||||
<admin command="admin_stopallbuffs" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_viewblockedeffects" accessLevel="100" />
|
||||
<admin command="admin_areacancel" accessLevel="100" />
|
||||
<admin command="admin_removereuse" accessLevel="100" />
|
||||
<admin command="admin_switch_gm_buffs" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN CAMERA -->
|
||||
<admin command="admin_camera" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN CHANGE ACCESS LEVEL -->
|
||||
<admin command="admin_changelvl" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN CH SIEGE -->
|
||||
<admin command="admin_chsiege_siegablehall" accessLevel="100" />
|
||||
<admin command="admin_chsiege_startSiege" accessLevel="100" />
|
||||
<admin command="admin_chsiege_endsSiege" accessLevel="100" />
|
||||
<admin command="admin_chsiege_setSiegeDate" accessLevel="100" />
|
||||
<admin command="admin_chsiege_addAttacker" accessLevel="100" />
|
||||
<admin command="admin_chsiege_removeAttacker" accessLevel="100" />
|
||||
<admin command="admin_chsiege_clearAttackers" accessLevel="100" />
|
||||
<admin command="admin_chsiege_listAttackers" accessLevel="100" />
|
||||
<admin command="admin_chsiege_forwardSiege" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN CLAN -->
|
||||
<admin command="admin_clan_info" accessLevel="100" />
|
||||
<admin command="admin_clan_changeleader" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_clan_show_pending" accessLevel="100" />
|
||||
<admin command="admin_clan_force_pending" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN CREATE ITEM -->
|
||||
<admin command="admin_itemcreate" accessLevel="100" />
|
||||
<admin command="admin_create_item" accessLevel="100" />
|
||||
<admin command="admin_create_coin" accessLevel="100" />
|
||||
<admin command="admin_give_item_target" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_give_item_to_all" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN CURSED WEAPONS -->
|
||||
<admin command="admin_cw_info" accessLevel="100" />
|
||||
<admin command="admin_cw_remove" accessLevel="100" />
|
||||
<admin command="admin_cw_goto" accessLevel="100" />
|
||||
<admin command="admin_cw_reload" accessLevel="100" />
|
||||
<admin command="admin_cw_add" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_cw_info_menu" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN DELETE -->
|
||||
<admin command="admin_delete" accessLevel="100" />
|
||||
<admin command="admin_delete_group" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN DESTROY ITEMS -->
|
||||
<admin command="admin_destroy_items" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_destroy_all_items" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_destroyitems" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_destroyallitems" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN DISCONNECT -->
|
||||
<admin command="admin_character_disconnect" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN DOOR CONTROL -->
|
||||
<admin command="admin_open" accessLevel="100" />
|
||||
<admin command="admin_close" accessLevel="100" />
|
||||
<admin command="admin_openall" accessLevel="100" />
|
||||
<admin command="admin_closeall" accessLevel="100" />
|
||||
<admin command="admin_showdoors" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN EDIT CHAR -->
|
||||
<admin command="admin_edit_character" accessLevel="100" />
|
||||
<admin command="admin_current_player" accessLevel="100" />
|
||||
<admin command="admin_setreputation" accessLevel="100" />
|
||||
<admin command="admin_nokarma" accessLevel="100" />
|
||||
<admin command="admin_setfame" accessLevel="100" />
|
||||
<admin command="admin_character_list" accessLevel="100" />
|
||||
<admin command="admin_character_info" accessLevel="100" />
|
||||
<admin command="admin_show_characters" accessLevel="100" />
|
||||
<admin command="admin_find_character" accessLevel="100" />
|
||||
<admin command="admin_find_ip" accessLevel="100" />
|
||||
<admin command="admin_find_account" accessLevel="100" />
|
||||
<admin command="admin_find_dualbox" accessLevel="100" />
|
||||
<admin command="admin_strict_find_dualbox" accessLevel="100" />
|
||||
<admin command="admin_tracert" accessLevel="100" />
|
||||
<admin command="admin_rec" accessLevel="100" />
|
||||
<admin command="admin_settitle" accessLevel="100" />
|
||||
<admin command="admin_changename" accessLevel="100" />
|
||||
<admin command="admin_setsex" accessLevel="100" />
|
||||
<admin command="admin_setcolor" accessLevel="100" />
|
||||
<admin command="admin_settcolor" accessLevel="100" />
|
||||
<admin command="admin_setclass" accessLevel="100" />
|
||||
<admin command="admin_setpk" accessLevel="100" />
|
||||
<admin command="admin_setpvp" accessLevel="100" />
|
||||
<admin command="admin_set_pvp_flag" accessLevel="100" />
|
||||
<admin command="admin_fullfood" accessLevel="100" />
|
||||
<admin command="admin_remove_clan_penalty" accessLevel="100" />
|
||||
<admin command="admin_summon_info" accessLevel="100" />
|
||||
<admin command="admin_unsummon" accessLevel="100" />
|
||||
<admin command="admin_summon_setlvl" accessLevel="100" />
|
||||
<admin command="admin_show_pet_inv" accessLevel="100" />
|
||||
<admin command="admin_partyinfo" accessLevel="100" />
|
||||
<admin command="admin_setnoble" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_set_hp" accessLevel="100" />
|
||||
<admin command="admin_set_mp" accessLevel="100" />
|
||||
<admin command="admin_set_cp" accessLevel="100" />
|
||||
<admin command="admin_setparam" accessLevel="100" />
|
||||
<admin command="admin_unsetparam" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN EFFECTS -->
|
||||
<admin command="admin_invis" accessLevel="100" />
|
||||
<admin command="admin_invisible" accessLevel="100" />
|
||||
<admin command="admin_setinvis" accessLevel="100" />
|
||||
<admin command="admin_vis" accessLevel="100" />
|
||||
<admin command="admin_visible" accessLevel="100" />
|
||||
<admin command="admin_invis_menu" accessLevel="100" />
|
||||
<admin command="admin_earthquake" accessLevel="100" />
|
||||
<admin command="admin_earthquake_menu" accessLevel="100" />
|
||||
<admin command="admin_bighead" accessLevel="100" />
|
||||
<admin command="admin_shrinkhead" accessLevel="100" />
|
||||
<admin command="admin_unpara_all" accessLevel="100" />
|
||||
<admin command="admin_para_all" accessLevel="100" />
|
||||
<admin command="admin_unpara" accessLevel="100" />
|
||||
<admin command="admin_para" accessLevel="100" />
|
||||
<admin command="admin_unpara_all_menu" accessLevel="100" />
|
||||
<admin command="admin_para_all_menu" accessLevel="100" />
|
||||
<admin command="admin_unpara_menu" accessLevel="100" />
|
||||
<admin command="admin_para_menu" accessLevel="100" />
|
||||
<admin command="admin_clearteams" accessLevel="100" />
|
||||
<admin command="admin_setteam_close" accessLevel="100" />
|
||||
<admin command="admin_setteam" accessLevel="100" />
|
||||
<admin command="admin_social" accessLevel="100" />
|
||||
<admin command="admin_social_menu" accessLevel="100" />
|
||||
<admin command="admin_effect" accessLevel="100" />
|
||||
<admin command="admin_npc_use_skill" accessLevel="100" />
|
||||
<admin command="admin_effect_menu" accessLevel="100" />
|
||||
<admin command="admin_ave_abnormal" accessLevel="100" />
|
||||
<admin command="admin_play_sounds" accessLevel="100" />
|
||||
<admin command="admin_play_sound" accessLevel="100" />
|
||||
<admin command="admin_atmosphere" accessLevel="100" />
|
||||
<admin command="admin_atmosphere_menu" accessLevel="100" />
|
||||
<admin command="admin_set_displayeffect" accessLevel="100" />
|
||||
<admin command="admin_set_displayeffect_menu" accessLevel="100" />
|
||||
<admin command="admin_playmovie" accessLevel="100" />
|
||||
<admin command="admin_event_trigger" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SPEED -->
|
||||
<admin command="admin_gmspeed" accessLevel="100" />
|
||||
<admin command="admin_superhaste" accessLevel="100" />
|
||||
<admin command="admin_superhaste_menu" accessLevel="100" />
|
||||
<admin command="admin_speed" accessLevel="100" />
|
||||
<admin command="admin_speed_menu" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN ELEMENT -->
|
||||
<admin command="admin_setlh" accessLevel="100" />
|
||||
<admin command="admin_setlc" accessLevel="100" />
|
||||
<admin command="admin_setll" accessLevel="100" />
|
||||
<admin command="admin_setlg" accessLevel="100" />
|
||||
<admin command="admin_setlb" accessLevel="100" />
|
||||
<admin command="admin_setlw" accessLevel="100" />
|
||||
<admin command="admin_setls" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN ENCHANT -->
|
||||
<admin command="admin_seteh" accessLevel="100" />
|
||||
<admin command="admin_setec" accessLevel="100" />
|
||||
<admin command="admin_seteg" accessLevel="100" />
|
||||
<admin command="admin_setel" accessLevel="100" />
|
||||
<admin command="admin_seteb" accessLevel="100" />
|
||||
<admin command="admin_setew" accessLevel="100" />
|
||||
<admin command="admin_setes" accessLevel="100" />
|
||||
<admin command="admin_setle" accessLevel="100" />
|
||||
<admin command="admin_setre" accessLevel="100" />
|
||||
<admin command="admin_setlf" accessLevel="100" />
|
||||
<admin command="admin_setrf" accessLevel="100" />
|
||||
<admin command="admin_seten" accessLevel="100" />
|
||||
<admin command="admin_setun" accessLevel="100" />
|
||||
<admin command="admin_setba" accessLevel="100" />
|
||||
<admin command="admin_setbe" accessLevel="100" />
|
||||
<admin command="admin_seth1" accessLevel="100" />
|
||||
<admin command="admin_seth2" accessLevel="100" />
|
||||
<admin command="admin_setbr" accessLevel="100" />
|
||||
<admin command="admin_setbt" accessLevel="100" />
|
||||
<admin command="admin_setsb" accessLevel="100" />
|
||||
<admin command="admin_setab" accessLevel="100" />
|
||||
<admin command="admin_seta1" accessLevel="100" />
|
||||
<admin command="admin_seta2" accessLevel="100" />
|
||||
<admin command="admin_seta3" accessLevel="100" />
|
||||
<admin command="admin_seta4" accessLevel="100" />
|
||||
<admin command="admin_seta5" accessLevel="100" />
|
||||
<admin command="admin_set01" accessLevel="100" />
|
||||
<admin command="admin_set02" accessLevel="100" />
|
||||
<admin command="admin_set03" accessLevel="100" />
|
||||
<admin command="admin_set04" accessLevel="100" />
|
||||
<admin command="admin_set05" accessLevel="100" />
|
||||
<admin command="admin_set06" accessLevel="100" />
|
||||
<admin command="admin_set07" accessLevel="100" />
|
||||
<admin command="admin_set08" accessLevel="100" />
|
||||
<admin command="admin_set09" accessLevel="100" />
|
||||
<admin command="admin_set10" accessLevel="100" />
|
||||
<admin command="admin_set11" accessLevel="100" />
|
||||
<admin command="admin_set12" accessLevel="100" />
|
||||
<admin command="admin_set13" accessLevel="100" />
|
||||
<admin command="admin_set14" accessLevel="100" />
|
||||
<admin command="admin_set15" accessLevel="100" />
|
||||
<admin command="admin_set16" accessLevel="100" />
|
||||
<admin command="admin_set17" accessLevel="100" />
|
||||
<admin command="admin_set18" accessLevel="100" />
|
||||
<admin command="admin_set19" accessLevel="100" />
|
||||
<admin command="admin_set20" accessLevel="100" />
|
||||
<admin command="admin_set21" accessLevel="100" />
|
||||
<admin command="admin_artifact" accessLevel="100" />
|
||||
<admin command="admin_agathion" accessLevel="100" />
|
||||
<admin command="admin_enchant" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN EVENTS -->
|
||||
<admin command="admin_event_menu" accessLevel="100" />
|
||||
<admin command="admin_event_start" accessLevel="100" />
|
||||
<admin command="admin_event_stop" accessLevel="100" />
|
||||
<admin command="admin_event_start_menu" accessLevel="100" />
|
||||
<admin command="admin_event_stop_menu" accessLevel="100" />
|
||||
<admin command="admin_event_bypass" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN EXP SP -->
|
||||
<admin command="admin_add_exp_sp_to_character" accessLevel="100" />
|
||||
<admin command="admin_add_exp_sp" accessLevel="100" />
|
||||
<admin command="admin_remove_exp_sp" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN FIGHT CALCULATOR -->
|
||||
<admin command="admin_fight_calculator" accessLevel="100" />
|
||||
<admin command="admin_fight_calculator_show" accessLevel="100" />
|
||||
<admin command="admin_fcs" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN FORT SIEGE -->
|
||||
<admin command="admin_fortsiege" accessLevel="100" />
|
||||
<admin command="admin_add_fortattacker" accessLevel="100" />
|
||||
<admin command="admin_list_fortsiege_clans" accessLevel="100" />
|
||||
<admin command="admin_clear_fortsiege_list" accessLevel="100" />
|
||||
<admin command="admin_spawn_fortdoors" accessLevel="100" />
|
||||
<admin command="admin_endfortsiege" accessLevel="100" />
|
||||
<admin command="admin_startfortsiege" accessLevel="100" />
|
||||
<admin command="admin_setfort" accessLevel="100" />
|
||||
<admin command="admin_removefort" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN GEODATA -->
|
||||
<admin command="admin_geo_pos" accessLevel="100" />
|
||||
<admin command="admin_geo_spawn_pos" accessLevel="100" />
|
||||
<admin command="admin_geo_can_see" accessLevel="100" />
|
||||
<admin command="admin_geo_can_move" accessLevel="100" />
|
||||
<admin command="admin_geogrid" accessLevel="100" />
|
||||
<admin command="admin_geomap" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN MISSING HTMLS -->
|
||||
<admin command="admin_geomap_missing_htmls" accessLevel="100" />
|
||||
<admin command="admin_world_missing_htmls" accessLevel="100" />
|
||||
<admin command="admin_next_missing_html" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN GEO EDITOR -->
|
||||
<admin command="admin_ge_status" accessLevel="100" />
|
||||
<admin command="admin_ge_mode" accessLevel="100" />
|
||||
<admin command="admin_ge_join" accessLevel="100" />
|
||||
<admin command="admin_ge_leave" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN GM -->
|
||||
<admin command="admin_gm" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN GM CHAT -->
|
||||
<admin command="admin_gmchat" accessLevel="100" />
|
||||
<admin command="admin_snoop" accessLevel="100" />
|
||||
<admin command="admin_gmchat_menu" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN GRACIA SEEDS -->
|
||||
<admin command="admin_gracia_seeds" accessLevel="100" />
|
||||
<admin command="admin_kill_tiat" accessLevel="100" />
|
||||
<admin command="admin_set_sodstate" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN GRAND BOSS -->
|
||||
<admin command="admin_grandboss" accessLevel="100" />
|
||||
<admin command="admin_grandboss_respawn" accessLevel="100" />
|
||||
<admin command="admin_grandboss_minions" accessLevel="100" />
|
||||
<admin command="admin_grandboss_abort" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN CLAN HALL -->
|
||||
<admin command="admin_clanhall" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN HEAL -->
|
||||
<admin command="admin_heal" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN HELLBOUND -->
|
||||
<admin command="admin_hellbound_setlevel" accessLevel="100" />
|
||||
<admin command="admin_hellbound" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN HTML -->
|
||||
<admin command="admin_html" accessLevel="100" />
|
||||
<admin command="admin_loadhtml" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN HWID -->
|
||||
<admin command="admin_hwid" accessLevel="100" />
|
||||
<admin command="admin_hwinfo" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN INSTANCE -->
|
||||
<admin command="admin_instance" accessLevel="100" />
|
||||
<admin command="admin_instances" accessLevel="100" />
|
||||
<admin command="admin_instancelist" accessLevel="100" />
|
||||
<admin command="admin_instancecreate" accessLevel="100" />
|
||||
<admin command="admin_instanceteleport" accessLevel="100" />
|
||||
<admin command="admin_instancedestroy" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN INSTANCE ZONE -->
|
||||
<admin command="admin_instancezone" accessLevel="100" />
|
||||
<admin command="admin_instancezone_clear" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN INVUL -->
|
||||
<admin command="admin_invul" accessLevel="100" />
|
||||
<admin command="admin_setinvul" accessLevel="100" />
|
||||
<admin command="admin_undying" accessLevel="100" />
|
||||
<admin command="admin_setundying" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN KICK -->
|
||||
<admin command="admin_kick" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_kick_non_gm" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN KILL -->
|
||||
<admin command="admin_kill" accessLevel="100" />
|
||||
<admin command="admin_kill_monster" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN LEVEL -->
|
||||
<admin command="admin_add_level" accessLevel="100" />
|
||||
<admin command="admin_set_level" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN LOGIN -->
|
||||
<admin command="admin_server_gm_only" accessLevel="100" />
|
||||
<admin command="admin_server_all" accessLevel="100" />
|
||||
<admin command="admin_server_max_player" accessLevel="100" />
|
||||
<admin command="admin_server_list_type" accessLevel="100" />
|
||||
<admin command="admin_server_list_age" accessLevel="100" />
|
||||
<admin command="admin_server_login" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN MAMMON -->
|
||||
<admin command="admin_mammon_find" accessLevel="100" />
|
||||
<admin command="admin_mammon_respawn" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN MANOR -->
|
||||
<admin command="admin_manor" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN MENU -->
|
||||
<admin command="admin_char_manage" accessLevel="100" />
|
||||
<admin command="admin_teleport_character_to_menu" accessLevel="100" />
|
||||
<admin command="admin_recall_char_menu" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_recall_party_menu" accessLevel="100" />
|
||||
<admin command="admin_recall_clan_menu" accessLevel="100" />
|
||||
<admin command="admin_goto_char_menu" accessLevel="100" />
|
||||
<admin command="admin_kick_menu" accessLevel="100" />
|
||||
<admin command="admin_kill_menu" accessLevel="100" />
|
||||
<admin command="admin_ban_menu" accessLevel="100" />
|
||||
<admin command="admin_unban_menu" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN MESSAGES -->
|
||||
<admin command="admin_msg" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN FAKE PLAYERS -->
|
||||
<admin command="admin_fakechat" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN MOB GROUP -->
|
||||
<admin command="admin_mobmenu" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_list" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_create" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_remove" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_delete" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_spawn" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_unspawn" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_kill" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_idle" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_attack" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_rnd" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_return" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_follow" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_casting" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_nomove" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_attackgrp" accessLevel="100" />
|
||||
<admin command="admin_mobgroup_invul" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN ONLINE -->
|
||||
<admin command="admin_online" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN PATH NODE -->
|
||||
<admin command="admin_path_find" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN PETITION -->
|
||||
<admin command="admin_view_petitions" accessLevel="100" />
|
||||
<admin command="admin_view_petition" accessLevel="100" />
|
||||
<admin command="admin_accept_petition" accessLevel="100" />
|
||||
<admin command="admin_reject_petition" accessLevel="100" />
|
||||
<admin command="admin_reset_petitions" accessLevel="100" />
|
||||
<admin command="admin_force_peti" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN P FORGE -->
|
||||
<admin command="admin_forge" accessLevel="100" />
|
||||
<admin command="admin_forge_values" accessLevel="100" />
|
||||
<admin command="admin_forge_send" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN PLEDGE -->
|
||||
<admin command="admin_pledge" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN TRANSFORM -->
|
||||
<admin command="admin_transform" accessLevel="100" />
|
||||
<admin command="admin_untransform" accessLevel="100" />
|
||||
<admin command="admin_transform_menu" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN PC CAFE POINTS -->
|
||||
<admin command="admin_pccafepoints" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN PRIME POINTS -->
|
||||
<admin command="admin_primepoints" accessLevel="100" />
|
||||
|
||||
<!-- PREMIUM SYSTEM -->
|
||||
<admin command="admin_premium_menu" accessLevel="100" />
|
||||
<admin command="admin_premium_add1" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_premium_add2" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_premium_add3" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_premium_info" accessLevel="100" />
|
||||
<admin command="admin_premium_remove" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN QUEST -->
|
||||
<admin command="admin_quest_reload" accessLevel="100" />
|
||||
<admin command="admin_script_load" accessLevel="100" />
|
||||
<admin command="admin_script_unload" accessLevel="100" />
|
||||
<admin command="admin_script_dir" accessLevel="100" />
|
||||
<admin command="admin_show_quests" accessLevel="100" />
|
||||
<admin command="admin_quest_info" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN RELOAD -->
|
||||
<admin command="admin_reload" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN REPAIR CHAR -->
|
||||
<admin command="admin_restore" accessLevel="100" />
|
||||
<admin command="admin_repair" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN RES -->
|
||||
<admin command="admin_res" accessLevel="100" />
|
||||
<admin command="admin_res_monster" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN RIDE -->
|
||||
<admin command="admin_ride_horse" accessLevel="100" />
|
||||
<admin command="admin_ride_bike" accessLevel="100" />
|
||||
<admin command="admin_ride_wyvern" accessLevel="100" />
|
||||
<admin command="admin_ride_strider" accessLevel="100" />
|
||||
<admin command="admin_unride_wyvern" accessLevel="100" />
|
||||
<admin command="admin_unride_strider" accessLevel="100" />
|
||||
<admin command="admin_unride" accessLevel="100" />
|
||||
<admin command="admin_ride_wolf" accessLevel="100" />
|
||||
<admin command="admin_unride_wolf" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SHOP -->
|
||||
<admin command="admin_buy" accessLevel="100" />
|
||||
<admin command="admin_gmshop" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SHOW QUEST -->
|
||||
<admin command="admin_charquestmenu" accessLevel="100" />
|
||||
<admin command="admin_setcharquest" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SHUTDOWN -->
|
||||
<admin command="admin_server_shutdown" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_server_restart" accessLevel="100" confirmDlg="true" />
|
||||
<admin command="admin_server_abort" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN CASTLE -->
|
||||
<admin command="admin_castlemanage" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SKILL -->
|
||||
<admin command="admin_show_skills" accessLevel="100" />
|
||||
<admin command="admin_remove_skills" accessLevel="100" />
|
||||
<admin command="admin_skill_list" accessLevel="100" />
|
||||
<admin command="admin_skill_index" accessLevel="100" />
|
||||
<admin command="admin_add_skill" accessLevel="100" />
|
||||
<admin command="admin_remove_skill" accessLevel="100" />
|
||||
<admin command="admin_get_skills" accessLevel="100" />
|
||||
<admin command="admin_reset_skills" accessLevel="100" />
|
||||
<admin command="admin_give_all_skills" accessLevel="100" />
|
||||
<admin command="admin_give_all_skills_fs" accessLevel="100" />
|
||||
<admin command="admin_give_clan_skills" accessLevel="100" />
|
||||
<admin command="admin_give_all_clan_skills" accessLevel="100" />
|
||||
<admin command="admin_remove_all_skills" accessLevel="100" />
|
||||
<admin command="admin_add_clan_skill" accessLevel="100" />
|
||||
<admin command="admin_setskill" accessLevel="100" />
|
||||
<admin command="admin_cast" accessLevel="100" />
|
||||
<admin command="admin_castnow" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SPAWN -->
|
||||
<admin command="admin_show_spawns" accessLevel="100" />
|
||||
<admin command="admin_spawn" accessLevel="100" />
|
||||
<admin command="admin_spawnat" accessLevel="100" />
|
||||
<admin command="admin_spawn_monster" accessLevel="100" />
|
||||
<admin command="admin_spawn_index" accessLevel="100" />
|
||||
<admin command="admin_unspawnall" accessLevel="100" />
|
||||
<admin command="admin_respawnall" accessLevel="100" />
|
||||
<admin command="admin_spawn_reload" accessLevel="100" />
|
||||
<admin command="admin_npc_index" accessLevel="100" />
|
||||
<admin command="admin_spawn_once" accessLevel="100" />
|
||||
<admin command="admin_show_npcs" accessLevel="100" />
|
||||
<admin command="admin_instance_spawns" accessLevel="100" />
|
||||
<admin command="admin_list_spawns" accessLevel="100" />
|
||||
<admin command="admin_list_positions" accessLevel="100" />
|
||||
<admin command="admin_spawn_debug_menu" accessLevel="100" />
|
||||
<admin command="admin_spawn_debug_print" accessLevel="100" />
|
||||
<admin command="admin_spawn_debug_print_menu" accessLevel="100" />
|
||||
<admin command="admin_topspawncount" accessLevel="100" />
|
||||
<admin command="admin_top_spawn_count" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SUMMON -->
|
||||
<admin command="admin_summon" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN TARGET -->
|
||||
<admin command="admin_target" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN TARGETSAY -->
|
||||
<admin command="admin_targetsay" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN TELEPORT -->
|
||||
<admin command="admin_show_moves" accessLevel="100" />
|
||||
<admin command="admin_show_moves_other" accessLevel="100" />
|
||||
<admin command="admin_show_teleport" accessLevel="100" />
|
||||
<admin command="admin_teleport_to_character" accessLevel="100" />
|
||||
<admin command="admin_teleportto" accessLevel="100" />
|
||||
<admin command="admin_teleport" accessLevel="100" />
|
||||
<admin command="admin_move_to" accessLevel="100" />
|
||||
<admin command="admin_teleport_character" accessLevel="100" />
|
||||
<admin command="admin_recall" accessLevel="100" />
|
||||
<admin command="admin_walk" accessLevel="100" />
|
||||
<admin command="teleportto" accessLevel="100" />
|
||||
<admin command="recall" accessLevel="100" />
|
||||
<admin command="admin_recall_npc" accessLevel="100" />
|
||||
<admin command="admin_gonorth" accessLevel="100" />
|
||||
<admin command="admin_gosouth" accessLevel="100" />
|
||||
<admin command="admin_goeast" accessLevel="100" />
|
||||
<admin command="admin_gowest" accessLevel="100" />
|
||||
<admin command="admin_goup" accessLevel="100" />
|
||||
<admin command="admin_godown" accessLevel="100" />
|
||||
<admin command="admin_tele" accessLevel="100" />
|
||||
<admin command="admin_teleto" accessLevel="100" />
|
||||
<admin command="admin_instant_move" accessLevel="100" />
|
||||
<admin command="admin_sendhome" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN TERRITORY WAR -->
|
||||
<admin command="admin_territory_war" accessLevel="100" />
|
||||
<admin command="admin_territory_war_time" accessLevel="100" />
|
||||
<admin command="admin_territory_war_start" accessLevel="100" />
|
||||
<admin command="admin_territory_war_end" accessLevel="100" />
|
||||
<admin command="admin_territory_wards_list" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN TEST -->
|
||||
<admin command="admin_stats" accessLevel="100" />
|
||||
<admin command="admin_skill_test" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN TVT EVENT -->
|
||||
<admin command="admin_tvt_add" accessLevel="100" />
|
||||
<admin command="admin_tvt_remove" accessLevel="100" />
|
||||
<admin command="admin_tvt_advance" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN VITALITY -->
|
||||
<admin command="admin_set_vitality" accessLevel="100" />
|
||||
<admin command="admin_set_vitality_level" accessLevel="100" />
|
||||
<admin command="admin_full_vitality" accessLevel="100" />
|
||||
<admin command="admin_empty_vitality" accessLevel="100" />
|
||||
<admin command="admin_get_vitality" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN ZONE -->
|
||||
<admin command="admin_zone_check" accessLevel="100" />
|
||||
<admin command="admin_zone_visual" accessLevel="100" />
|
||||
<admin command="admin_zone_visual_clear" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SCAN -->
|
||||
<admin command="admin_scan" accessLevel="100" />
|
||||
<admin command="admin_deleteNpcByObjectId" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN SERVERINFO -->
|
||||
<admin command="admin_serverinfo" accessLevel="100" />
|
||||
|
||||
<!-- VOICE COMMANDS -->
|
||||
<admin command="banchat" accessLevel="30" />
|
||||
<admin command="chatban" accessLevel="30" />
|
||||
<admin command="unbanchat" accessLevel="30" />
|
||||
<admin command="chatunban" accessLevel="30" />
|
||||
|
||||
<!-- HIDE -->
|
||||
<admin command="admin_hide" accessLevel="100" />
|
||||
|
||||
<!-- FENCES -->
|
||||
<admin command="admin_addfence" accessLevel="100" />
|
||||
<admin command="admin_setfencestate" accessLevel="100" />
|
||||
<admin command="admin_removefence" accessLevel="100" />
|
||||
<admin command="admin_listfence" accessLevel="100" />
|
||||
<admin command="admin_gofence" accessLevel="100" />
|
||||
</list>
|
30
L2J_Mobius_10.3_MasterClass/dist/game/config/AttendanceRewards.ini
vendored
Normal file
30
L2J_Mobius_10.3_MasterClass/dist/game/config/AttendanceRewards.ini
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Attendance Reward Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Enable daily login rewards for players.
|
||||
# To enable this feature you need to set L2.ini UseVIPAttendance value to true.
|
||||
# Rewards are set at data\AttendanceRewards.xml file.
|
||||
|
||||
# Enable the Attendance Reward system.
|
||||
# Default: False
|
||||
EnableAttendanceRewards = False
|
||||
|
||||
# Enable the Attendance Reward system only for Premium accounts.
|
||||
# Default: False
|
||||
PremiumOnlyAttendanceRewards = False
|
||||
|
||||
# Make rewards sharable in the same account.
|
||||
# Default: False (Each character will receive its own rewards.)
|
||||
AttendanceRewardsShareAccount = False
|
||||
|
||||
# Time in minutes you can redeem your reward after logging in.
|
||||
# Retail: 30
|
||||
AttendanceRewardDelay = 30
|
||||
|
||||
# Popup the reward window when player enters the game.
|
||||
# Default: True
|
||||
AttendancePopupStart = True
|
||||
|
||||
# Popup the reward window if reward is available 30 minutes after login.
|
||||
# Default: False
|
||||
AttendancePopupWindow = False
|
119
L2J_Mobius_10.3_MasterClass/dist/game/config/AttributeSystem.ini
vendored
Normal file
119
L2J_Mobius_10.3_MasterClass/dist/game/config/AttributeSystem.ini
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
##+-------+----------------+----------------+----------------+----------------+----------------+
|
||||
##| Grade | Stone | Crystal | Stone-Super | Crystal-Super | Jewel |
|
||||
##+-------+----------------+----------------+----------------+----------------+----------------+
|
||||
##| | Weapon | Armor | Weapon | Armor | Weapon | Armor | Weapon | Armor | Weapon | Armor |
|
||||
##+-------+--------+-------+--------+-------+--------+-------+--------+-------+--------+-------+
|
||||
##| S | 50% | 60% | 30% | 50% | 100% | 100% | 80% | 100% | 100% | 100% |
|
||||
##+-------+--------+-------+--------+-------+--------+-------+--------+-------+--------+-------+
|
||||
##| S80 | 50% | 80% | 40% | 70% | 100% | 100% | 90% | 100% | 100% | 100% |
|
||||
##+-------+--------+-------+--------+-------+--------+-------+--------+-------+--------+-------+
|
||||
##| S84 | 50% | 80% | 50% | 80% | 100% | 100% | 100% | 100% | 100% | 100% |
|
||||
##+-------+--------+-------+--------+-------+--------+-------+--------+-------+--------+-------+
|
||||
##| R | 50% | 100% | 60% | 80% | 100% | 100% | 100% | 100% | 100% | 100% |
|
||||
##+-------+--------+-------+--------+-------+--------+-------+--------+-------+--------+-------+
|
||||
##| R95 | 50% | 100% | 60% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
|
||||
##+-------+--------+-------+--------+-------+--------+-------+--------+-------+--------+-------+
|
||||
##| R99 | 50% | 100% | 60% | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
|
||||
##+-------+--------+-------+--------+-------+--------+-------+--------+-------+--------+-------+ Jewels don't have info about chance
|
||||
##| R110 | 50% | 100% | 60% | 100% | 100% | 100% | 100% | 100% | 100% | 100% | Jewels can be used only for R110
|
||||
##+-------+--------+-------+--------+-------+--------+-------+--------+-------+--------+-------+
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Stone Chance
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
SWeaponStone = 50
|
||||
S80WeaponStone = 50
|
||||
S84WeaponStone = 50
|
||||
RWeaponStone = 50
|
||||
R95WeaponStone = 50
|
||||
R99WeaponStone = 50
|
||||
R110WeaponStone = 50
|
||||
|
||||
SArmorStone = 60
|
||||
S80ArmorStone = 80
|
||||
S84ArmorStone = 80
|
||||
RArmorStone = 100
|
||||
R95ArmorStone = 100
|
||||
R99ArmorStone = 100
|
||||
R110ArmorStone = 100
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Crystal Chance
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
SWeaponCrystal = 30
|
||||
S80WeaponCrystal = 40
|
||||
S84WeaponCrystal = 50
|
||||
RWeaponCrystal = 60
|
||||
R95WeaponCrystal = 60
|
||||
R99WeaponCrystal = 60
|
||||
R110WeaponCrystal = 60
|
||||
|
||||
SArmorCrystal = 50
|
||||
S80ArmorCrystal = 70
|
||||
S84ArmorCrystal = 80
|
||||
RArmorCrystal = 80
|
||||
R95ArmorCrystal = 100
|
||||
R99ArmorCrystal = 100
|
||||
R110ArmorCrystal = 100
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Stone-Super Chance
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
SWeaponStoneSuper = 100
|
||||
S80WeaponStoneSuper = 100
|
||||
S84WeaponStoneSuper = 100
|
||||
RWeaponStoneSuper = 100
|
||||
R95WeaponStoneSuper = 100
|
||||
R99WeaponStoneSuper = 100
|
||||
R110WeaponStoneSuper = 100
|
||||
|
||||
SArmorStoneSuper = 100
|
||||
S80ArmorStoneSuper = 100
|
||||
S84ArmorStoneSuper = 100
|
||||
RArmorStoneSuper = 100
|
||||
R95ArmorStoneSuper = 100
|
||||
R99ArmorStoneSuper = 100
|
||||
R110ArmorStoneSuper = 100
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Crystal-Super Chance
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
SWeaponCrystalSuper = 80
|
||||
S80WeaponCrystalSuper = 90
|
||||
S84WeaponCrystalSuper = 100
|
||||
RWeaponCrystalSuper = 100
|
||||
R95WeaponCrystalSuper = 100
|
||||
R99WeaponCrystalSuper = 100
|
||||
R110WeaponCrystalSuper = 100
|
||||
|
||||
SArmorCrystalSuper = 100
|
||||
S80ArmorCrystalSuper = 100
|
||||
S84ArmorCrystalSuper = 100
|
||||
RArmorCrystalSuper = 100
|
||||
R95ArmorCrystalSuper = 100
|
||||
R99ArmorCrystalSuper = 100
|
||||
R110ArmorCrystalSuper = 100
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Jewels Chance
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
SWeaponJewel = 100
|
||||
S80WeaponJewel = 100
|
||||
S84WeaponJewel = 100
|
||||
RWeaponJewel = 100
|
||||
R95WeaponJewel = 100
|
||||
R99WeaponJewel = 100
|
||||
R110WeaponJewel = 100
|
||||
|
||||
SArmorJewel = 100
|
||||
S80ArmorJewel = 100
|
||||
S84ArmorJewel = 100
|
||||
RArmorJewel = 100
|
||||
R95ArmorJewel = 100
|
||||
R99ArmorJewel = 100
|
||||
R110ArmorJewel = 100
|
12
L2J_Mobius_10.3_MasterClass/dist/game/config/BotReportPunishments.xml
vendored
Normal file
12
L2J_Mobius_10.3_MasterClass/dist/game/config/BotReportPunishments.xml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/BotReportPunishments.xsd">
|
||||
<!-- To add a range punishments (E.G., a debuff which apply if you have 150 reports or more, use negative neededReportCount -->
|
||||
<punishment neededReportCount="25" skillId="6038" skillLevel="1" sysMessageId="2473" />
|
||||
<punishment neededReportCount="75" skillId="6039" skillLevel="1" sysMessageId="2474" />
|
||||
<punishment neededReportCount="100" skillId="6055" skillLevel="1" sysMessageId="2477" />
|
||||
<punishment neededReportCount="125" skillId="6056" skillLevel="1" sysMessageId="2478" />
|
||||
<punishment neededReportCount="150" skillId="6057" skillLevel="1" sysMessageId="2480" />
|
||||
<punishment neededReportCount="175" skillId="6057" skillLevel="1" sysMessageId="2480" />
|
||||
<!-- Range punisment -->
|
||||
<punishment neededReportCount="-150" skillId="6040" skillLevel="1" />
|
||||
</list>
|
893
L2J_Mobius_10.3_MasterClass/dist/game/config/Character.ini
vendored
Normal file
893
L2J_Mobius_10.3_MasterClass/dist/game/config/Character.ini
vendored
Normal file
@@ -0,0 +1,893 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Alternative Character Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# This properties file is solely for the purpose of Character modifications that directly influence them.
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Statistics
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This option, if enabled, will force a character to de-level if the characters' experience is below their level after losing experience on death. If this is set to False, the character will not de-level even if their Experience is below their level after death.
|
||||
# Default: True
|
||||
Delevel = True
|
||||
|
||||
# Players will be affected by de-level after this level.
|
||||
# Default: 85
|
||||
DelevelMinimum = 85
|
||||
|
||||
# This option enable check for all player skills for skill level.
|
||||
# If player level is lower than skill learn level - 9, skill level is decreased to next possible level.
|
||||
# If there is no possible level, skill is removed from player.
|
||||
DecreaseSkillOnDelevel = True
|
||||
|
||||
# Weight limit multiplier. Example: Setting this to 5 will give players 5x the normal weight limit.
|
||||
# Default: 1
|
||||
AltWeightLimit = 1
|
||||
|
||||
# Run speed modifier. Example: Setting this to 5 will give players +5 to their running speed.
|
||||
# Default: 0
|
||||
RunSpeedBoost = 0
|
||||
|
||||
# Chance of receiving the Death Penalty debuff when killed by a mob.
|
||||
# Default: 20
|
||||
DeathPenaltyChance = 20
|
||||
|
||||
# Percent of HP, MP, and CP which is restored on character revival.
|
||||
# Use 0 to disable restore
|
||||
# Default: 0, 65, 0
|
||||
RespawnRestoreCP = 0
|
||||
RespawnRestoreHP = 65
|
||||
RespawnRestoreMP = 0
|
||||
|
||||
# Percent of HP, MP, and CP regeneration for players.
|
||||
# Example: Setting HP to 10 will cause player HP to regenerate 90% slower than normal.
|
||||
# Default: 100, 100, 100
|
||||
HpRegenMultiplier = 100
|
||||
MpRegenMultiplier = 100
|
||||
CpRegenMultiplier = 100
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Skills & Effects
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# When this is enabled it will read the "SkillDurationList" option.
|
||||
# This will basically overlook the "time = x" in the skill XMLs so that you do not need to modify the L2J Datapack XMLs to increase skill duration.
|
||||
# Default: False
|
||||
EnableModifySkillDuration = False
|
||||
# Skill duration list
|
||||
# Format: skillid,newtime;skillid2,newtime2...
|
||||
# Example:
|
||||
# This enable 1h(3600) duration for songs, the "\"indicates new line,
|
||||
# and is only set for formating purposes.
|
||||
# SkillDurationList = 264,3600;265,3600;266,3600;267,3600;268,3600;\
|
||||
# 269,3600;270,3600;304,3600;305,1200;306,3600;308,3600;349,3600;\
|
||||
# 363,3600;364,3600
|
||||
SkillDurationList =
|
||||
|
||||
# When this is enabled it will read the "SkillReuseList" option.
|
||||
EnableModifySkillReuse = False
|
||||
# Format: skillid,newDelayTime;skillid,newDelayTime2 (See skillDuration for examples)
|
||||
SkillReuseList =
|
||||
|
||||
# If it's true all class skills will be delivered upon level up and login.
|
||||
# Default: False
|
||||
AutoLearnSkills = False
|
||||
|
||||
# Auto learn skills that need items to be learned.
|
||||
# Forgotten Scroll and Forgotten Power skills have their own configurations.
|
||||
# Default: False
|
||||
AutoLearnSkillsWithoutItems = False
|
||||
|
||||
# If it's true skills from forgotten scrolls will be delivered upon level up and login, require AutoLearnSkills.
|
||||
# Default: False
|
||||
AutoLearnForgottenScrollSkills = False
|
||||
|
||||
# If it's true skills from forgotten power books will be delivered upon level up and login, require AutoLearnSkills.
|
||||
# Default: False
|
||||
AutoLearnForgottenPowerSkills = False
|
||||
|
||||
# Maximum number of buffs and songs/dances.
|
||||
# Remember that Divine Inspiration will give players 4 additional buff slots on top of the number specified in "maxbuffamount".
|
||||
# Default: 20, 12, 12
|
||||
MaxBuffAmount = 20
|
||||
MaxTriggeredBuffAmount = 12
|
||||
MaxDanceAmount = 12
|
||||
|
||||
# Allow players to cancel dances/songs via Alt+click on buff icon
|
||||
# Default: False
|
||||
DanceCancelBuff = False
|
||||
|
||||
# This option enables/disables additional MP consume for dances and songs.
|
||||
# Default: True
|
||||
DanceConsumeAdditionalMP = True
|
||||
|
||||
# Allow players to have all dances/songs stored when logout.
|
||||
# Default: False
|
||||
AltStoreDances = True
|
||||
|
||||
# This option allows a player to automatically learn Divine Inspiration.
|
||||
# This is not included in AutoLearnSkills above.
|
||||
# Default: False
|
||||
AutoLearnDivineInspiration = False
|
||||
|
||||
# This is to allow a character to be canceled during bow use, skill use, or both.
|
||||
# Available Options: bow, cast, all
|
||||
# Default: cast
|
||||
AltGameCancelByHit = cast
|
||||
|
||||
# This option, if enabled, will allow magic to fail, and if disabled magic damage will always succeed with a 100% chance.
|
||||
# Default: True
|
||||
MagicFailures = True
|
||||
|
||||
# This option, if enabled, will allow stuns to be canceled with 14% chance.
|
||||
# Retail: True
|
||||
BreakStun = False
|
||||
|
||||
# Protection from aggressive mobs after getting up from fake death.
|
||||
# The value is specified in seconds.
|
||||
# Default: 0
|
||||
PlayerFakeDeathUpProtection = 0
|
||||
|
||||
# This option is to enable or disable the storage of buffs/debuffs among other effects.
|
||||
# Default: True
|
||||
StoreSkillCooltime = True
|
||||
|
||||
# This option is to enable or disable the storage of buffs/debuffs among other effects during
|
||||
# a subclass change
|
||||
# Default: False
|
||||
SubclassStoreSkillCooltime = False
|
||||
|
||||
# This is the value ticks are multiplied with to result in interval per tick in milliseconds.
|
||||
# Note: Editing this will not affect how much the over-time effects heals since heal scales with that value too.
|
||||
# Default: 666
|
||||
EffectTickRatio = 666
|
||||
|
||||
# This option will enable alter skills (chain skills)
|
||||
EnableAlterSkills = True
|
||||
|
||||
# Untarget player when uses fake death.
|
||||
FakeDeathUntarget = True
|
||||
|
||||
# Stand when fake death is active and taking damage.
|
||||
FakeDeathDamageStand = False
|
||||
|
||||
# Vampiric attack work with skills.
|
||||
VampiricAttackWorkWithSkills = True
|
||||
|
||||
# MP vampiric attacks work with melee.
|
||||
MpVampiricAttackWorkWithMelee = True
|
||||
|
||||
# Calculate magic success by target level and skill magic level (when available).
|
||||
# Otherwise target level and (alternatively) attacker level is used.
|
||||
CalculateMagicSuccessBySkillMagicLevel = False
|
||||
|
||||
# Blow rate chance limit (%).
|
||||
# Default: 80
|
||||
BlowRateChanceLimit = 80
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Class, Sub-class and skill learning options
|
||||
# ---------------------------------------------------------------------------
|
||||
# Require life crystal needed to learn clan skills.
|
||||
# Default: True
|
||||
LifeCrystalNeeded = True
|
||||
|
||||
# Require spell book needed to learn Divine Inspiration.
|
||||
# Default: True
|
||||
DivineInspirationSpBookNeeded = True
|
||||
|
||||
# Allow player to sub-class without checking for unique quest items.
|
||||
# Default: True
|
||||
AltSubClassWithoutQuests = True
|
||||
|
||||
# Allow player to upgrade sub-class to dualclass from Raina without finish Split Destiny quest.
|
||||
# Default: True
|
||||
AltDualClassWithoutQuest = True
|
||||
|
||||
# Allow player to learn transformations without quest.
|
||||
# Default: False
|
||||
AltTransformationWithoutQuest = False
|
||||
|
||||
# Fee to remove Transfer skills.
|
||||
# Default: 10000000
|
||||
FeeDeleteTransferSkills = 10000000
|
||||
|
||||
# Fee to remove Sub-Class skills.
|
||||
# Default: 10000000
|
||||
FeeDeleteSubClassSkills = 10000000
|
||||
|
||||
# Fee to remove Dual-Class skills.
|
||||
# Default: 20000000
|
||||
FeeDeleteDualClassSkills = 20000000
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Hardin (Agent of Chaos)
|
||||
# ---------------------------------------------------------------------------
|
||||
# NOTE: Base player class race remains the same.
|
||||
|
||||
# Enable classes from all races.
|
||||
# Default: True
|
||||
HardinEnableAllRaces = True
|
||||
|
||||
# Disable mage-fighter class differentiation.
|
||||
# Default: False
|
||||
HardinEnableAllSpecs = False
|
||||
|
||||
# Select classes from same Awaken group.
|
||||
# Default: True
|
||||
HardinSameAwakenGroup = True
|
||||
|
||||
# Retail limitations.
|
||||
# -Only Dwarves can awaken into Tyrr Maestros.
|
||||
# -Only Orcs can awaken into Iss Dominators.
|
||||
# Default: True
|
||||
HardinRetailLimitations = True
|
||||
|
||||
# Enable above checks for dual classes as well.
|
||||
# Default: True
|
||||
HardinEnableDualClassChecks = True
|
||||
|
||||
# Enable Hardin for Ertheia race characters.
|
||||
# Note: HardinSameAwakenGroup must be disabled.
|
||||
# Default: False
|
||||
HardinEnableErtheias = False
|
||||
|
||||
# Skills removed upon changing class.
|
||||
# Example:
|
||||
# ClassId1,SkillId1,SkillId2...;\
|
||||
# ClassId2,SkillId1,SkillId2...;\
|
||||
# ClassId3,SkillId1,SkillId2...
|
||||
HardinRemovedSkills = 148,10104,10065,10098,19558,10097,10042,19552;\
|
||||
149,10105,10069,10099,10102,10068,19559,19553;\
|
||||
150,10106,10076,10075,19567,10100,19555,10103,10092,10073;\
|
||||
151,10107,19566,10075,10101,19556,10094,10079,10080,19561;\
|
||||
152,10304,345,10318,7,10320,10301,430,10324,10332,261;\
|
||||
153,10306,48,10325,10321,10333,286,320;\
|
||||
154,176,10311,10315,94,10334,139;\
|
||||
155,10309,10335,10308,10322,10301,10324,10327,346,35,222;\
|
||||
156,10311,10315,10329,11620,10312,19109,10330,10341,19089,172;\
|
||||
157,10328,10311,483,10316,10340,1514,485,793;\
|
||||
158,10561,19301,531,10560,10558,19299,10703,10562;\
|
||||
159,10608,10705,531,10610,10606,410,19303,10609,10522;\
|
||||
160,10655,531,10704,10656,10653,19305,410,10522;\
|
||||
161,10701,10700,19309,531,19311,19306,10522;\
|
||||
162,10811;10952;10810;\
|
||||
163,10857,10953,10856;\
|
||||
164,10904,10954,10903;\
|
||||
165,10951,10955,19203,10950;\
|
||||
166,11124,11106,19408,11024,11008,11010,11009,11007,11134,11153;\
|
||||
167,11151,11121,11152,11010,19313,11027,1262,1129,19405,1334,11135;\
|
||||
168,11176,11112,19408,11008,19312,11025,11136;\
|
||||
169,11125,11118,11026,19408,19313,11009,11137;\
|
||||
170,11226,11115,19408,791,11138,19313,11007,11028,11225;\
|
||||
171,11581,11524,11525,19430,19425,11580,11509,19421,19204,19427,11508,11529,11530,11532,19422;\
|
||||
172,11583,11552,11620,19431,19425,19443,11509,11607,11608,11613,19228,11609,19205,437,19231,11605,19433,19421,19423,19434;\
|
||||
173,11606,11585,11552,19425,19426,19421,11511,11508,11610,11611,367,19206,11614,11612,19424,19232,19436;\
|
||||
174,19437,19444,19445,19446,11588,11552,11620,11524,11525,19430,1416,11509,11558,11559,11557,11604,11508;\
|
||||
175,19444,19445,19446,19441,19503,1244,19430,19425,11509,19207,19448,19421,11508,19438;\
|
||||
176,11350,11387,11394,11320,11322,11321,11369,11370,11359,11347;\
|
||||
177,11353,11393,11389,11363,11371,11330,11329,11331,11372,11361,11348;\
|
||||
178,11356,11391,11395,11374,11338,11339,11365,11340,11373,11349;\
|
||||
179,1425,19209,11851,11861,11850;\
|
||||
180,11853,19210,11852,11862;\
|
||||
181,11855,19212,11856,11854,11863,11859
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Summons configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This option is to enable or disable the storage of buffs/debuffs among other effects on pets/invocations
|
||||
# Default: True
|
||||
SummonStoreSkillCooltime = True
|
||||
|
||||
# Servitor summons on login if player had it summoned before logout
|
||||
# Default: True
|
||||
RestoreServitorOnReconnect = True
|
||||
|
||||
# Pet summons on login if player had it summoned before logout
|
||||
# Default: True
|
||||
RestorePetOnReconnect = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Vitality configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enables vitality system
|
||||
# Default: True
|
||||
EnableVitality = True
|
||||
|
||||
# Option to set a lower vitality at character creation.
|
||||
# Vitality needs to be enabled, and startingpoints needs to be lower
|
||||
# than max-vitality points.
|
||||
# Default: 140000
|
||||
StartingVitalityPoints = 140000
|
||||
|
||||
# Calculate vitality bonus for raidboss kills.
|
||||
# Default: False
|
||||
RaidbossUseVitality = False
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Symbol Seal configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Maximum symbol seal gauge points
|
||||
# Default: 7800
|
||||
MaxSymbolSealPoints = 7800
|
||||
|
||||
# Consume symbol seal points speed per kill
|
||||
ConsumeSymbolSealPoints = 1
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Limits
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Maximum Exp Bonus.
|
||||
# from vitality + nevit's hunting bonus, and etc..
|
||||
# Default: 0 (Disabled)
|
||||
MaxExpBonus = 0
|
||||
|
||||
# Maximum Sp Bonus.
|
||||
# from vitality + nevit's hunting bonus, and etc..
|
||||
# Default: 0 (Disabled)
|
||||
MaxSpBonus = 0
|
||||
|
||||
# Maximum character running speed.
|
||||
# Default: 300
|
||||
MaxRunSpeed = 300
|
||||
|
||||
# Maximum summon running speed.
|
||||
# Default: 350
|
||||
MaxRunSpeedSummon = 350
|
||||
|
||||
# Maximum character Physical Attack.
|
||||
# Default: 999999999
|
||||
MaxPAtk = 999999999
|
||||
|
||||
# Maximum character Magic Attack.
|
||||
# Default: 999999999
|
||||
MaxMAtk = 999999999
|
||||
|
||||
# Maximum character Physical Critical Rate. (10 = 1%)
|
||||
# Default: 500
|
||||
MaxPCritRate = 500
|
||||
|
||||
# Maximum character Magic Critical Rate. (10 = 1%)
|
||||
# Default: 200
|
||||
MaxMCritRate = 200
|
||||
|
||||
# Maximum character Attack Speed.
|
||||
# Default: 1500
|
||||
MaxPAtkSpeed = 1500
|
||||
|
||||
# Maximum character Cast Speed.
|
||||
# Default: 1999
|
||||
MaxMAtkSpeed = 1999
|
||||
|
||||
# Maximum character Evasion.
|
||||
# Default: 250
|
||||
MaxEvasion = 250
|
||||
|
||||
# Maximum character HP.
|
||||
# Default: 150000
|
||||
MaxHP = 150000
|
||||
|
||||
# Minimum and Maximum Abnormal State Success Rate.
|
||||
# This affect all skills/effects chances, except in skills where minChance or maxChance parameters are defined.
|
||||
# Default: H5 minimum of 10% and maximum of 90%.
|
||||
MinAbnormalStateSuccessRate = 10
|
||||
MaxAbnormalStateSuccessRate = 90
|
||||
|
||||
# Maximum amount of SP a character can posses.
|
||||
# Current retail limit is 500 billion, use -1 to set it to unlimited.
|
||||
# Default: 50000000000
|
||||
MaxSp = 500000000000
|
||||
|
||||
# Maximum Player Level
|
||||
# WARNING: Cannot exceed the maximum experience.xml level.
|
||||
# Example: Set as 85 to force the maximum player level at 85.
|
||||
# Default: 130
|
||||
MaximumPlayerLevel = 130
|
||||
|
||||
# Maximum number of allowed subclasses for every player.
|
||||
# Do not use more than 3!
|
||||
# Default: 1
|
||||
MaxSubclass = 1
|
||||
|
||||
# Starting level for subclasses.
|
||||
# Default: 40
|
||||
BaseSubclassLevel = 40
|
||||
|
||||
# Starting level for dualclasses after reawaking.
|
||||
# Default: 85
|
||||
BaseDualclassLevel = 85
|
||||
|
||||
# Maximum subclass level.
|
||||
# Default: 80
|
||||
MaxSubclassLevel = 80
|
||||
|
||||
# Maximum number of allowed slots for Private Stores Sell.
|
||||
# Other means all the other races aside from Dwarf.
|
||||
# Default: 4, 3
|
||||
MaxPvtStoreSellSlotsDwarf = 4
|
||||
MaxPvtStoreSellSlotsOther = 3
|
||||
|
||||
# Maximum number of allowed slots for Private Stores Buy.
|
||||
# Other means all the other races aside from Dwarf.
|
||||
# Default: 5, 4
|
||||
MaxPvtStoreBuySlotsDwarf = 5
|
||||
MaxPvtStoreBuySlotsOther = 4
|
||||
|
||||
# This will control the inventory space limit (NOT WEIGHT LIMIT).
|
||||
# Default: 80, 100, 250
|
||||
MaximumSlotsForNoDwarf = 80
|
||||
MaximumSlotsForDwarf = 100
|
||||
MaximumSlotsForGMPlayer = 250
|
||||
MaximumSlotsForQuestItems = 100
|
||||
|
||||
# This will control a character's warehouse capacity.
|
||||
# Notes:
|
||||
# This must be LESS then 300 or the client will crash.
|
||||
# Default: 120, 100, 200, 20
|
||||
MaximumWarehouseSlotsForDwarf = 120
|
||||
MaximumWarehouseSlotsForNoDwarf = 100
|
||||
MaximumWarehouseSlotsForClan = 200
|
||||
|
||||
# Freight
|
||||
# Maximum items that can be placed in Freight
|
||||
# Default: 200
|
||||
MaximumFreightSlots = 200
|
||||
# The price for each item that's deposited
|
||||
# Default: 1000
|
||||
FreightPrice = 1000
|
||||
|
||||
# Npc talk blockage. When a player talks to a NPC, he must wait some secs
|
||||
# before being able to walk again. In seconds
|
||||
# Default: 0
|
||||
# Set to 0 to disable it
|
||||
NpcTalkBlockingTime = 0
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Mentoring System
|
||||
# ---------------------------------------------------------------------------
|
||||
# When a mentee reach 86 level mentor receives 5 days penalty
|
||||
# Default: 1
|
||||
MentorPenaltyForMenteeComplete = 1
|
||||
# When a mentee leave his mentor or get kicked by it mentor receives 7 days penalty
|
||||
# Default: 2
|
||||
MentorPenaltyForMenteeLeave = 2
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Enchanting
|
||||
# ---------------------------------------------------------------------------
|
||||
# List of non-enchantable items.
|
||||
# Currently apprentice, travelers weapons and Pailaka items
|
||||
# Default: 7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,13293,13294,13296
|
||||
EnchantBlackList = 7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,13293,13294,13296
|
||||
|
||||
# If enabled, enchanting over the maximum enchant limit will not be possible; instead, a warning message will be sent to the player.
|
||||
# You can set custom maxEnchant values at EnchantItemData.xml
|
||||
# Default: True
|
||||
DisableOverEnchanting = True
|
||||
|
||||
# Minimum armor enchant announce.
|
||||
# Default: 6
|
||||
MinimumArmorEnchantAnnounce = 6
|
||||
|
||||
# Minimum weapon enchant announce.
|
||||
# Default: 7
|
||||
MinimumWeaponEnchantAnnounce = 7
|
||||
|
||||
# Maximum armor enchant announce.
|
||||
# Default: 30
|
||||
MaximumArmorEnchantAnnounce = 30
|
||||
|
||||
# Maximum weapon enchant announce.
|
||||
# Default: 30
|
||||
MaximumWeaponEnchantAnnounce = 30
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Augmenting
|
||||
# ---------------------------------------------------------------------------
|
||||
# List of non-augmentable items, currently contains only Grand Boss jewels
|
||||
# Shadow, common, time-limited, hero, pvp, wear items are hardcoded, as well as all etcitems.
|
||||
# Rods can't be augmented too.
|
||||
# Default: 6656,6657,6658,6659,6660,6661,6662,8191,10170,10314
|
||||
AugmentationBlackList = 6656,6657,6658,6659,6660,6661,6662,8191,10170,10314,13740,13741,13742,13743,13744,13745,13746,13747,13748,14592,14593,14594,14595,14596,14597,14598,14599,14600,14664,14665,14666,14667,14668,14669,14670,14671,14672,14801,14802,14803,14804,14805,14806,14807,14808,14809,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,16025,16026,21712,22173,22174,22175
|
||||
|
||||
# Allows alternative augmentation of PvP items.
|
||||
# Default: False
|
||||
AltAllowAugmentPvPItems = False
|
||||
|
||||
# Enable Trade/Drop/Sell for augmented items.
|
||||
# Default: False
|
||||
AltAllowAugmentTrade = False
|
||||
|
||||
# Enable Destroy/Crystalize for augmented items.
|
||||
# Default: True
|
||||
AltAllowAugmentDestroy = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Karma
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Karma player can be killed in Peace zone.
|
||||
# Default: False
|
||||
AltKarmaPlayerCanBeKilledInPeaceZone = False
|
||||
|
||||
# Karma player can use GateKeeper.
|
||||
# Default: False
|
||||
AltKarmaPlayerCanUseGK = False
|
||||
|
||||
# Karma player can use escape and recall skills.
|
||||
# Default: True
|
||||
AltKarmaPlayerCanTeleport = True
|
||||
|
||||
# Karma player can shop.
|
||||
# Default: True
|
||||
AltKarmaPlayerCanShop = True
|
||||
|
||||
# Karma player can trade.
|
||||
# Default: True
|
||||
AltKarmaPlayerCanTrade = True
|
||||
|
||||
# Karma player can use warehouse.
|
||||
# Default: True
|
||||
AltKarmaPlayerCanUseWareHouse = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Fame
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# The maximum number of Fame points a player can have
|
||||
# Default: 100000
|
||||
MaxPersonalFamePoints = 100000
|
||||
|
||||
# How frequently the player gets Fame points while in a Fortress Siege zone
|
||||
# Default: 300s (5 min)
|
||||
FortressZoneFameTaskFrequency = 300
|
||||
|
||||
# How much Fame aquired while in a Fortress Siege Zone
|
||||
# Default: 31
|
||||
FortressZoneFameAquirePoints = 31
|
||||
|
||||
# How frequently the player gets Fame points while in a Castle Siege zone
|
||||
# Default: 300s (5 min)
|
||||
CastleZoneFameTaskFrequency = 300
|
||||
|
||||
# How much Fame acquired while in a Castle Siege Zone
|
||||
# Default: 1250
|
||||
CastleZoneFameAquirePoints = 1250
|
||||
|
||||
# Dead players can receive fame.
|
||||
# Default: True
|
||||
FameForDeadPlayers = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Crafting
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Option to enable or disable crafting.
|
||||
# Default: True
|
||||
CraftingEnabled = True
|
||||
|
||||
# Limits for recipes
|
||||
# Default: 100, 100
|
||||
DwarfRecipeLimit = 100
|
||||
CommonRecipeLimit = 100
|
||||
|
||||
# Store/Restore Dwarven Manufacture list
|
||||
# Keep manufacture shoplist after relog
|
||||
# Default: False
|
||||
StoreRecipeShopList = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Clan
|
||||
# ---------------------------------------------------------------------------
|
||||
# When enabled all clan leader requests will be performed instantly.
|
||||
# Default: False
|
||||
AltClanLeaderInstantActivation = False
|
||||
|
||||
# Number of days you have to wait before joining another clan.
|
||||
# Default: 1
|
||||
DaysBeforeJoinAClan = 1
|
||||
|
||||
# Number of days you have to wait before creating a new clan.
|
||||
# Default: 10
|
||||
DaysBeforeCreateAClan = 10
|
||||
|
||||
# Number of days it takes to dissolve a clan.
|
||||
# Default: 7
|
||||
DaysToPassToDissolveAClan = 7
|
||||
|
||||
# Number of days before joining a new alliance when clan voluntarily leave an alliance.
|
||||
# DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
|
||||
# Default: 1
|
||||
DaysBeforeJoinAllyWhenLeaved = 1
|
||||
|
||||
# Number of days before joining a new alliance when clan was dismissed from an alliance.
|
||||
# DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
|
||||
# Default: 1
|
||||
DaysBeforeJoinAllyWhenDismissed = 1
|
||||
|
||||
# Number of days before accepting a new clan for alliance when clan was dismissed from an alliance.
|
||||
# DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
|
||||
# Default: 1
|
||||
DaysBeforeAcceptNewClanWhenDismissed = 1
|
||||
|
||||
# Number of days before creating a new alliance after dissolving an old alliance.
|
||||
# DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
|
||||
# Default: 1
|
||||
DaysBeforeCreateNewAllyWhenDissolved = 1
|
||||
|
||||
# Maximum number of clans in alliance.
|
||||
# Default: 3
|
||||
AltMaxNumOfClansInAlly = 3
|
||||
|
||||
# Allow clan members to withdraw from the clan warehouse.
|
||||
# Default: False
|
||||
AltMembersCanWithdrawFromClanWH = False
|
||||
|
||||
# Remove castle circlets after a clan loses their castle or a player leaves a clan.
|
||||
# Default: True
|
||||
RemoveCastleCirclets = True
|
||||
|
||||
# Number of members needed to request a clan war.
|
||||
# Default: 15
|
||||
AltClanMembersForWar = 15
|
||||
|
||||
# The the time that player must be online to be counted as online player and registered for clan bonus
|
||||
# Default: 30mins
|
||||
AltClanMembersTimeForBonus = 30mins
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Party
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Maximum count of players in one party.
|
||||
# WARNING: More than 7 can cause client UI problems.
|
||||
# Default: 7
|
||||
AltPartyMaxMembers = 7
|
||||
|
||||
# When you made damage to a mob and are inside this range, you will be considered as player to reward.
|
||||
# Checks for party range to mob to calculate rewards(exp, items).
|
||||
# Default: 1500
|
||||
AltPartyRange = 1500
|
||||
|
||||
# If true, when party leader leaves party, next member in party will be the leader.
|
||||
# If false the party be will dispersed.
|
||||
# Default: False
|
||||
AltLeavePartyLeader = False
|
||||
|
||||
# Consider same command channel members friends. (Used by target handlers.)
|
||||
# Retail is supposed to be false, but have no proof that it is like that.
|
||||
AltCommandChannelFriends = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Initial Settings:
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
#Initial Equipment Events is to enable a special settings for the items that a new character starts with.
|
||||
#Default: False
|
||||
InitialEquipmentEvent = False
|
||||
|
||||
# This is the amount of Adena that a new character starts their character with.
|
||||
# Default: 0
|
||||
StartingAdena = 0
|
||||
|
||||
# This is the starting level of the new character.
|
||||
# Default: 1
|
||||
StartingLevel = 1
|
||||
|
||||
# This is the amount of SP that a new character starts their character with.
|
||||
# Default: 0
|
||||
StartingSP = 0
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Other Settings:
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This is the maximum amount of Adena that character can have in his inventory or warehouse.
|
||||
# The maximum input amount is 9,223,372,036,854,775,807. (nine quintillion
|
||||
# two hundred twenty three quadrillion three hundred seventy two trillion thirty six billion
|
||||
# eight hundred fifty four million seven hundred seventy five thousand eight hundred seven)
|
||||
# Setting negative values (-1 or others) will result in maximum amount available.
|
||||
# Big values do not cause critical errors, although only 16 digits are visible in the inventory
|
||||
# Default: 9999999999999 (9 Trillion 999 Billion 999 Million 999 Thousand 999 Adena)
|
||||
MaxAdena = 9999999999999
|
||||
|
||||
# Enable herbs auto pickup.
|
||||
# Default: False
|
||||
AutoLootHerbs = False
|
||||
|
||||
# This option, when set to True, will enable automatically picking up items.
|
||||
# If set False it will force the player to pickup dropped items from mobs.
|
||||
# This excludes herbs mentioned above and items from Raid/GrandBosses with minions.
|
||||
# Default: False
|
||||
AutoLoot = False
|
||||
|
||||
# This option, when set to True, will enable automatically picking up items from Raid/GrandBosses with minions.
|
||||
# If set False it will force the player to pickup dropped items from bosses.
|
||||
# This excludes herbs mentioned above and items from mobs.
|
||||
# Default: False
|
||||
AutoLootRaids = False
|
||||
|
||||
# Prevent auto loot when inventory slot limit is reached.
|
||||
# The items will be dropped to the ground instead.
|
||||
# Default: True
|
||||
AutoLootSlotLimit = True
|
||||
|
||||
# Delay for raid drop items loot privilege
|
||||
# Require Command Channel , check next option
|
||||
# Value is in seconds
|
||||
# Default: 900 (15min)
|
||||
RaidLootRightsInterval = 900
|
||||
|
||||
# Minimum size of Command Channel for apply raid loot privilege
|
||||
# Default: 45
|
||||
RaidLootRightsCCSize = 45
|
||||
|
||||
# Specific item ids for auto pickup.
|
||||
# Overrides all methods above.
|
||||
# Format: itemId,itemId,itemId,....
|
||||
# Default: 57
|
||||
AutoLootItemIds = 57,39629,39630,39631,39632,39633
|
||||
|
||||
# Enable keyboard movement.
|
||||
# Retail: True
|
||||
KeyboardMovement = True
|
||||
|
||||
# This is the time in seconds that it will take for the player command "/unstuck" to activate.
|
||||
# Default: 300
|
||||
UnstuckInterval = 300
|
||||
|
||||
# Teleport Watchdog Timeout (seconds)
|
||||
# Player forced to appear if remain in teleported state longer than timeout
|
||||
# Does not set too low, recommended value 60s.
|
||||
# This time is in seconds, leave it at 0 if you want this feature disabled.
|
||||
# Default: 0
|
||||
TeleportWatchdogTimeout = 0
|
||||
|
||||
# After a player spawns, this is the time the player is protected.
|
||||
# This time is in seconds, leave it at 0 if you want this feature disabled.
|
||||
# Retail (Since GE): 600 (10 minutes)
|
||||
# Default: 600
|
||||
PlayerSpawnProtection = 600
|
||||
|
||||
# After a player teleports, this is the time the player is protected.
|
||||
# This time is in seconds, leave it at 0 if you want this feature disabled.
|
||||
PlayerTeleportProtection = 0
|
||||
|
||||
# If enabled, players respawn in town on different locations defined in zone.xml for given town.
|
||||
# If disabled the first spawn location from zone.xml is used.
|
||||
# Default: True
|
||||
RandomRespawnInTownEnabled = True
|
||||
|
||||
# This will allow a random offset from the base teleport location coordinates based on a maximum offset.
|
||||
# Default: True
|
||||
OffsetOnTeleportEnabled = True
|
||||
|
||||
# Maximum offset for base teleport location when OffsetOnTeleportEnabled is enabled.
|
||||
# Default: 50
|
||||
MaxOffsetOnTeleport = 50
|
||||
|
||||
# Enable teleporting while siege in progress.
|
||||
# Default: False
|
||||
TeleportWhileSiegeInProgress = False
|
||||
|
||||
# Enable teleporting while player in combat.
|
||||
# Default: False
|
||||
TeleportWhilePlayerInCombat = False
|
||||
|
||||
# This option is to enable or disable the use of in game petitions.
|
||||
# The MaxPetitionsPerPlayer is the amount of petitions a player can make.
|
||||
# The MaximumPendingPetitions is the total amount of petitions in the server.
|
||||
# Note:
|
||||
# Logically, MaximumPendingPetitions must be higher then MaxPetitionsPerPlayer.
|
||||
# Default: True, 5, 25
|
||||
PetitioningAllowed = True
|
||||
MaxPetitionsPerPlayer = 5
|
||||
MaxPetitionsPending = 25
|
||||
|
||||
# Max player level for free teleporting around the world.
|
||||
# Default: 99
|
||||
MaxFreeTeleportLevel = 99
|
||||
|
||||
# Allow character deletion after days set below. To disallow character deletion, set this equal to 0.
|
||||
# Default: 1
|
||||
DeleteCharAfterDays = 1
|
||||
|
||||
# Disconnect player after being dead for 1 hour.
|
||||
# Default: True
|
||||
DisconnectAfterDeath = True
|
||||
|
||||
|
||||
# PARTY XP DISTRIBUTION
|
||||
# With "auto method" member is cut from Exp/SP distribution when his share is lower than party bonus acquired for him (30% for 2 member party).
|
||||
# In that case he will not receive any Exp/SP from party and is not counted for party bonus.
|
||||
# If you don't want to have a cutoff point for party members' XP distribution, set the first option to "none".
|
||||
# Available Options: auto, level, percentage, highfive, none
|
||||
# Default: level
|
||||
PartyXpCutoffMethod = level
|
||||
|
||||
# This option takes effect when "percentage" method is chosen. Don't use high values for this!
|
||||
# Default: 3.0
|
||||
PartyXpCutoffPercent = 3.0
|
||||
|
||||
# This option takes effect when "level" method is chosen. Don't use low values for this!
|
||||
# Default: 20
|
||||
PartyXpCutoffLevel = 20
|
||||
|
||||
# This option takes effect when "highfive" method is chosen.
|
||||
# Each pair of numbers represent a level range.
|
||||
# If the gap is between the first pair, there is no penalty.
|
||||
# If the gap is between the second pair, the lowest party member will gain only 30% of the XP that others receive.
|
||||
# If the gap is between the last pair, the lowest party member will not receive any XP.
|
||||
# Default: 0,9;10,14;15,99
|
||||
PartyXpCutoffGaps = 0,9;10,14;15,99
|
||||
|
||||
# This option takes effect when "highfive" method is chosen.
|
||||
# Each number represent the XP percent gain at that level gap.
|
||||
# For the first gap, the lowest party member will gain 100% XP as there is no penalty.
|
||||
# For the second gap, the lowest party member will gain only 30% of the XP that others receive.
|
||||
# For the last gap, the lowest party member will not receive any XP.
|
||||
# Default: 100;30;0
|
||||
PartyXpCutoffGapPercent = 100;30;0
|
||||
|
||||
# Disable tutorial quests.
|
||||
# Default: False
|
||||
DisableTutorial = False
|
||||
|
||||
# Player can in client define his own key mapping and for save it must be stored server side.
|
||||
# Default: True
|
||||
StoreCharUiSettings = True
|
||||
|
||||
# Character name restriction
|
||||
# Disallow characters to have a name which contains the words.
|
||||
# Split them with ",". Example: announcements,announce...
|
||||
ForbiddenNames = annou,ammou,amnou,anmou,anou,amou
|
||||
|
||||
# If enabled, when character in silence (block PMs) mode sends a PM to a character, silence mode no longer blocks this character,
|
||||
# allowing both characters send each other PMs even with enabled silence mode.
|
||||
# The exclude list is cleared each time the character goes into silence mode.
|
||||
SilenceModeExclude = False
|
||||
|
||||
# Show introduction video for newly created characters.
|
||||
# Default: True
|
||||
ShowIntroVideo = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Ability Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# SP needed to reset used ability point.
|
||||
# Default: 500000000
|
||||
AbilityPointsResetSP = 500000000
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Homunculus Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Starting Homunculus count.
|
||||
# Default: 3
|
||||
StartHomunculusCount = 3
|
||||
|
||||
# Maximum Homunculus count.
|
||||
# Default: 9
|
||||
MaxHomunculusCount = 9
|
17
L2J_Mobius_10.3_MasterClass/dist/game/config/ClanShop.xml
vendored
Normal file
17
L2J_Mobius_10.3_MasterClass/dist/game/config/ClanShop.xml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- EACH PRODUCT SHOULD HAVE UNIQUE ITEM ID -->
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/ClanShop.xsd">
|
||||
<clan level="5" item="36952" count="1" adena="10000000" fame="50000" /> <!-- Air Bike -->
|
||||
<clan level="1" item="48282" count="1" adena="0" fame="2000" /> <!-- Party Scroll of Escape -->
|
||||
<clan level="1" item="48287" count="1" adena="0" fame="15000" /> <!-- Snow Kung Transformation Stick (15-day) -->
|
||||
<clan level="1" item="48288" count="1" adena="0" fame="15000" /> <!-- Scarecrow Jack Transformation Stick (15-day) -->
|
||||
<clan level="1" item="48289" count="1" adena="0" fame="15000" /> <!-- Tin Golem Transformation Stick (15-day) -->
|
||||
<clan level="1" item="48290" count="1" adena="0" fame="15000" /> <!-- Gatekeeper Transformation Stick (15-day) -->
|
||||
<clan level="1" item="48291" count="1" adena="0" fame="15000" /> <!-- Aqua Elf Transformation Stick (15-day) -->
|
||||
<clan level="1" item="12819" count="1" adena="0" fame="500" /> <!-- Scroll: Recovery (Battleground) -->
|
||||
<clan level="1" item="35756" count="1" adena="10000000" fame="50000" /> <!-- High-grade Scroll: Reputation -->
|
||||
<clan level="1" item="35752" count="1" adena="10000000" fame="50000" /> <!-- Mid-grade Scroll: PK -->
|
||||
<clan level="1" item="27592" count="1" adena="0" fame="9000" /> <!-- Supply Box - Top Grade -->
|
||||
<clan level="1" item="47739" count="1" adena="5000000" fame="30000" /> <!-- Hunter's Amulet -->
|
||||
<clan level="10" item="48283" count="1" adena="500000" fame="2000" /> <!-- Stealth Detector -->
|
||||
</list>
|
122
L2J_Mobius_10.3_MasterClass/dist/game/config/ClassMaster.xml
vendored
Normal file
122
L2J_Mobius_10.3_MasterClass/dist/game/config/ClassMaster.xml
vendored
Normal file
@@ -0,0 +1,122 @@
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/classMaster.xsd">
|
||||
<classMaster classChangeEnabled="false" spawnClassMasters="false" showPopupWindow="false">
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>FIRST_CLASS_GROUP</category>
|
||||
</appliesTo>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>SECOND_CLASS_GROUP</category>
|
||||
</appliesTo>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>THIRD_CLASS_GROUP</category>
|
||||
</appliesTo>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>TANKER_CATEGORY</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="32264" count="1" /> <!-- Abelius' Power - Sigel Knight -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>WARRIOR_CATEGORY</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="32265" count="1" /> <!-- Sapyros' Power - Tyrr Warrior -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>ROGUE_CATEGORY</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="32266" count="1" /> <!-- Ashagen's Power - Othell Rogue -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>ARCHER_CATEGORY</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="32267" count="1" /> <!-- Cranigg's Power - Yul Archer -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>WIZARD_CATEGORY</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="32268" count="1" /> <!-- Soltkreig's Power - Feoh Wizard -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>SUMMONER_CATEGORY</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="32269" count="1" /> <!-- Naviarope's Power - Wynn Summoner -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>ENCHANTER_CATEGORY</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="32270" count="1" /> <!-- Leister's Power - Iss Enchanter -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>HEALER_CATEGORY</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="32271" count="1" /> <!-- Lakcis' Power - Aeore Healer -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>ERTHEIA_THIRD_FIGHTER_GROUP</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="40268" count="1" /> <!-- Sayha's Box - Eviscerator -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<classChangeOption name="Free">
|
||||
<appliesTo>
|
||||
<category>ERTHEIA_THIRD_WIZARD_GROUP</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="40269" count="1" /> <!-- Sayha's Box - Sayha's Seer -->
|
||||
<item id="37374" count="2" /> <!-- Chaos Pomander -->
|
||||
</rewards>
|
||||
</classChangeOption>
|
||||
<!-- Example:
|
||||
<classChangeOption name="Pay Adena and Ancient Adena">
|
||||
<appliesTo>
|
||||
<category>FOURTH_CLASS_GROUP</category>
|
||||
</appliesTo>
|
||||
<rewards>
|
||||
<item id="37044" count="1" />Immortal Scroll (Skill Enchantment, untradable)
|
||||
</rewards>
|
||||
<conditions>
|
||||
<item id="57" count="3000000" />3 million Adena for fourth class
|
||||
<item id="5575" count="300000" />300k Ancient Adena for fourth class
|
||||
</conditions>
|
||||
</classChangeOption> -->
|
||||
</classMaster>
|
||||
</list>
|
14
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/AllowedPlayerRaces.ini
vendored
Normal file
14
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/AllowedPlayerRaces.ini
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Allowed Player Races
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Allowing specific races to be created.
|
||||
# Default: True
|
||||
AllowHuman = True
|
||||
AllowElf = True
|
||||
AllowDarkElf = True
|
||||
AllowOrc = True
|
||||
AllowDwarf = True
|
||||
AllowKamael = True
|
||||
AllowErtheia = True
|
||||
AllowDeathKnight = True
|
34
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/AutoPotions.ini
vendored
Normal file
34
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/AutoPotions.ini
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Auto Potion Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Use .apon / .apoff or .potionon / .potionoff commands to enable / disable.
|
||||
|
||||
# Enable auto potion commands.
|
||||
AutoPotionsEnabled = false
|
||||
|
||||
# Use auto potions in Olympiad.
|
||||
AutoPotionsInOlympiad = false
|
||||
|
||||
# Minimum player level to use the commands.
|
||||
AutoPotionMinimumLevel = 1
|
||||
|
||||
# Enable auto CP potions.
|
||||
AutoCpEnabled = true
|
||||
# Percentage that CP potions will be used.
|
||||
AutoCpPercentage = 70
|
||||
# Auto CP item ids. Order by use priority.
|
||||
AutoCpItemIds = 5592,5591
|
||||
|
||||
# Enable auto HP potions.
|
||||
AutoHpEnabled = true
|
||||
# Percentage that HP potions will be used.
|
||||
AutoHpPercentage = 70
|
||||
# Auto HP item ids. Order by use priority.
|
||||
AutoHpItemIds = 1540,1539,1061,1060
|
||||
|
||||
# Enable auto MP potions.
|
||||
AutoMpEnabled = true
|
||||
# Percentage that MP potions will be used.
|
||||
AutoMpPercentage = 70
|
||||
# Auto MP item ids. Order by use priority.
|
||||
AutoMpItemIds = 728
|
12
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/Banking.ini
vendored
Normal file
12
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/Banking.ini
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Banking System
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable/Disable Banking System
|
||||
BankingEnabled = False
|
||||
|
||||
# Amount of Goldbars a player gets when they use the ".deposit" command. Also the same amount they will lose with ".withdraw".
|
||||
BankingGoldbarCount = 1
|
||||
|
||||
# Amount of Adena a player gets when they use the ".withdraw" command. Also the same amount they will lose with ".deposit".
|
||||
BankingAdenaCount = 500000000
|
21
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/BossAnnouncements.ini
vendored
Normal file
21
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/BossAnnouncements.ini
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Boss Announcement Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable RaidBoss spawn announcements.
|
||||
RaidBossSpawnAnnouncements = false
|
||||
|
||||
# Enable RaidBoss defeat announcements.
|
||||
RaidBossDefeatAnnouncements = false
|
||||
|
||||
# Enable RaidBoss announcements in instances.
|
||||
RaidBossInstanceAnnouncements = false
|
||||
|
||||
# Enable GrandBoss spawn announcements.
|
||||
GrandBossSpawnAnnouncements = false
|
||||
|
||||
# Enable GrandBoss defeat announcements.
|
||||
GrandBossDefeatAnnouncements = false
|
||||
|
||||
# Enable GrandBoss announcements in instances.
|
||||
GrandBossInstanceAnnouncements = false
|
76
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ChampionMonsters.ini
vendored
Normal file
76
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ChampionMonsters.ini
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Champion mobs - Turn random mobs into Champions
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable/Disable Champion Mob System.
|
||||
ChampionEnable = False
|
||||
|
||||
# Force Champion mobs to be passive?
|
||||
# To leave champion mobs to default/Aggressive, set to False.
|
||||
# To set all champion mobs to Passive, set True.
|
||||
ChampionPassive = False
|
||||
|
||||
# % chance for a mob to became champion (0 to disable).
|
||||
ChampionFrequency = 5
|
||||
|
||||
# Title of all Champion Mobs.
|
||||
ChampionTitle = Champion
|
||||
|
||||
# Red aura for Champion Mobs.
|
||||
ChampionAura = True
|
||||
|
||||
# Min and max levels allowed for a mob to be a Champion mob.
|
||||
ChampionMinLevel = 20
|
||||
ChampionMaxLevel = 85
|
||||
|
||||
# Hp multiplier for Champion mobs.
|
||||
ChampionHp = 8
|
||||
|
||||
# Hp Regen Multiplier for Champion mobs.
|
||||
ChampionHpRegen = 1.0
|
||||
|
||||
# Exp/Sp rewards multiplier for Champion mobs.
|
||||
ChampionRewardsExpSp = 8.0
|
||||
|
||||
# Standard rewards chance multiplier for Champion mobs.
|
||||
ChampionRewardsChance = 8.0
|
||||
|
||||
# Standard rewards amount multiplier for Champion mobs.
|
||||
ChampionRewardsAmount = 1.0
|
||||
|
||||
# Adena & Seal Stone rewards chance multiplier for Champion mobs.
|
||||
ChampionAdenasRewardsChance = 1.0
|
||||
|
||||
# Adena & Seal Stone rewards amount multiplier for Champion mobs.
|
||||
ChampionAdenasRewardsAmount = 1.0
|
||||
|
||||
# P. Attack and M. Attack bonus for Champion mobs.
|
||||
ChampionAtk = 1.0
|
||||
|
||||
# Physical/Magical Attack Speed bonus for Champion mobs.
|
||||
ChampionSpdAtk = 1.0
|
||||
|
||||
# Specified id and amount of reward a player will receive if they are awarded the item.
|
||||
# Separated by ;
|
||||
# Example: 6393,1;57,5000
|
||||
ChampionRewardItems = 6393,1
|
||||
|
||||
# % Chance to obtain a specified reward item from a lower level Champion mob.
|
||||
# Default: 0
|
||||
ChampionRewardLowerLvlItemChance = 0
|
||||
|
||||
# % Chance to obtain a specified reward item from a higher level Champion mob.
|
||||
# Default: 100
|
||||
ChampionRewardHigherLvlItemChance = 100
|
||||
|
||||
# Do you want to enable the vitality calculation when killing champion mobs?
|
||||
# Be aware that it can lead to huge unbalance on your server, your rate for that mob would
|
||||
# then be "mobXP x serverRate x vitalityRate x championXpRate
|
||||
# Notes:
|
||||
# Works only if EnableVitality = True
|
||||
# Default: False
|
||||
ChampionEnableVitality = False
|
||||
|
||||
# Enable spawning of the champions in instances
|
||||
# Default = False
|
||||
ChampionEnableInInstances = False
|
9
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ChatModeration.ini
vendored
Normal file
9
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ChatModeration.ini
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Chat Moderation
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This option will enable using of the voice commands .banchat and .unbanchat
|
||||
# for players with corresponding access level (default: 100).
|
||||
# Check access_levels.sql and admin_command_access_rights for details.
|
||||
# Default: True
|
||||
ChatAdmin = True
|
60
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ClassBalance.ini
vendored
Normal file
60
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ClassBalance.ini
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Class Balance
|
||||
# ---------------------------------------------------------------------------
|
||||
# Multiply parameters based on player class. May use both class id or enums.
|
||||
# Example: ELVEN_FIGHTER*2;PALUS_KNIGHT*2.5;...
|
||||
|
||||
PveMagicalSkillDamageMultipliers =
|
||||
PvpMagicalSkillDamageMultipliers =
|
||||
|
||||
PveMagicalSkillDefenceMultipliers =
|
||||
PvpMagicalSkillDefenceMultipliers =
|
||||
|
||||
PveMagicalSkillCriticalChanceMultipliers =
|
||||
PvpMagicalSkillCriticalChanceMultipliers =
|
||||
|
||||
PveMagicalSkillCriticalDamageMultipliers =
|
||||
PvpMagicalSkillCriticalDamageMultipliers =
|
||||
|
||||
PvePhysicalSkillDamageMultipliers =
|
||||
PvpPhysicalSkillDamageMultipliers =
|
||||
|
||||
PvePhysicalSkillDefenceMultipliers =
|
||||
PvpPhysicalSkillDefenceMultipliers =
|
||||
|
||||
PvePhysicalSkillCriticalChanceMultipliers =
|
||||
PvpPhysicalSkillCriticalChanceMultipliers =
|
||||
|
||||
PvePhysicalSkillCriticalDamageMultipliers =
|
||||
PvpPhysicalSkillCriticalDamageMultipliers =
|
||||
|
||||
PvePhysicalAttackDamageMultipliers =
|
||||
PvpPhysicalAttackDamageMultipliers =
|
||||
|
||||
PvePhysicalAttackDefenceMultipliers =
|
||||
PvpPhysicalAttackDefenceMultipliers =
|
||||
|
||||
PvePhysicalAttackCriticalChanceMultipliers =
|
||||
PvpPhysicalAttackCriticalChanceMultipliers =
|
||||
|
||||
PvePhysicalAttackCriticalDamageMultipliers =
|
||||
PvpPhysicalAttackCriticalDamageMultipliers =
|
||||
|
||||
PveBlowSkillDamageMultipliers =
|
||||
PvpBlowSkillDamageMultipliers =
|
||||
|
||||
PveBlowSkillDefenceMultipliers =
|
||||
PvpBlowSkillDefenceMultipliers =
|
||||
|
||||
PveEnergySkillDamageMultipliers =
|
||||
PvpEnergySkillDamageMultipliers =
|
||||
|
||||
PveEnergySkillDefenceMultipliers =
|
||||
PvpEnergySkillDefenceMultipliers =
|
||||
|
||||
PlayerHealingSkillMultipliers =
|
||||
|
||||
SkillMasteryChanceMultipliers =
|
||||
|
||||
ExpAmountMultipliers =
|
||||
SpAmountMultipliers =
|
186
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/CommunityBoard.ini
vendored
Normal file
186
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/CommunityBoard.ini
vendored
Normal file
@@ -0,0 +1,186 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Custom Community Board
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable Custom Community Board.
|
||||
# Default: False
|
||||
CustomCommunityBoard = True
|
||||
|
||||
# Currency used by the Community Board (itemId).
|
||||
# Default: 57 (Adena)
|
||||
CommunityCurrencyId = 57
|
||||
|
||||
# Enable Multisells.
|
||||
# Default: True
|
||||
CommunityEnableMultisells = True
|
||||
|
||||
# Enable Teleports.
|
||||
# Default: True
|
||||
CommunityEnableTeleports = True
|
||||
|
||||
# Enable Buffs.
|
||||
# Default: True
|
||||
CommunityEnableBuffs = True
|
||||
|
||||
# Enable Heal.
|
||||
# Default: True
|
||||
CommunityEnableHeal = True
|
||||
|
||||
# Enable delevel.
|
||||
# Default: False
|
||||
CommunityEnableDelevel = False
|
||||
|
||||
# Remove all ability skills upon delevel.
|
||||
# Default: False
|
||||
DelevelRemoveAbilities = False
|
||||
|
||||
# Price for Teleports.
|
||||
# Default: 0 (free)
|
||||
CommunityTeleportPrice = 0
|
||||
|
||||
# Price for Buffs.
|
||||
# Default: 0 (free)
|
||||
CommunityBuffPrice = 0
|
||||
|
||||
# Price for Heal.
|
||||
# Default: 0 (free)
|
||||
CommunityHealPrice = 0
|
||||
|
||||
# Price for Delevel.
|
||||
# Default: 0 (free)
|
||||
CommunityDelevelPrice = 0
|
||||
|
||||
# Disable Community Board while player has Karma.
|
||||
# Default: True
|
||||
CommunityKarmaDisabled = True
|
||||
|
||||
# Cast animations of each buff.
|
||||
# Default: False
|
||||
CommunityCastAnimations = False
|
||||
|
||||
# Enable buying premium from community board.
|
||||
# Premium System must be enabled.
|
||||
# Default: False
|
||||
CommunityPremiumSystem = False
|
||||
|
||||
# ItemID for buying premium in community board.
|
||||
# Check data/html/CommunityBoard/Custom/premium/main.html
|
||||
CommunityPremiumBuyCoinId = 57
|
||||
|
||||
# Amount of coins needed for each premium day bought.
|
||||
CommunityPremiumPricePerDay = 1000000
|
||||
|
||||
# List of available buffs to avoid exploits.
|
||||
# Usage: SkillId1,SkillId2...
|
||||
CommunityAvailableBuffs = 15642,15643,15644,15645,15651,15652,15653,15648,15649,15650
|
||||
|
||||
# List of available teleports to avoid exploits.
|
||||
# Usage: TeleportName1,X1,Y1,Z1;TeleportName2,X2,Y2,Z2...
|
||||
# the "\" indicates a new line
|
||||
CommunityTeleportList = \
|
||||
Giran,82698,148638,-3473;\
|
||||
Aden,147450,27064,-2208;\
|
||||
Goddard,147725,-56517,-2780;\
|
||||
Rune,44070,-50243,-796;\
|
||||
Dion,18748,145437,-3132;\
|
||||
Oren,82321,55139,-1529;\
|
||||
Gludio,-14225,123540,-3121;\
|
||||
Schuttgart,87358,-141982,-1341;\
|
||||
Heine,111115,219017,-3547;\
|
||||
Gludin,-83063,150791,-3133;\
|
||||
Hunters,116589,76268,-2734;\
|
||||
Arcan,207320,87617,-1112;\
|
||||
TalkingIsland,-114351,255286,-1520;\
|
||||
Dwarven,116551,-182493,-1525;\
|
||||
Orc,-44211,-113521,-241;\
|
||||
DarkElven,12428,16551,-4588;\
|
||||
Elven,45873,49288,-3064;\
|
||||
Kamael,-116934,46616,368;\
|
||||
Ertheia,-80353,247981,-3507;\
|
||||
Floran,17144,170156,-3502;\
|
||||
Gainak,16358,-114071,-229;\
|
||||
GuillotineFortress,54534,138703,-2548;\
|
||||
AntharasLair,131463,114496,-3717;\
|
||||
ShadowMotherTree,44898,33426,-3738;\
|
||||
AteliaFortress,-47803,60858,-3224;\
|
||||
BloodySwampland,-17983,37563,-3320;\
|
||||
SeaSpores,53168,13788,-5792;\
|
||||
BlazingSwamp,155310,-16339,-3315;\
|
||||
SealShilen,191940,16645,-3664;\
|
||||
GiantsCave,181737,46469,-4271;\
|
||||
EnchantedValley,109093,46354,-3720;\
|
||||
TheCemetery,175542,13963,-3256;\
|
||||
FieldSilence,91088,182384,-3187;\
|
||||
FieldWhispers,74592,207656,-3027;\
|
||||
LandChaos,-19230,-125942,-2611;\
|
||||
RaiderCrossroads,16119,-145804,-300;\
|
||||
PlunderousPlains,111965,-154172,-1523;\
|
||||
PavelRuins,92285,-123434,-4258;\
|
||||
PaganTemple,-16368,-38912,-10715;\
|
||||
NornilCave,-86961,42914,-2672;\
|
||||
MimirForest,-103032,46457,-1136;\
|
||||
BelethMagic,-22432,243491,-3063;\
|
||||
PhantasmalRidge,-13279,249017,-1992;\
|
||||
DesertQuarry,-9065,241635,-1969;\
|
||||
SeedAnnihilation,-175520,154505,2717;\
|
||||
FairySettlement,214361,80813,826;\
|
||||
OrbisTemple,198676,86609,-132;\
|
||||
GardenGenesis,207968,112199,-2058;\
|
||||
HarnakUnderground,-114700,147909,7715;\
|
||||
GardenSpirits,-51033,82411,-4882;\
|
||||
SuperionFortress,79827,152588,2309;\
|
||||
SeedHellfire,-147348,152527,-14051;\
|
||||
AltarEvil,-13982,22124,-3611;\
|
||||
SeedDestruction,-248377,250442,4341;\
|
||||
SeedInfinity,-212820,209827,4286;\
|
||||
FafurionTemple,168858,234348,-2308;\
|
||||
Baium,115213,16623,10080;\
|
||||
Beleth,16327,209228,-9357;\
|
||||
Antharas,183409,114824,-8020;\
|
||||
Valakas,213896,-115436,-1644;\
|
||||
Balok,148097,172644,-955;\
|
||||
Baylor,148097,172644,-955;\
|
||||
Frintezza,181382,-80872,-2733;\
|
||||
Freya,102408,-124349,-2772;\
|
||||
Teredor,85569,-142524,-1331;\
|
||||
Tiat,-248673,250268,4336;\
|
||||
Tauti,-147691,152740,-14059;\
|
||||
Kimerian,208112,87344,-1027;\
|
||||
Istina,-178445,147152,2131;\
|
||||
Octavis,210649,50508,-8398;\
|
||||
Lindvior,48450,-30337,-1681;\
|
||||
Trasken,79037,-182329,-9897;\
|
||||
Spezion,175471,148183,-11652;\
|
||||
Kelbim,-55059,52009,-2161;\
|
||||
Helios,92771,161909,3494;\
|
||||
Fafurion,180712,210664,-14823;\
|
||||
AdenCastle,147457,10843,-736;\
|
||||
DionCastle,22306,156027,-2953;\
|
||||
GiranCastle,112122,144855,-2751;\
|
||||
GludioCastle,-18361,113887,-2767;\
|
||||
GoddardCastle,147482,-45026,-2084;\
|
||||
InnadrilCastle,116265,244631,-1057;\
|
||||
OrenCastle,78116,36961,-2458;\
|
||||
RuneCastle,19118,-49136,-1266;\
|
||||
SchuttgartCastle,77540,-149114,-352;\
|
||||
AaruFort,72889,188048,-2580;\
|
||||
AntharasFort,77910,89232,-2883;\
|
||||
ArchaicFort,111798,-141743,-2927;\
|
||||
BayouFort,189897,36705,-3407;\
|
||||
BorderlandFort,157008,-68935,-2861;\
|
||||
CloudMountainFort,-54316,89187,-2819;\
|
||||
DemonFort,98822,-56465,-649;\
|
||||
DragonspineFort,10527,96849,-3424;\
|
||||
FloranFort,7690,150721,-2887;\
|
||||
HiveFort,15447,186169,-2921;\
|
||||
HuntersFort,124188,93295,-2142;\
|
||||
IvoryFort,71419,6187,-3036;\
|
||||
MonasticFort,71894,-92615,-1420;\
|
||||
NarsellFort,156707,53966,-3251;\
|
||||
ShantyFort,-55004,157132,-2050;\
|
||||
SouthernFort,-25348,219856,-3249;\
|
||||
SwampFort,68731,-63848,-2783;\
|
||||
TanorFort,58948,137927,-1752;\
|
||||
ValleyFort,126064,120508,-2583;\
|
||||
WesternFort,112350,-17183,-992;\
|
||||
WhiteSandsFort,116400,203804,-3331;
|
11
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/CustomDepositableItems.ini
vendored
Normal file
11
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/CustomDepositableItems.ini
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Custom Depositable Items
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Make all items depositable for private warehouse.
|
||||
# Default: False
|
||||
CustomDepositableEnabled = False
|
||||
|
||||
# Include quest items.
|
||||
# Default: False
|
||||
DepositableQuestItems = False
|
11
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/CustomMailManager.ini
vendored
Normal file
11
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/CustomMailManager.ini
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Custom Mail Manager
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable/Disable sending mail through the custom_mail SQL table.
|
||||
# Default: False
|
||||
CustomMailManagerEnabled = False
|
||||
|
||||
# Database query delay in seconds.
|
||||
# Default: 30
|
||||
DatabaseQueryDelay = 30
|
23
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/DelevelManager.ini
vendored
Normal file
23
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/DelevelManager.ini
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Delevel Manager (instant delevel NPC)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable Delevel Manager NPC.
|
||||
# Default: False
|
||||
Enabled = False
|
||||
|
||||
# Delevel Manager NPC id.
|
||||
# Default: 1002000
|
||||
NpcId = 1002000
|
||||
|
||||
# Required item id.
|
||||
# Default: 4356 (Gold Einhasad)
|
||||
RequiredItemId = 4356
|
||||
|
||||
# Required item count.
|
||||
# Default: 2
|
||||
RequiredItemCount = 2
|
||||
|
||||
# Mimimum level you can reach.
|
||||
# Default: 20
|
||||
MimimumDelevel = 20
|
29
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/DualboxCheck.ini
vendored
Normal file
29
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/DualboxCheck.ini
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Dualbox Check
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Maximum number of players per IP address allowed to enter game.
|
||||
# Default: 0 (unlimited)
|
||||
DualboxCheckMaxPlayersPerIP = 0
|
||||
|
||||
# Maximum number of players per IP address allowed to participate in olympiad.
|
||||
# Default: 0 (unlimited)
|
||||
DualboxCheckMaxOlympiadParticipantsPerIP = 0
|
||||
|
||||
# Maximum number of players per IP address allowed to participate in events using L2J Event Engine (//event).
|
||||
# Default: 0 (unlimited)
|
||||
DualboxCheckMaxL2EventParticipantsPerIP = 0
|
||||
|
||||
# Count offline traders as dualbox.
|
||||
# Default: False
|
||||
DualboxCountOfflineTraders = False
|
||||
|
||||
# Whitelist of the addresses for dualbox checks.
|
||||
# Format: Address1,Number1;Address2,Number2...
|
||||
# Network address can be number (127.0.0.1) or symbolic (localhost) formats.
|
||||
# Additional connection number added to the global limits for this address.
|
||||
# For example, if number of TvT event participants per IP address set to the 1 (no dualbox)
|
||||
# and whitelist contains "l2jmobius.org,2" then number of allowed participants from l2jmobius.org
|
||||
# will be 1+2=3. Use 0 or negative value for unlimited number of connections.
|
||||
# Default: 127.0.0.1,0 (no limits from localhost)
|
||||
DualboxCheckWhitelist = 127.0.0.1,0
|
64
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/FactionSystem.ini
vendored
Normal file
64
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/FactionSystem.ini
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Faction System (Good vs Evil)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable faction system.
|
||||
# Default: False
|
||||
EnableFactionSystem = False
|
||||
|
||||
# Starting location for all players.
|
||||
# Default: 85332,16199,-1252
|
||||
StartingLocation = 85332,16199,-1252
|
||||
|
||||
# Spawn location for faction manager NPC.
|
||||
# Default: 85712,15974,-1260,26808
|
||||
ManagerSpawnLocation = 85712,15974,-1260,26808
|
||||
|
||||
# Good base location.
|
||||
# Default: 45306,48878,-3058
|
||||
GoodBaseLocation = 45306,48878,-3058
|
||||
|
||||
# Evil base location.
|
||||
# Default: -44037,-113283,-237
|
||||
EvilBaseLocation = -44037,-113283,-237
|
||||
|
||||
# Good team name.
|
||||
# Default: Good
|
||||
GoodTeamName = Good
|
||||
|
||||
# Evil team name.
|
||||
# Default: Evil
|
||||
EvilTeamName = Evil
|
||||
|
||||
# Good name color.
|
||||
# Default: 00FF00
|
||||
GoodNameColor = 00FF00
|
||||
|
||||
# Evil name color.
|
||||
# Default: 0000FF
|
||||
EvilNameColor = 0000FF
|
||||
|
||||
# Enable faction guards.
|
||||
# The NPC template must have faction as clan.
|
||||
# Default: True
|
||||
EnableFactionGuards = True
|
||||
|
||||
# Upon death, respawn at faction base.
|
||||
# Default: True
|
||||
RespawnAtFactionBase = True
|
||||
|
||||
# Upon selecting faction, players become nobless.
|
||||
# Default: False
|
||||
FactionAutoNobless = False
|
||||
|
||||
# Disallow chat between factions.
|
||||
# Default: True
|
||||
EnableFactionChat = True
|
||||
|
||||
# Prohibit login when faction has more online players.
|
||||
# Default: True
|
||||
BalanceOnlinePlayers = True
|
||||
|
||||
# Online player exceed limit (used by setting above).
|
||||
# Default: 20
|
||||
BalancePlayerExceedLimit = 20
|
33
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/FakePlayers.ini
vendored
Normal file
33
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/FakePlayers.ini
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Fake players
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable fake players.
|
||||
EnableFakePlayers = False
|
||||
|
||||
# Enable chatting with fake players.
|
||||
FakePlayerChat = True
|
||||
|
||||
# Enable shots usage for fake players.
|
||||
FakePlayerUseShots = True
|
||||
|
||||
# Reward PvP kills by killing fake players.
|
||||
FakePlayerKillsRewardPvP = True
|
||||
|
||||
# Fake player kills apply karma rules.
|
||||
FakePlayerUnflaggedKillsKarma = True
|
||||
|
||||
# Aggressive AI fake players attack nearby monsters.
|
||||
FakePlayerAggroMonsters = True
|
||||
|
||||
# Aggressive AI fake players attack nearby players.
|
||||
FakePlayerAggroPlayers = False
|
||||
|
||||
# Aggressive AI fake players attack nearby fake players.
|
||||
FakePlayerAggroFPC = False
|
||||
|
||||
# Fake players can drop items when killing monsters.
|
||||
FakePlayerCanDropItems = True
|
||||
|
||||
# Fake players can pickup dropped items.
|
||||
FakePlayerCanPickup = True
|
9
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/FindPvP.ini
vendored
Normal file
9
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/FindPvP.ini
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Find PvP
|
||||
# ---------------------------------------------------------------------------
|
||||
# Bypass example:
|
||||
# <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h FindPvP">Go to PvP!</Button>
|
||||
|
||||
# Enable FindPvP bypass.
|
||||
# Default: False
|
||||
EnableFindPvP = False
|
6
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/MerchantZeroSellPrice.ini
vendored
Normal file
6
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/MerchantZeroSellPrice.ini
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Merchant Zero Sell Price
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# All items sold to merchants reward no Adena.
|
||||
MerchantZeroSellPrice = False
|
19
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/MultilingualSupport.ini
vendored
Normal file
19
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/MultilingualSupport.ini
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Multilingual support
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable or disable multilingual support.
|
||||
# Default: False
|
||||
MultiLangEnable = False
|
||||
|
||||
# Default language, if not defined.
|
||||
# Default: en
|
||||
MultiLangDefault = en
|
||||
|
||||
# List of allowed languages, semicolon separated.
|
||||
# Default: en;el
|
||||
MultiLangAllowed = en;el
|
||||
|
||||
# Enable or disable voice command .lang for changing languages on the fly.
|
||||
# Default: True
|
||||
MultiLangVoiceCommand = True
|
25
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/NoblessMaster.ini
vendored
Normal file
25
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/NoblessMaster.ini
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Nobless Master (instant nobless NPC)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable Nobless Master NPC.
|
||||
# Default: False
|
||||
Enabled = False
|
||||
|
||||
# Nobless Master NPC id.
|
||||
# Default: 1003000
|
||||
NpcId = 1003000
|
||||
|
||||
# Level required to become nobless.
|
||||
# Consider changing htmls if you modify this.
|
||||
# Default: 80
|
||||
LevelRequirement = 80
|
||||
|
||||
# Reward nobless tiara item.
|
||||
# Default: True
|
||||
RewardTiara = True
|
||||
|
||||
# Nobless level to reward.
|
||||
# Default: 1
|
||||
# Exalted: 2
|
||||
LevelRewarded = 1
|
46
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/NpcStatMultipliers.ini
vendored
Normal file
46
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/NpcStatMultipliers.ini
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# NPC Stat Multipliers
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable/Disable NPC stat multipliers.
|
||||
EnableNpcStatMultipliers = False
|
||||
|
||||
# Monsters
|
||||
MonsterHP = 1.0
|
||||
MonsterMP = 1.0
|
||||
MonsterPAtk = 1.0
|
||||
MonsterMAtk = 1.0
|
||||
MonsterPDef = 1.0
|
||||
MonsterMDef = 1.0
|
||||
MonsterAggroRange = 1.0
|
||||
MonsterClanHelpRange = 1.0
|
||||
|
||||
# Raidbosses
|
||||
RaidbossHP = 1.0
|
||||
RaidbossMP = 1.0
|
||||
RaidbossPAtk = 1.0
|
||||
RaidbossMAtk = 1.0
|
||||
RaidbossPDef = 1.0
|
||||
RaidbossMDef = 1.0
|
||||
RaidbossAggroRange = 1.0
|
||||
RaidbossClanHelpRange = 1.0
|
||||
|
||||
# Guards
|
||||
GuardHP = 1.0
|
||||
GuardMP = 1.0
|
||||
GuardPAtk = 1.0
|
||||
GuardMAtk = 1.0
|
||||
GuardPDef = 1.0
|
||||
GuardMDef = 1.0
|
||||
GuardAggroRange = 1.0
|
||||
GuardClanHelpRange = 1.0
|
||||
|
||||
# Defenders
|
||||
DefenderHP = 1.0
|
||||
DefenderMP = 1.0
|
||||
DefenderPAtk = 1.0
|
||||
DefenderMAtk = 1.0
|
||||
DefenderPDef = 1.0
|
||||
DefenderMDef = 1.0
|
||||
DefenderAggroRange = 1.0
|
||||
DefenderClanHelpRange = 1.0
|
51
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/OfflineTrade.ini
vendored
Normal file
51
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/OfflineTrade.ini
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Offline trade/craft
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Option to enable or disable offline trade feature.
|
||||
OfflineTradeEnable = True
|
||||
|
||||
# Option to enable or disable offline craft feature.
|
||||
OfflineCraftEnable = True
|
||||
|
||||
# If set to True, off-line shops will be possible only peace zones.
|
||||
OfflineModeInPeaceZone = True
|
||||
|
||||
# If set to True, players in off-line shop mode wont take any damage, thus they cannot be killed.
|
||||
OfflineModeNoDamage = True
|
||||
|
||||
# If set to True, name color will be changed then entering offline mode.
|
||||
OfflineSetNameColor = True
|
||||
|
||||
# Color of the name in offline mode (if OfflineSetNameColor = True).
|
||||
OfflineNameColor = 808080
|
||||
|
||||
# Allow fame for characters in offline mode.
|
||||
OfflineFame = True
|
||||
|
||||
# Restore offline traders after restart/shutdown.
|
||||
RestoreOffliners = True
|
||||
|
||||
# Do not restore offline characters, after OfflineMaxDays days spent from first restore.
|
||||
# Require server restart to disconnect expired shops.
|
||||
# 0 = disabled (always restore).
|
||||
OfflineMaxDays = 0
|
||||
|
||||
# Disconnect shop after finished selling, buying.
|
||||
OfflineDisconnectFinished = True
|
||||
|
||||
# Disconnect shop when character from same account logins to the game.
|
||||
OfflineDisconnectSameAccount = False
|
||||
|
||||
# Store offline trader transactions in realtime.
|
||||
# Uses more datatabase resources, but helps if server shuts down unexpectedly.
|
||||
StoreOfflineTradeInRealtime = True
|
||||
|
||||
# Enable .offline command for logging out.
|
||||
EnableOfflineCommand = True
|
||||
|
||||
# Abnormal effect for offline traders.
|
||||
# Can use multiple enums separated by commas to choose random effect.
|
||||
# Leave empty to disable.
|
||||
# Example: DORMANT_USER
|
||||
OfflineAbnormalEffect =
|
7
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/OnlineInfo.ini
vendored
Normal file
7
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/OnlineInfo.ini
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Online Info Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable player .online voiced command.
|
||||
# Shows how many players are online.
|
||||
EnableOnlineCommand = False
|
7
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PasswordChange.ini
vendored
Normal file
7
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PasswordChange.ini
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Password Change
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enables .changepassword voiced command which allows the players to change their account's password ingame.
|
||||
# Default: False
|
||||
AllowChangePassword = False
|
51
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PremiumSystem.ini
vendored
Normal file
51
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PremiumSystem.ini
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Premium System
|
||||
# ---------------------------------------------------------------------------
|
||||
# -Admins can manage subscriptions from main admin menu.
|
||||
# -Players can use .premium to view account related info.
|
||||
# -Caution: Premium rates multiply existing server rates.
|
||||
|
||||
# Enable premium system.
|
||||
# Default: False
|
||||
EnablePremiumSystem = False
|
||||
|
||||
# Xp rate for premium players.
|
||||
PremiumRateXp = 2
|
||||
|
||||
# Sp rate for premium players.
|
||||
PremiumRateSp = 2
|
||||
|
||||
# Drop chance for premium players.
|
||||
PremiumRateDropChance = 1
|
||||
|
||||
# Drop amount for premium players.
|
||||
PremiumRateDropAmount = 2
|
||||
|
||||
# Spoil chance for premium players.
|
||||
PremiumRateSpoilChance = 1
|
||||
|
||||
# Spoil amount for premium players.
|
||||
PremiumRateSpoilAmount = 2
|
||||
|
||||
# Caution: Raid bosses and herbs are not affected by premium rates, but specific items can be affected by rates bellow.
|
||||
# List of items affected by custom drop rate by id, used now for Adena rate too.
|
||||
# Usage: itemId1,multiplier1;itemId2,multiplier2;...
|
||||
PremiumRateDropChanceByItemId = 57,2;6656,1;6657,1;6658,1;6659,1;6660,1;6661,1;6662,1;8191,1;10170,1;10314,1
|
||||
PremiumRateDropAmountByItemId = 57,2;6656,1;6657,1;6658,1;6659,1;6660,1;6661,1;6662,1;8191,1;10170,1;10314,1
|
||||
|
||||
# Enable premium henna slot.
|
||||
# Default: True
|
||||
EnablePremiumHennaSlot = True
|
||||
|
||||
# Enable premium henna slot for non premium players.
|
||||
# Default: True
|
||||
EnablePremiumHennaSlotforNonPremium = True
|
||||
|
||||
# Draw any henna at premium slot.
|
||||
# Also premium henna drawn at normal slots.
|
||||
# Retail: False
|
||||
EnableAnyHennaAtPremiumSlot = False
|
||||
|
||||
# Enable Fishing only for premium players.
|
||||
# Retail: True
|
||||
PremiumOnlyFishing = False
|
8
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PrivateStoreRange.ini
vendored
Normal file
8
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PrivateStoreRange.ini
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Minimum Range for Private Stores
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Minimum distance from player / npc to open a new private store.
|
||||
# Default: 0
|
||||
ShopMinRangeFromPlayer = 50
|
||||
ShopMinRangeFromNpc = 100
|
18
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PvpAnnounce.ini
vendored
Normal file
18
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PvpAnnounce.ini
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Pvp/pk Announce
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Default: False
|
||||
AnnouncePkPvP = False
|
||||
|
||||
# Announce this as normal system message
|
||||
# Default: True
|
||||
AnnouncePkPvPNormalMessage = True
|
||||
|
||||
# PK message template
|
||||
# variables: $killer, $target
|
||||
AnnouncePkMsg = $killer has slaughtered $target
|
||||
|
||||
# Pvp message template
|
||||
# variables: $killer, $target
|
||||
AnnouncePvpMsg = $killer has defeated $target
|
33
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PvpRewardItem.ini
vendored
Normal file
33
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PvpRewardItem.ini
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# PvP/PK Reward Item
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Reward item on PvP
|
||||
RewardPvpItem = False
|
||||
|
||||
# Reward PvP item ID
|
||||
RewardPvpItemId = 57
|
||||
|
||||
# Reward PvP item Amount
|
||||
RewardPvpItemAmount = 1000
|
||||
|
||||
# Show PvP item reward message?
|
||||
RewardPvpItemMessage = True
|
||||
|
||||
# Reward item on PK
|
||||
RewardPkItem = False
|
||||
|
||||
# Reward PK item ID
|
||||
RewardPkItemId = 57
|
||||
|
||||
# Reward PK item Amount
|
||||
RewardPkItemAmount = 500
|
||||
|
||||
# Show PK item reward message?
|
||||
RewardPkItemMessage = True
|
||||
|
||||
# Disable rewards in instances.
|
||||
DisableRewardsInInstances = True
|
||||
|
||||
# Disable rewards in PvP zones.
|
||||
DisableRewardsInPvpZones = True
|
33
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PvpTitleColor.ini
vendored
Normal file
33
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/PvpTitleColor.ini
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
#-------------------------------------------------------------
|
||||
# Custom PvP Titles and Colors
|
||||
#-------------------------------------------------------------
|
||||
# Example: PvpAmmount1 = 150, Player with 500 PvP will have a title with the color specified in ColorPvpSystem.
|
||||
# Attention: Colors should be specified only in RGB format, one color for each rank.
|
||||
# Attention: Do not use with Faction system.
|
||||
|
||||
EnablePvPColorSystem = False
|
||||
|
||||
# Rank 1
|
||||
PvpAmount1 = 500
|
||||
ColorForAmount1 = 9C9C9C
|
||||
PvPTitleForAmount1 = Sergeant
|
||||
|
||||
# Rank 2
|
||||
PvpAmount2 = 1000
|
||||
ColorForAmount2 = 696969
|
||||
PvPTitleForAmount2 = Lieutenant
|
||||
|
||||
# Rank 3
|
||||
PvpAmount3 = 1500
|
||||
ColorForAmount3 = 4F4F4F
|
||||
PvPTitleForAmount3 = Captain
|
||||
|
||||
# Rank 4
|
||||
PvpAmount4 = 2500
|
||||
ColorForAmount4 = 363636
|
||||
PvPTitleForAmount4 = Major
|
||||
|
||||
# Rank 5
|
||||
PvpAmount5 = 5000
|
||||
ColorForAmount5 = 1C1C1C
|
||||
PvPTitleForAmount5 = General
|
25
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/RandomSpawns.ini
vendored
Normal file
25
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/RandomSpawns.ini
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Random Spawn System for Monsters
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable random monster spawns.
|
||||
# Default: True
|
||||
EnableRandomMonsterSpawns = True
|
||||
|
||||
# Max range for X and Y coords.
|
||||
# Default: 150
|
||||
MaxSpawnMobRange = 150
|
||||
|
||||
# Examples: No random spawns for Kasha's Eye, Pagan Guards, Sel Mahums, Four Sepulchers, Orbis Temple, Scarecrows
|
||||
# MobsSpawnNotRandom = 18812,18813,18814
|
||||
MobsSpawnNotRandom = 18812,18813,18814,22138,\
|
||||
18908,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,\
|
||||
18120,18132,18133,18137,18141,18145,18150,18151,18152,18153,18154,18155,18156,18157,18166,\
|
||||
18170,18171,18183,18184,18185,18186,18187,18191,18195,18196,18197,18198,18199,18212,18220,\
|
||||
18221,18222,18226,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,\
|
||||
18242,18243,18256,31452,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,\
|
||||
31479,31480,31481,31482,31483,31484,31485,31486,31487,\
|
||||
22911,22912,22913,22914,22915,22916,22917,22918,22919,22923,22925,22927,\
|
||||
19546,27457,24343,24344,24345,24346,24347,24348,24349,24350,24351,24352,24353,24354,24355,\
|
||||
24356,24357,24358,\
|
||||
24492,24493,24494
|
7
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/SayuneForAll.ini
vendored
Normal file
7
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/SayuneForAll.ini
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Free Sayune for all Players
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable Sayune for players that are not Awakened (4rth class).
|
||||
# Default: False
|
||||
FreeJumpsForAll = False
|
14
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ScreenWelcomeMessage.ini
vendored
Normal file
14
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ScreenWelcomeMessage.ini
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Welcome message
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Show screen welcome message on character login
|
||||
# Default: False
|
||||
ScreenWelcomeMessageEnable = False
|
||||
|
||||
# Screen welcome message text to show on character login if enabled
|
||||
# ('#' for a new line, but message can have max 2 lines)
|
||||
ScreenWelcomeMessageText = Welcome to our server!
|
||||
|
||||
# Show screen welcome message for x seconds when character log in to game if enabled
|
||||
ScreenWelcomeMessageTime = 10
|
22
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/SellBuffs.ini
vendored
Normal file
22
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/SellBuffs.ini
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Sell Buffs configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
# Command: .sellbuff or .sellbuffs
|
||||
|
||||
# Enable/Disable selling buffs
|
||||
SellBuffEnable = True
|
||||
|
||||
# Multipler for mana cost of buffs
|
||||
MpCostMultipler = 1
|
||||
|
||||
# Payment for Sell Buff System, can be changed to custom server coin
|
||||
PaymentID = 57
|
||||
|
||||
# Minimum price of every buff
|
||||
MinimumPrice = 100000
|
||||
|
||||
# Maximum price of every buff
|
||||
MaximumPrice = 100000000
|
||||
|
||||
# Maximum count of buffs in sell list
|
||||
MaxBuffs = 20
|
6
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ServerTime.ini
vendored
Normal file
6
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/ServerTime.ini
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Display Server Time
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This option will enable displaying of the local server time for /time command.
|
||||
DisplayServerTime = False
|
13
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/StartingLocation.ini
vendored
Normal file
13
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/StartingLocation.ini
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Custom Starting Location
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable custom starting location.
|
||||
# Default: False
|
||||
CustomStartingLocation = False
|
||||
|
||||
# Coordinates for custom starting location.
|
||||
# Default: 50821, 186527, -3625 (Giran Harbor)
|
||||
CustomStartingLocX = 50821
|
||||
CustomStartingLocY = 186527
|
||||
CustomStartingLocZ = -3625
|
7
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/WalkerBotProtection.ini
vendored
Normal file
7
L2J_Mobius_10.3_MasterClass/dist/game/config/Custom/WalkerBotProtection.ini
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Walker/Bot protection
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Basic protection against L2Walker.
|
||||
# Default: False
|
||||
L2WalkerProtection = False
|
234
L2J_Mobius_10.3_MasterClass/dist/game/config/Feature.ini
vendored
Normal file
234
L2J_Mobius_10.3_MasterClass/dist/game/config/Feature.ini
vendored
Normal file
@@ -0,0 +1,234 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Alternative Feature Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
# ---------------------------------------------------------------------------
|
||||
# Castle
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Siege Time rules
|
||||
# Which hours can change Castle Lords
|
||||
# Default: 16,20
|
||||
SiegeHourList = 16,20
|
||||
|
||||
# Taxes for castles
|
||||
# Buy tax in percent when is castle owned by NPCs.
|
||||
# Default: 10
|
||||
BuyTaxForNeutralSide = 10
|
||||
|
||||
# Buy tax in percent when is castle owned by players and castle is on light side.
|
||||
# Default: 5
|
||||
BuyTaxForLightSide = 5
|
||||
|
||||
# Buy tax in percent when is castle owned by players and castle is on dark side.
|
||||
# Default: 20
|
||||
BuyTaxForDarkSide = 20
|
||||
|
||||
# Sell tax in percent when is castle owned by NPCs.
|
||||
# Default: 10
|
||||
SellTaxForNeutralSide = 10
|
||||
|
||||
# Sell tax in percent when is castle owned by players and castle is on light side.
|
||||
# Default: 5
|
||||
SellTaxForLightSide = 5
|
||||
|
||||
# Sell tax in percent when is castle owned by players and castle is on dark side.
|
||||
# Default: 20
|
||||
SellTaxForDarkSide = 20
|
||||
|
||||
# Teleport Function price
|
||||
# Price = 7 days
|
||||
CastleTeleportFunctionFeeRatio = 604800000
|
||||
CastleTeleportFunctionFeeLvl1 = 1000
|
||||
CastleTeleportFunctionFeeLvl2 = 10000
|
||||
|
||||
# Support magic buff price
|
||||
# Price = 7 day
|
||||
CastleSupportFunctionFeeRatio = 604800000
|
||||
CastleSupportFeeLvl1 = 49000
|
||||
CastleSupportFeeLvl2 = 120000
|
||||
|
||||
# MP Regeneration price
|
||||
# Price = 7 day
|
||||
CastleMpRegenerationFunctionFeeRatio = 604800000
|
||||
CastleMpRegenerationFeeLvl1 = 45000
|
||||
CastleMpRegenerationFeeLvl2 = 65000
|
||||
|
||||
# Hp Regeneration price
|
||||
# Price = 7 day
|
||||
CastleHpRegenerationFunctionFeeRatio = 604800000
|
||||
CastleHpRegenerationFeeLvl1 = 12000
|
||||
CastleHpRegenerationFeeLvl2 = 20000
|
||||
|
||||
# Exp Regeneration price
|
||||
# Price = 7 day
|
||||
CastleExpRegenerationFunctionFeeRatio = 604800000
|
||||
CastleExpRegenerationFeeLvl1 = 63000
|
||||
CastleExpRegenerationFeeLvl2 = 70000
|
||||
|
||||
# Outer Door upgrade price
|
||||
OuterDoorUpgradePriceLvl2 = 3000000
|
||||
OuterDoorUpgradePriceLvl3 = 4000000
|
||||
OuterDoorUpgradePriceLvl5 = 5000000
|
||||
|
||||
# Inner Door upgrade price
|
||||
InnerDoorUpgradePriceLvl2 = 750000
|
||||
InnerDoorUpgradePriceLvl3 = 900000
|
||||
InnerDoorUpgradePriceLvl5 = 1000000
|
||||
|
||||
# Wall upgrade price
|
||||
WallUpgradePriceLvl2 = 1600000
|
||||
WallUpgradePriceLvl3 = 1800000
|
||||
WallUpgradePriceLvl5 = 2000000
|
||||
|
||||
# Trap upgrade price
|
||||
TrapUpgradePriceLvl1 = 3000000
|
||||
TrapUpgradePriceLvl2 = 4000000
|
||||
TrapUpgradePriceLvl3 = 5000000
|
||||
TrapUpgradePriceLvl4 = 6000000
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Fortress
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Teleport Function price
|
||||
# Price = 7 days
|
||||
FortressTeleportFunctionFeeRatio = 604800000
|
||||
FortressTeleportFunctionFeeLvl1 = 1000
|
||||
FortressTeleportFunctionFeeLvl2 = 10000
|
||||
|
||||
# Support magic buff price
|
||||
# Price = 1 day
|
||||
FortressSupportFunctionFeeRatio = 86400000
|
||||
FortressSupportFeeLvl1 = 7000
|
||||
FortressSupportFeeLvl2 = 17000
|
||||
|
||||
# MP Regeneration price
|
||||
# Price = 1 day
|
||||
FortressMpRegenerationFunctionFeeRatio = 86400000
|
||||
FortressMpRegenerationFeeLvl1 = 6500
|
||||
FortressMpRegenerationFeeLvl2 = 9300
|
||||
|
||||
# Hp Regeneration price
|
||||
# Price = 1 day
|
||||
FortressHpRegenerationFunctionFeeRatio = 86400000
|
||||
FortressHpRegenerationFeeLvl1 = 2000
|
||||
FortressHpRegenerationFeeLvl2 = 3500
|
||||
|
||||
# Exp Regeneration price
|
||||
# Price = 1 day
|
||||
FortressExpRegenerationFunctionFeeRatio = 86400000
|
||||
FortressExpRegenerationFeeLvl1 = 9000
|
||||
FortressExpRegenerationFeeLvl2 = 10000
|
||||
|
||||
# This is the time frequently when Fort owner gets Blood Oath, supply level raised and Fort fee is payed
|
||||
# Default 360 mins
|
||||
FortressPeriodicUpdateFrequency = 360
|
||||
|
||||
# The number of Blood Oath which given to the Fort owner clan when Fort Updater runs
|
||||
# Default: 1
|
||||
FortressBloodOathCount = 1
|
||||
|
||||
# The maximum Fort supply level
|
||||
# Max lvl what you can define here is 21!
|
||||
# Default: 6
|
||||
FortressMaxSupplyLevel = 6
|
||||
|
||||
# Fort fee which payed to the Castle
|
||||
# Default: 25000
|
||||
FortressFeeForCastle = 25000
|
||||
|
||||
# The maximum time while a clan can own a fortress
|
||||
# Deafault: 168 hours
|
||||
FortressMaximumOwnTime = 168
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Clan Reputation Points
|
||||
# ---------------------------------------------------------------------------
|
||||
# Reputation score gained by taking Fortress.
|
||||
TakeFortPoints = 200
|
||||
|
||||
# Reputation score gained by taking Castle.
|
||||
TakeCastlePoints = 1500
|
||||
|
||||
# Reputation score gained by defended Castle.
|
||||
CastleDefendedPoints = 750
|
||||
|
||||
# Reputation score gained per clan members of festival winning party.
|
||||
FestivalOfDarknessWin = 200
|
||||
|
||||
# Reputation score gained for per hero clan members.
|
||||
HeroPoints = 1000
|
||||
|
||||
# Minimum Reputation score gained after completing 2nd class transfer under Academy.
|
||||
CompleteAcademyMinPoints = 190
|
||||
|
||||
# Maximum Reputation score gained after completing 2nd class transfer under Academy.
|
||||
CompleteAcademyMaxPoints = 650
|
||||
|
||||
# Reputation score gained per killed ballista.
|
||||
KillBallistaPoints = 500
|
||||
|
||||
# Reputation score gained for one Blood Alliance.
|
||||
BloodAlliancePoints = 500
|
||||
|
||||
# Reputation score gained for 10 Blood Oaths.
|
||||
BloodOathPoints = 200
|
||||
|
||||
# Reputation score gained for 100 Knight's Epaulettes.
|
||||
KnightsEpaulettePoints = 20
|
||||
|
||||
# Reputation score gained/reduced per kill during a clan war or siege war.
|
||||
ReputationScorePerKill = 1
|
||||
|
||||
# Reputation score reduced by loosing Fortress in battle.
|
||||
LooseFortPoints = 0
|
||||
|
||||
# Reputation score reduced by loosing Castle in battle.
|
||||
LooseCastlePoints = 3000
|
||||
|
||||
# Reputation score reduced by creating Royal Guard.
|
||||
CreateRoyalGuardCost = 5000
|
||||
|
||||
# Reputation score reduced by creating Knight Unit.
|
||||
CreateKnightUnitCost = 10000
|
||||
|
||||
# Reputation score reduced by reinforcing Knight Unit (if clan level is 9 or more).
|
||||
ReinforceKnightUnitCost = 5000
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Clan Contribution Points
|
||||
# ---------------------------------------------------------------------------
|
||||
# Contribution points gained for killing raidbosses.
|
||||
ClanContributionRewardForRaid = 1
|
||||
|
||||
# Contribution points gained for killing enemy clan members.
|
||||
ClanContributionRewardForEnemy = 1
|
||||
|
||||
# Contribution points required to get the reward.
|
||||
ClanContributionRequired = 100
|
||||
|
||||
# Fame rewarded when required points are gathered.
|
||||
ClanContributionFameReward = 300
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Other
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Allow riding wyvern ignoring 7 Signs status
|
||||
# This will allow Castle Lords to ride wyvern even when Dusk has won Seal of Strife
|
||||
# Default: False
|
||||
AllowRideWyvernAlways = False
|
||||
|
||||
# Allow riding wyvern during Castle/Fort Siege
|
||||
# Default: True
|
||||
AllowRideWyvernDuringSiege = True
|
||||
|
||||
# Allow riding mounts (wyvern excluded) during Castle/Fort Siege
|
||||
# Default: False
|
||||
AllowRideMountsDuringSiege = False
|
116
L2J_Mobius_10.3_MasterClass/dist/game/config/FloodProtector.ini
vendored
Normal file
116
L2J_Mobius_10.3_MasterClass/dist/game/config/FloodProtector.ini
vendored
Normal file
@@ -0,0 +1,116 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Floodprotector Options
|
||||
# ---------------------------------------------------------------------------
|
||||
# The following settings can be applied to each feature:
|
||||
# Interval - interval in gameserver ticks (1 tick = 100ms) in which only one request is allowed
|
||||
# LogFlooding - whether flooding should be logged (only first occurrence of flooding and total count of flood requests is logged)
|
||||
# PunishmentLimit - if number of requests within single interval exceeds specified number then the specified punishment is applied (0 = disables punishment feature)
|
||||
# PunishmentType - type of the punishment ('none', 'kick', 'ban', 'jail'), valid only if PunishmentLimit is greater than 0
|
||||
# PunishmentTime - for how many minutes should the player(jail)/account(ban) be punished (0 = forever), valid only for PunishmentType 'jail' or 'ban'
|
||||
|
||||
# UseItem - item usage flooding
|
||||
# Disabled to match retail, if you want to enable this protection change the value to 4 for example.
|
||||
# Default: 0
|
||||
FloodProtectorUseItemInterval = 0
|
||||
FloodProtectorUseItemLogFlooding = False
|
||||
FloodProtectorUseItemPunishmentLimit = 0
|
||||
FloodProtectorUseItemPunishmentType = none
|
||||
FloodProtectorUseItemPunishmentTime = 0
|
||||
|
||||
# RollDice - rolling dice flooding
|
||||
FloodProtectorRollDiceInterval = 42
|
||||
FloodProtectorRollDiceLogFlooding = False
|
||||
FloodProtectorRollDicePunishmentLimit = 0
|
||||
FloodProtectorRollDicePunishmentType = none
|
||||
FloodProtectorRollDicePunishmentTime = 0
|
||||
|
||||
# ItemPetSummon - item summoning and pet mounting flooding
|
||||
FloodProtectorItemPetSummonInterval = 16
|
||||
FloodProtectorItemPetSummonLogFlooding = False
|
||||
FloodProtectorItemPetSummonPunishmentLimit = 0
|
||||
FloodProtectorItemPetSummonPunishmentType = none
|
||||
FloodProtectorItemPetSummonPunishmentTime = 0
|
||||
|
||||
# HeroVoice - hero voice flooding
|
||||
FloodProtectorHeroVoiceInterval = 100
|
||||
FloodProtectorHeroVoiceLogFlooding = False
|
||||
FloodProtectorHeroVoicePunishmentLimit = 0
|
||||
FloodProtectorHeroVoicePunishmentType = none
|
||||
FloodProtectorHeroVoicePunishmentTime = 0
|
||||
|
||||
# GlobalChat - global chat flooding
|
||||
FloodProtectorGlobalChatInterval = 5
|
||||
FloodProtectorGlobalChatLogFlooding = False
|
||||
FloodProtectorGlobalChatPunishmentLimit = 0
|
||||
FloodProtectorGlobalChatPunishmentType = none
|
||||
FloodProtectorGlobalChatPunishmentTime = 0
|
||||
|
||||
# Subclass - subclass flooding
|
||||
FloodProtectorSubclassInterval = 20
|
||||
FloodProtectorSubclassLogFlooding = False
|
||||
FloodProtectorSubclassPunishmentLimit = 0
|
||||
FloodProtectorSubclassPunishmentType = none
|
||||
FloodProtectorSubclassPunishmentTime = 0
|
||||
|
||||
# DropItem - drop item flooding
|
||||
FloodProtectorDropItemInterval = 10
|
||||
FloodProtectorDropItemLogFlooding = False
|
||||
FloodProtectorDropItemPunishmentLimit = 0
|
||||
FloodProtectorDropItemPunishmentType = none
|
||||
FloodProtectorDropItemPunishmentTime = 0
|
||||
|
||||
# ServerBypass - server bypass flooding
|
||||
FloodProtectorServerBypassInterval = 5
|
||||
FloodProtectorServerBypassLogFlooding = False
|
||||
FloodProtectorServerBypassPunishmentLimit = 0
|
||||
FloodProtectorServerBypassPunishmentType = none
|
||||
FloodProtectorServerBypassPunishmentTime = 0
|
||||
|
||||
# ServerBypass - multisell list request flooding
|
||||
FloodProtectorMultiSellInterval = 10
|
||||
FloodProtectorMultiSellLogFlooding = False
|
||||
FloodProtectorMultiSellPunishmentLimit = 0
|
||||
FloodProtectorMultiSellPunishmentType = none
|
||||
FloodProtectorMultiSellPunishmentTime = 0
|
||||
|
||||
# All kind of other transactions - to/from pet, private store, warehouse, destroy
|
||||
FloodProtectorTransactionInterval = 10
|
||||
FloodProtectorTransactionLogFlooding = False
|
||||
FloodProtectorTransactionPunishmentLimit = 0
|
||||
FloodProtectorTransactionPunishmentType = none
|
||||
FloodProtectorTransactionPunishmentTime = 0
|
||||
|
||||
# Manufacture
|
||||
FloodProtectorManufactureInterval = 3
|
||||
FloodProtectorManufactureLogFlooding = False
|
||||
FloodProtectorManufacturePunishmentLimit = 0
|
||||
FloodProtectorManufacturePunishmentType = none
|
||||
FloodProtectorManufacturePunishmentTime = 0
|
||||
|
||||
# SendMail - sending mail interval, 10s on retail
|
||||
FloodProtectorSendMailInterval = 100
|
||||
FloodProtectorSendMailLogFlooding = False
|
||||
FloodProtectorSendMailPunishmentLimit = 0
|
||||
FloodProtectorSendMailPunishmentType = none
|
||||
FloodProtectorSendMailPunishmentTime = 0
|
||||
|
||||
# CharacterSelect - attempts to load character
|
||||
FloodProtectorCharacterSelectInterval = 30
|
||||
FloodProtectorCharacterSelectLogFlooding = False
|
||||
FloodProtectorCharacterSelectPunishmentLimit = 0
|
||||
FloodProtectorCharacterSelectPunishmentType = none
|
||||
FloodProtectorCharacterSelectPunishmentTime = 0
|
||||
|
||||
# Item Auction - Request for refresh
|
||||
FloodProtectorItemAuctionInterval = 9
|
||||
FloodProtectorItemAuctionLogFlooding = False
|
||||
FloodProtectorItemAuctionPunishmentLimit = 0
|
||||
FloodProtectorItemAuctionPunishmentType = none
|
||||
FloodProtectorItemAuctionPunishmentTime = 0
|
||||
|
||||
# Player Action - Next Target, Attack, etc
|
||||
FloodProtectorPlayerActionInterval = 1
|
||||
FloodProtectorPlayerActionLogFlooding = False
|
||||
FloodProtectorPlayerActionPunishmentLimit = 0
|
||||
FloodProtectorPlayerActionPunishmentType = none
|
||||
FloodProtectorPlayerActionPunishmentTime = 0
|
277
L2J_Mobius_10.3_MasterClass/dist/game/config/FortSiege.ini
vendored
Normal file
277
L2J_Mobius_10.3_MasterClass/dist/game/config/FortSiege.ini
vendored
Normal file
@@ -0,0 +1,277 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Fort Siege Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Standard Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Length of siege before the count down (in minutes).
|
||||
SiegeLength = 60
|
||||
|
||||
# This defines how long you need to wait until the suspicious merchant will spawn after siege ends (in minutes).
|
||||
# Keep in mind when merchant spawns, the fort can be immediately sieged.
|
||||
# Default: 180
|
||||
SuspiciousMerchantRespawnDelay = 180
|
||||
|
||||
# This defines how long you have to kill all commanders once you kill the first one (in minutes).
|
||||
# After that time (if all commanders not killed) all commanders and doors get respawned.
|
||||
CountDownLength = 10
|
||||
|
||||
# Max number of flags per clan.
|
||||
MaxFlags = 1
|
||||
|
||||
# Minimum clan level needed to sign up.
|
||||
SiegeClanMinLevel = 4
|
||||
|
||||
#Max number of clans that can register on each side.
|
||||
AttackerMaxClans = 500
|
||||
|
||||
# This option, if enabled, will enable register Fortress Siege to Castle owners just in territory.
|
||||
# Default: True
|
||||
JustToTerritory = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Fortress Commander Spawns
|
||||
# ---------------------------------------------------------------------------
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
# Name - fortress name
|
||||
# N - number - 1: Archer Comander
|
||||
# - 2: Guard Commander
|
||||
# - 3: Support Unit Commander
|
||||
# - 4: Main Machine - not supported yet, used General
|
||||
# - 5: General - not used yet, will be used once control room is supported
|
||||
# Please keep the correct order of commanders, otherwise client will show wrong occupied barracks.
|
||||
# Control room (main machine) currently emulated in client.
|
||||
# x,y,z - coords
|
||||
# heading
|
||||
# npc_id - id of template
|
||||
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
# Name - fortress name
|
||||
# N - number
|
||||
# x,y,z - coords
|
||||
# flag_id - id of combat flag
|
||||
|
||||
# Shanty Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
ShantyCommander1 = -52435,155188,-1768,20000,35683
|
||||
ShantyCommander2 = -52128,157752,-2024,29864,35677
|
||||
ShantyCommander3 = -53944,155433,-2024,7304,35680
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
ShantyFlag1 = -53086,156493,-1896,9819
|
||||
ShantyFlag2 = -53054,156605,-1896,9819
|
||||
ShantyFlag3 = -53032,156689,-1896,9819
|
||||
|
||||
# Southern Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
SouthernCommander1 = -21328,218864,-2952,0,35719
|
||||
SouthernCommander2 = -22992,218160,-3208,0,35713
|
||||
SouthernCommander3 = -21520,221504,-3208,45328,35716
|
||||
SouthernCommander4 = -22728,221746,-3200,33168,35721
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
SouthernFlag1 = -22386,219917,-3079,9819
|
||||
SouthernFlag2 = -22386,219798,-3079,9819
|
||||
SouthernFlag3 = -22386,219679,-3079,9819
|
||||
|
||||
# Hive Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
HiveCommander1 = 15152,188128,-2640,0,35752
|
||||
HiveCommander2 = 17984,187536,-2896,45056,35746
|
||||
HiveCommander3 = 16016,189520,-2888,0,35749
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
HiveFlag1 = 16685,188358,-2770,9819
|
||||
HiveFlag2 = 16761,188306,-2770,9819
|
||||
HiveFlag3 = 16847,188257,-2770,9819
|
||||
|
||||
# Valley Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
ValleyCommander1 = 124768,121856,-2296,0,35788
|
||||
ValleyCommander2 = 124299,123614,-2552,49192,35782
|
||||
ValleyCommander3 = 124768,124640,-2552,54480,35785
|
||||
ValleyCommander4 = 128048,123344,-2536,35028,35790
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
ValleyFlag1 = 125970,123653,-2429,9819
|
||||
ValleyFlag2 = 126092,123650,-2429,9819
|
||||
ValleyFlag3 = 126205,123648,-2429,9819
|
||||
|
||||
# Ivory Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
IvoryCommander1 = 72400,2896,-2760,0,35821
|
||||
IvoryCommander2 = 73788,5479,-3016,55136,35815
|
||||
IvoryCommander3 = 71264,4144,-3008,0,35818
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
IvoryFlag1 = 72565,4436,-2888,9819
|
||||
IvoryFlag2 = 72660,4512,-2888,9819
|
||||
IvoryFlag3 = 72759,4594,-2888,9819
|
||||
|
||||
# Narsell Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
NarsellCommander1 = 154704,53856,-2968,0,35852
|
||||
NarsellCommander2 = 155576,56592,-3224,59224,35846
|
||||
NarsellCommander3 = 153328,54848,-3216,5512,35849
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
NarsellFlag1 = 154567,55397,-3097,9819
|
||||
NarsellFlag2 = 154650,55493,-3097,9819
|
||||
NarsellFlag3 = 154715,55587,-3097,9819
|
||||
|
||||
# Bayou Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
BayouCommander1 = 188624,38240,-3128,0,35888
|
||||
BayouCommander2 = 188160,39920,-3376,49284,35882
|
||||
BayouCommander3 = 188626,41066,-3376,57140,35885
|
||||
BayouCommander4 = 191846,39764,-3368,33020,35890
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
BayouFlag1 = 189838,40063,-3253,9819
|
||||
BayouFlag2 = 189931,40060,-3253,9819
|
||||
BayouFlag3 = 190052,40062,-3253,9819
|
||||
|
||||
# White Sands Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
WhiteSandsCommander1 = 117216,205648,-3048,0,35921
|
||||
WhiteSandsCommander2 = 118880,203568,-3304,5396,35915
|
||||
WhiteSandsCommander3 = 118560,206560,-3304,48872,35918
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
WhiteSandsFlag1 = 118640,205151,-3176,9819
|
||||
WhiteSandsFlag2 = 118690,205062,-3176,9819
|
||||
WhiteSandsFlag3 = 118742,204968,-3176,9819
|
||||
|
||||
# Borderland Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
BorderlandCommander1 = 159664,-72224,-2584,0,35957
|
||||
BorderlandCommander2 = 157968,-71659,-2832,59020,35951
|
||||
BorderlandCommander3 = 157312,-70640,-2832,0,35954
|
||||
BorderlandCommander4 = 160194,-68688,-2824,43272,35959
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
BorderlandFlag1 = 158817,-70229,-2708,9819
|
||||
BorderlandFlag2 = 158883,-70145,-2708,9819
|
||||
BorderlandFlag3 = 158946,-70045,-2708,9819
|
||||
|
||||
# Swamp Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
SwampCommander1 = 71264,-60512,-2504,0,35995
|
||||
SwampCommander2 = 71248,-62352,-2752,12388,35989
|
||||
SwampCommander3 = 68688,-59648,-2752,56012,35992
|
||||
SwampCommander4 = 68005,-60866,-2744,5424,35997
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
SwampFlag1 = 69829,-61087,-2629,9819
|
||||
SwampFlag2 = 69979,-61144,-2632,9819
|
||||
SwampFlag3 = 70069,-61182,-2629,9819
|
||||
|
||||
# Archaic Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
ArchaicCommander1 = 109856,-142640,-2672,0,36028
|
||||
ArchaicCommander2 = 109600,-139735,-2928,62612,36022
|
||||
ArchaicCommander3 = 108223,-142209,-2920,8524,36025
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
ArchaicFlag1 = 109142,-141243,-2801,9819
|
||||
ArchaicFlag2 = 109184,-141129,-2801,9819
|
||||
ArchaicFlag3 = 109214,-141016,-2801,9819
|
||||
|
||||
# Floran Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
FloranCommander1 = 6528,151872,-2608,0,36064
|
||||
FloranCommander2 = 7006,148242,-2856,32768,36058
|
||||
FloranCommander3 = 4384,150992,-2856,0,36061
|
||||
FloranCommander4 = 5246,152319,-2848,49151,36066
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
FloranFlag1 = 5293,149624,-2732,9819
|
||||
FloranFlag2 = 5306,149743,-2732,9819
|
||||
FloranFlag3 = 5299,149870,-2732,9819
|
||||
|
||||
# Cloud Mountain Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
CloudMountainCommander1 = -55248,90496,-2536,0,36102
|
||||
CloudMountainCommander2 = -55791,91856,-2792,0,36096
|
||||
CloudMountainCommander3 = -54168,92604,-2784,49196,36099
|
||||
CloudMountainCommander4 = -50913,92259,-2776,41188,36104
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
CloudMountainFlag1 = -53354,91537,-2664,9819
|
||||
CloudMountainFlag2 = -53237,91537,-2664,9819
|
||||
CloudMountainFlag3 = -53112,91537,-2664,9819
|
||||
|
||||
# Tanor Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
TanorCommander1 = 58480,139648,-1464,0,36135
|
||||
TanorCommander2 = 61864,139257,-1728,46896,36129
|
||||
TanorCommander3 = 59436,140834,-1720,47296,36132
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
TanorFlag1 = 60225,139771,-1597,9819
|
||||
TanorFlag2 = 60362,139742,-1597,9819
|
||||
TanorFlag3 = 60467,139727,-1597,9819
|
||||
|
||||
# DragonSpine Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
DragonspineCommander1 = 13184,94928,-3144,0,36166
|
||||
DragonspineCommander2 = 9472,94992,-3392,0,36160
|
||||
DragonspineCommander3 = 12829,96214,-3392,49152,36163
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
DragonspineFlag1 = 11459,95308,-3264,9819
|
||||
DragonspineFlag2 = 11527,95301,-3264,9819
|
||||
DragonspineFlag3 = 11623,95311,-3264,9819
|
||||
|
||||
# Antharas Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
AntharasCommander1 = 79440,88752,-2600,0,36202
|
||||
AntharasCommander2 = 77262,91704,-2856,5112,36196
|
||||
AntharasCommander3 = 80929,90510,-2856,40192,36199
|
||||
AntharasCommander4 = 80755,89002,-2848,21984,36204
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
AntharasFlag1 = 79470,91299,-2728,9819
|
||||
AntharasFlag2 = 79528,91187,-2728,9819
|
||||
AntharasFlag3 = 79580,91095,-2728,9819
|
||||
|
||||
# Western Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
WesternCommander1 = 113481,-16058,-712,0,36240
|
||||
WesternCommander2 = 109872,-16624,-968,16384,36234
|
||||
WesternCommander3 = 112601,-13933,-960,49152,36237
|
||||
WesternCommander4 = 113929,-14801,-960,32768,36242
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
WesternFlag1 = 111280,-14820,-839,9819
|
||||
WesternFlag2 = 111380,-14820,-839,9819
|
||||
WesternFlag3 = 111480,-14820,-839,9819
|
||||
|
||||
# Hunters Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
HuntersCommander1 = 123232,94400,-1856,0,36278
|
||||
HuntersCommander2 = 122688,95760,-2112,0,36272
|
||||
HuntersCommander3 = 124305,96528,-2104,49151,36275
|
||||
HuntersCommander4 = 127632,96240,-2096,40892,36280
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
HuntersFlag1 = 125155,95455,-1984,9819
|
||||
HuntersFlag2 = 125255,95455,-1984,9819
|
||||
HuntersFlag3 = 125355,95455,-1984,9819
|
||||
|
||||
# Aaru Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
AaruCommander1 = 74288,186912,-2296,0,36311
|
||||
AaruCommander2 = 71392,184720,-2552,5528,36305
|
||||
AaruCommander3 = 71542,186410,-2552,55088,36308
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
AaruFlag1 = 73029,186303,-2424,9819
|
||||
AaruFlag2 = 72923,186247,-2424,9819
|
||||
AaruFlag3 = 72833,186178,-2424,9819
|
||||
|
||||
# Demon Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
DemonCommander1 = 100752,-53664,-360,0,36347
|
||||
DemonCommander2 = 100688,-57440,-616,16384,36341
|
||||
DemonCommander3 = 99484,-54027,-616,0,36344
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
DemonFlag1 = 100400,-55401,-488,9819
|
||||
DemonFlag2 = 100400,-55301,-488,9819
|
||||
DemonFlag3 = 100400,-55201,-488,9819
|
||||
|
||||
# Monastic Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
MonasticCommander1 = 73680,-95456,-1144,0,36385
|
||||
MonasticCommander2 = 70189,-93935,-1400,61576,36379
|
||||
MonasticCommander3 = 73831,-94119,-1400,45536,36382
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
MonasticFlag1 = 72174,-94437,-1271,9819
|
||||
MonasticFlag2 = 72294,-94481,-1271,9819
|
||||
MonasticFlag3 = 72401,-94526,-1271,9819
|
58
L2J_Mobius_10.3_MasterClass/dist/game/config/GameAssistant.ini
vendored
Normal file
58
L2J_Mobius_10.3_MasterClass/dist/game/config/GameAssistant.ini
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# PC Cafe (PC Bang)
|
||||
# ---------------------------------------------------------------------------
|
||||
# Must add to l2.ini [Localize] section UsePCBangPoint=true
|
||||
# PC CAFE POINTS ID = -100
|
||||
|
||||
# PC Cafe Enabled.
|
||||
PcCafeEnabled = False
|
||||
|
||||
# Allow only players with a Premium account.
|
||||
PcCafeOnlyPremium = False
|
||||
|
||||
# Max points that player may have.
|
||||
# Limited by int limit.
|
||||
MaxPcCafePoints = 200000
|
||||
|
||||
# PC Bang point rate.
|
||||
# Acquisition formula equals (exp * 0.0001 * AcquisitionPointsRate)
|
||||
# e.g. with 1.0 it's 10000 exp = 1 PC Bang point
|
||||
# 2.0 - 10000 exp = 2 PC Bang points
|
||||
# 0.5 - 5000 exp = 1 PC Bang point
|
||||
AcquisitionPointsRate = 1.0
|
||||
|
||||
# Use random points rewarding.
|
||||
# If enabled points will be random from points/2 to points.
|
||||
AcquisitionPointsRandom = False
|
||||
|
||||
# Creates a chance to aquire double points.
|
||||
DoublingAcquisitionPoints = True
|
||||
|
||||
# Double points chance.
|
||||
# Used when DoublingAcquisitionPoints is enabled.
|
||||
# Default 1 (%)
|
||||
DoublingAcquisitionPointsChance = 1
|
||||
|
||||
# Reward low exp kills
|
||||
# Acquire points if player gains exp and aquire formula equals 0.
|
||||
RewardLowExpKills = True
|
||||
|
||||
# Chance for low exp kills
|
||||
# Used when RewardLowExpKills is enabled.
|
||||
# Default 50 (%)
|
||||
RewardLowExpKillsChance = 50
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Game Assistant (Dimensional Merchant)
|
||||
# ---------------------------------------------------------------------------
|
||||
# Enable Game Assistant functions.
|
||||
GameAssistantEnabled = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Einhasad Store
|
||||
# ---------------------------------------------------------------------------
|
||||
# Must add to l2.ini [Localize] section UseEinhasad=true
|
||||
# Enable Einhasad Store functions.
|
||||
EinhasadStoreEnabled = False
|
714
L2J_Mobius_10.3_MasterClass/dist/game/config/General.ini
vendored
Normal file
714
L2J_Mobius_10.3_MasterClass/dist/game/config/General.ini
vendored
Normal file
@@ -0,0 +1,714 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# General Server Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Administrator
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Default Access Level. For example if you set 100, everyone will have 100 access level.
|
||||
# Default: 0
|
||||
DefaultAccessLevel = 0
|
||||
|
||||
|
||||
# If True, only accounts with GM access can enter the server.
|
||||
# Default: False
|
||||
ServerGMOnly = False
|
||||
|
||||
# Enable GMs to have the glowing aura of a Hero character on login.
|
||||
# Notes:
|
||||
# GMs can do "///hero" on themselves and get this aura voluntarily.
|
||||
# It's advised to keep this off due to graphic lag.
|
||||
# Default: False
|
||||
GMHeroAura = False
|
||||
|
||||
# Whether GM logins in builder hide mode by default.
|
||||
# Default: True
|
||||
GMStartupBuilderHide = True
|
||||
|
||||
# Auto set invulnerable status to a GM on login.
|
||||
# Default: False
|
||||
GMStartupInvulnerable = True
|
||||
|
||||
# Auto set invisible status to a GM on login.
|
||||
# Default: False
|
||||
GMStartupInvisible = True
|
||||
|
||||
# Auto block private messages to a GM on login.
|
||||
# Default: False
|
||||
GMStartupSilence = False
|
||||
|
||||
# Auto list GMs in GM list (/gmlist) on login.
|
||||
# Default: False
|
||||
GMStartupAutoList = False
|
||||
|
||||
# Auto set diet mode on to a GM on login (affects your weight penalty).
|
||||
# Default: False
|
||||
GMStartupDietMode = False
|
||||
|
||||
# Item restrictions apply to GMs as well? (True = restricted usage)
|
||||
# Default: True
|
||||
GMItemRestriction = True
|
||||
|
||||
# Skill restrictions apply to GMs as well? (True = restricted usage)
|
||||
# Default: True
|
||||
GMSkillRestriction = True
|
||||
|
||||
# Allow GMs to drop/trade non-tradable and quest(drop only) items
|
||||
# Default: False
|
||||
GMTradeRestrictedItems = False
|
||||
|
||||
# Allow GMs to restart/exit while is fighting stance
|
||||
# Default: True
|
||||
GMRestartFighting = True
|
||||
|
||||
# Show the GM's name behind an announcement made by him
|
||||
# example: "Announce: hi (HanWik)"
|
||||
GMShowAnnouncerName = False
|
||||
|
||||
# Give special skills for every GM
|
||||
# 7029,7041-7064,7088-7096,23238-23249 (Master's Blessing)
|
||||
# Default: False
|
||||
GMGiveSpecialSkills = False
|
||||
|
||||
# Give special aura skills for every GM
|
||||
# 7029,23238-23249,23253-23296 (Master's Blessing)
|
||||
# Default: False
|
||||
GMGiveSpecialAuraSkills = False
|
||||
|
||||
# Debug html paths for GM characters.
|
||||
# Default: True
|
||||
GMDebugHtmlPaths = True
|
||||
|
||||
# In case you are not satisfied with the retail-like implementation of //gmspeed",
|
||||
# with this config you can rollback it to the old custom L2J version of the GM Speed.
|
||||
# Default: False
|
||||
UseSuperHasteAsGMSpeed = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Server Security
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
#Logging settings. The following four settings, while enabled, will increase writing to your hard drive(s) considerably. Depending on the size of your server, the amount of players, and other factors, you may suffer a noticable performance hit.
|
||||
# Default: False
|
||||
LogChat = False
|
||||
|
||||
# Default: False
|
||||
LogAutoAnnouncements = False
|
||||
|
||||
# Default: False
|
||||
LogItems = False
|
||||
|
||||
# Log only Adena and equippable items if LogItems is enabled
|
||||
LogItemsSmallLog = False
|
||||
|
||||
# Default: False
|
||||
LogItemEnchants = False
|
||||
|
||||
# Default: False
|
||||
LogSkillEnchants = False
|
||||
|
||||
# Default: False
|
||||
GMAudit = False
|
||||
|
||||
# Check players for non-allowed skills
|
||||
# Default: False
|
||||
SkillCheckEnable = True
|
||||
|
||||
# If true, remove invalid skills from player and database.
|
||||
# Report only, if false.
|
||||
# Default: False
|
||||
SkillCheckRemove = True
|
||||
|
||||
# Check also GM characters (only if SkillCheckEnable = True)
|
||||
# Default: True
|
||||
SkillCheckGM = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Optimization
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Items on ground management.
|
||||
# Allow players to drop items on the ground.
|
||||
# Default: True
|
||||
AllowDiscardItem = True
|
||||
|
||||
# Delete dropped reward items from world after a specified amount of seconds. Disabled = 0.
|
||||
# Default: 600
|
||||
AutoDestroyDroppedItemAfter = 600
|
||||
|
||||
# Time in seconds after which dropped herb will be auto-destroyed
|
||||
# Default: 60
|
||||
AutoDestroyHerbTime = 60
|
||||
|
||||
# List of item id that will not be destroyed (separated by "," like 57,5575,6673).
|
||||
# Notes:
|
||||
# Make sure the lists do NOT CONTAIN trailing spaces or spaces between the numbers!
|
||||
# Items on this list will be protected regardless of the following options.
|
||||
# Default: 0
|
||||
ListOfProtectedItems = 0
|
||||
|
||||
# Cleans up the server database on startup.
|
||||
# The bigger the database is, the longer it will take to clean up the database(the slower the server will start).
|
||||
# Sometimes this ends up with 0 elements cleaned up, and a lot of wasted time on the server startup.
|
||||
# If you want a faster server startup, set this to 'false', but its recommended to clean up the database from time to time.
|
||||
# Default: True
|
||||
DatabaseCleanUp = True
|
||||
|
||||
# This is the interval (in minutes), that the gameserver will update a players information such as location.
|
||||
# The higher you set this number, there will be less character information saving so you will have less accessing of the database and your hard drive(s).
|
||||
# The lower you set this number, there will be more frequent character information saving so you will have more access to the database and your hard drive(s).
|
||||
# A value of 0 disables periodic saving.
|
||||
# Independent of this setting the character is always saved after leaving the world.
|
||||
# Default: 15
|
||||
CharacterDataStoreInterval = 15
|
||||
|
||||
# This is the interval (in minutes), that the game server will update a clan's variables information into the database.
|
||||
# The higher you set this number, there will be less clan's variables information saving so you will have less accessing of the database and your hard drive(s).
|
||||
# The lower you set this number, there will be more frequent clan's variables information saving so you will have more access to the database and your hard drive(s).
|
||||
# A value of 0 disables periodic saving.
|
||||
# Default: 15
|
||||
ClanVariablesStoreInterval = 15
|
||||
|
||||
# This enables the server to only update items when saving the character.
|
||||
# Enabling this greatly reduces DB usage and improves performance.
|
||||
# WARNING: This option causes item loss during crashes.
|
||||
# Default: False
|
||||
LazyItemsUpdate = False
|
||||
|
||||
# When enabled, this forces (even if using lazy item updates) the items owned by the character to be updated into DB when saving its character.
|
||||
# Default: True
|
||||
UpdateItemsOnCharStore = True
|
||||
|
||||
# Also delete from world misc. items dropped by players (all except equip-able items).
|
||||
# Notes:
|
||||
# Works only if AutoDestroyDroppedItemAfter is greater than 0.
|
||||
# Default: False
|
||||
DestroyPlayerDroppedItem = False
|
||||
|
||||
# Destroy dropped equippable items (armor, weapon, jewelry).
|
||||
# Notes:
|
||||
# Works only if DestroyPlayerDroppedItem = True
|
||||
# Default: False
|
||||
DestroyEquipableItem = False
|
||||
|
||||
# Make all items destroyable.
|
||||
# If enabled players can destroy all items!!!
|
||||
DestroyAllItems = False
|
||||
|
||||
# Save dropped items into the database for restoring after restart.
|
||||
# Default: False
|
||||
SaveDroppedItem = False
|
||||
|
||||
# Enable/Disable the emptying of the stored dropped items table after items are loaded into memory (safety setting).
|
||||
# If the server crashed before saving items, on next start old items will be restored and players may already have picked up some of them so this will prevent duplicates.
|
||||
# Default: False
|
||||
EmptyDroppedItemTableAfterLoad = False
|
||||
|
||||
# Time interval in minutes to save in DB items on ground. Disabled = 0.
|
||||
# Notes:
|
||||
# If SaveDroppedItemInterval is disabled, items will be saved into the database only at server shutdown.
|
||||
# Default: 60
|
||||
SaveDroppedItemInterval = 60
|
||||
|
||||
# Delete all saved items from the database on next restart?
|
||||
# Notes:
|
||||
# Works only if SaveDroppedItem = False.
|
||||
# Default: False
|
||||
ClearDroppedItemTable = False
|
||||
|
||||
# Order NPC QuestLink list by QuestId.
|
||||
# Retail: False (but ugly)
|
||||
OrderQuestListByQuestId = True
|
||||
|
||||
# Delete invalid quest from players.
|
||||
# Default: False
|
||||
AutoDeleteInvalidQuestData = False
|
||||
|
||||
# Reward players with experience boost buff upon finishing a Story Quest.
|
||||
# Retail: True
|
||||
StoryQuestRewardBuff = True
|
||||
|
||||
# Allow creating multiple non-stackable items at one time?
|
||||
# Default: True
|
||||
MultipleItemDrop = True
|
||||
|
||||
# True = Load html's into cache only on first time html is requested.
|
||||
# False = Load all html's into cache on server startup.
|
||||
# Default: False
|
||||
LazyCache = False
|
||||
|
||||
# Check if html files contain non ASCII characters.
|
||||
# Default = True
|
||||
CheckHtmlEncoding = True
|
||||
|
||||
# Cache all character names in to memory on server startup
|
||||
# False - names are loaded from Db when they are requested
|
||||
# True - decrease Db usage , increase memory consumption
|
||||
# Default: True
|
||||
CacheCharNames = True
|
||||
|
||||
# Minimum and maximum variables in seconds for NPC animation delay.
|
||||
# You must keep MinNpcAnimation lower or equal to MaxNpcAnimation.
|
||||
# Set values to 0 for disabling random animations.
|
||||
# Default: 5
|
||||
MinNpcAnimation = 5
|
||||
# Default: 60
|
||||
MaxNpcAnimation = 60
|
||||
# Default: 5
|
||||
MinMonsterAnimation = 5
|
||||
# Default: 60
|
||||
MaxMonsterAnimation = 60
|
||||
|
||||
# Grid options: Grids can turn themselves on and off. This also affects the loading and processing of all AI tasks and (in the future) geodata within this grid.
|
||||
# Turn on for a grid with a person in it is immediate, but it then turns on the 8 neighboring grids based on the specified number of seconds.
|
||||
# Turn off for a grid and neighbors occurs after the specified number of seconds have passed during which a grid has had no players in or in any of its neighbors.
|
||||
# The always on option allows to ignore all this and let all grids be active at all times (not suggested).
|
||||
# Default: False
|
||||
GridsAlwaysOn = False
|
||||
|
||||
# Default: 1
|
||||
GridNeighborTurnOnTime = 1
|
||||
|
||||
# Default: 90
|
||||
GridNeighborTurnOffTime = 90
|
||||
|
||||
# Correct buylist and multisell prices when lower than sell price.
|
||||
# Default: True
|
||||
CorrectPrices = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Falling Damage
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Allow characters to receive damage from falling.
|
||||
# Default: True
|
||||
EnableFallingDamage = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Features
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Peace Zone Modes:
|
||||
# 0 = Peace All the Time
|
||||
# 1 = PVP During Siege for siege participants
|
||||
# 2 = PVP All the Time
|
||||
# Default: 0
|
||||
PeaceZoneMode = 0
|
||||
|
||||
# Global Chat.
|
||||
# Available Options: ON, OFF, GM, GLOBAL
|
||||
# Default: ON
|
||||
GlobalChat = ON
|
||||
|
||||
# Trade Chat.
|
||||
# Available Options: ON, OFF, GM, GLOBAL
|
||||
# Default: ON
|
||||
TradeChat = ON
|
||||
|
||||
# Minimum level for chat, 0 = disable
|
||||
# Default: 0
|
||||
MinimumChatLevel = 0
|
||||
|
||||
# If you are experiencing problems with Warehouse transactions, feel free to disable them here.
|
||||
# Default: True
|
||||
AllowWarehouse = True
|
||||
|
||||
# Enable Warehouse Cache. If warehouse is not used will server clear memory used by this warehouse.
|
||||
# Default: False
|
||||
WarehouseCache = False
|
||||
|
||||
# How long warehouse should be stored in memory.
|
||||
# Default: 15
|
||||
WarehouseCacheTime = 15
|
||||
|
||||
# Default: True
|
||||
AllowRefund = True
|
||||
|
||||
# Default: True
|
||||
AllowMail = True
|
||||
|
||||
# Default: True
|
||||
AllowAttachments = True
|
||||
|
||||
# If True player can try on weapon and armor in shop.
|
||||
# Default: True
|
||||
AllowWear = True
|
||||
|
||||
# Default: 5
|
||||
WearDelay = 5
|
||||
|
||||
#Adena cost to try on an item.
|
||||
# Default: 10
|
||||
WearPrice = 10
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Instances
|
||||
# ---------------------------------------------------------------------------
|
||||
# Restores the player to their previous instance (ie. an instanced area/dungeon) on EnterWorld.
|
||||
# Default: False
|
||||
RestorePlayerInstance = False
|
||||
|
||||
# When a player dies, is removed from instance after a fixed period of time.
|
||||
# Time in minutes.
|
||||
# Default: 1
|
||||
EjectDeadPlayerTime = 1
|
||||
|
||||
# When is instance finished, is set time to destruction currency instance.
|
||||
# Time in minutes.
|
||||
# Default: 5
|
||||
DefaultFinishTime = 5
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Misc Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Default: True
|
||||
AllowRace = False
|
||||
|
||||
# Default: True
|
||||
AllowWater = True
|
||||
|
||||
# Default: True
|
||||
AllowFishing = True
|
||||
|
||||
# Default: True
|
||||
AllowBoat = True
|
||||
|
||||
# Boat broadcast radius.
|
||||
# If players getting annoyed by boat shouts then radius can be decreased.
|
||||
# Default: 20000
|
||||
BoatBroadcastRadius = 20000
|
||||
|
||||
# Default: True
|
||||
AllowCursedWeapons = True
|
||||
|
||||
# Show "data/html/servnews.htm" when a character enters world.
|
||||
# Default: False
|
||||
ShowServerNews = False
|
||||
|
||||
# Enable the Community Board.
|
||||
# Default: True
|
||||
EnableCommunityBoard = True
|
||||
|
||||
# Default Community Board page.
|
||||
# Default: _bbshome
|
||||
BBSDefault = _bbshome
|
||||
|
||||
# Enable chat filter
|
||||
# Default = False
|
||||
UseChatFilter = False
|
||||
|
||||
# Replace filter words with following chars
|
||||
ChatFilterChars = ^_^
|
||||
|
||||
# Banchat for channels, split ";"
|
||||
# GENERAL (white)
|
||||
# SHOUT (!)
|
||||
# TELL (")
|
||||
# PARTY (#)
|
||||
# CLAN (@)
|
||||
# GM (//gmchat)
|
||||
# PETITION_PLAYER (*)
|
||||
# PETITION_GM (*)
|
||||
# TRADE (+)
|
||||
# ALLIANCE ($)
|
||||
# ANNOUNCEMENT
|
||||
# BOAT
|
||||
# FRIEND
|
||||
# MSNCHAT
|
||||
# PARTYMATCH_ROOM
|
||||
# PARTYROOM_COMMANDER (Yellow)
|
||||
# PARTYROOM_ALL (Red)
|
||||
# HERO_VOICE (%)
|
||||
# CRITICAL_ANNOUNCE
|
||||
# SCREEN_ANNOUNCE
|
||||
# BATTLEFIELD
|
||||
# MPCC_ROOM
|
||||
# NPC_GENERAL
|
||||
# NPC_SHOUT
|
||||
# NEW_TELL
|
||||
# WORLD (&)
|
||||
# Default: ALL;SHOUT;GLOBAL;TRADE;HERO_VOICE
|
||||
BanChatChannels = GENERAL;SHOUT;WORLD;TRADE;HERO_VOICE
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# World chat settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# World Chat.
|
||||
# Default: True
|
||||
WorldChatEnabled = True
|
||||
|
||||
# The minimum level to use this chat.
|
||||
# Default: 95
|
||||
WorldChatMinLevel = 95
|
||||
|
||||
# The amount of points player will have at his disposal every day.
|
||||
# Default: 3
|
||||
WorldChatPointsPerDay = 3
|
||||
|
||||
# The delay player must wait before sending new world chat message.
|
||||
# Note: Value is in seconds
|
||||
# Default: 20secs
|
||||
WorldChatInterval = 20secs
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Manor
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Default: True
|
||||
AllowManor = True
|
||||
|
||||
# Manor refresh time in military hours.
|
||||
# Default: 20 (8pm)
|
||||
AltManorRefreshTime = 20
|
||||
|
||||
# Manor refresh time (minutes).
|
||||
# Default: 00 (start of the hour)
|
||||
AltManorRefreshMin = 00
|
||||
|
||||
# Manor period approve time in military hours.
|
||||
# Default: 4 (4am)
|
||||
AltManorApproveTime = 4
|
||||
|
||||
# Manor period approve time (minutes).
|
||||
# Default: 30
|
||||
AltManorApproveMin = 30
|
||||
|
||||
# Manor maintenance time (minutes).
|
||||
# Default: 6
|
||||
AltManorMaintenanceMin = 6
|
||||
|
||||
# Manor Save Type.
|
||||
# True = Save data into the database after every action
|
||||
# Default: False
|
||||
AltManorSaveAllActions = False
|
||||
|
||||
# Manor Save Period (used only if AltManorSaveAllActions = False)
|
||||
# Default: 2 (hour)
|
||||
AltManorSavePeriodRate = 2
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Item Auction
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
#
|
||||
AltItemAuctionEnabled = True
|
||||
|
||||
# Number of days before auction cleared from database with all bids.
|
||||
# Default: 14
|
||||
AltItemAuctionExpiredAfter = 14
|
||||
|
||||
# Auction extends to specified amount of seconds if one or more new bids added.
|
||||
# By default auction extends only two times, by 5 and 3 minutes, this custom value used after it.
|
||||
# Values higher than 60s is not recommended.
|
||||
# Default: 0
|
||||
AltItemAuctionTimeExtendsOnBid = 0
|
||||
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
# Punishment
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Player punishment for illegal actions:
|
||||
# 1 - broadcast warning to gms only
|
||||
# 2 - kick player(default)
|
||||
# 3 - kick & ban player
|
||||
# 4 - jail player (define minutes of jail with param: 0 = infinite)
|
||||
# Default: 2
|
||||
DefaultPunish = 2
|
||||
|
||||
# This setting typically specifies the duration of the above punishment.
|
||||
# Default: 0
|
||||
DefaultPunishParam = 0
|
||||
|
||||
# Apply default punish if player buy items for zero Adena.
|
||||
# Default: True
|
||||
OnlyGMItemsFree = True
|
||||
|
||||
# Jail is a PvP zone.
|
||||
# Default: False
|
||||
JailIsPvp = False
|
||||
|
||||
# Disable all chat in jail (except normal one)
|
||||
# Default: True
|
||||
JailDisableChat = True
|
||||
|
||||
# Disable all transaction in jail
|
||||
# Trade/Store/Drop
|
||||
# Default: False
|
||||
JailDisableTransaction = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Custom Components
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Default: False
|
||||
CustomNpcData = True
|
||||
|
||||
# Default: False
|
||||
CustomTeleportTable = True
|
||||
|
||||
# Default: False
|
||||
CustomSkillsLoad = True
|
||||
|
||||
# Default: False
|
||||
CustomItemsLoad = True
|
||||
|
||||
# Default: False
|
||||
CustomMultisellLoad = True
|
||||
|
||||
# Default: False
|
||||
CustomBuyListLoad = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Teleport Bookmark Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Consume item for teleporting.
|
||||
# Default: 20033 (Teleport Flag)
|
||||
# No item consume: -1
|
||||
BookmarkConsumeItemId = -1
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Birthday Event Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Gift sent with Mail System
|
||||
# Default: 22187
|
||||
AltBirthdayGift = 22187
|
||||
|
||||
# Mail Subject
|
||||
AltBirthdayMailSubject = Happy Birthday!
|
||||
|
||||
# Mail Content
|
||||
# $c1: Player name
|
||||
# $s1: Age
|
||||
AltBirthdayMailText = Hello Adventurer!! Seeing as you're one year older now, I thought I would send you some birthday cheer :) Please find your birthday pack attached. May these gifts bring you joy and happiness on this very special day.\n\nSincerely, Alegria
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Handy's Block Checker Event Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable the Handy's Block Checker event
|
||||
# Default: True
|
||||
EnableBlockCheckerEvent = True
|
||||
|
||||
# Minimum number of members on each team before
|
||||
# be able to start the event
|
||||
# Min: 1
|
||||
# Max: 6
|
||||
# Retail: 2
|
||||
BlockCheckerMinTeamMembers = 2
|
||||
|
||||
# Fair play
|
||||
# Players can choose what team to play. However, by
|
||||
# enabling this property to true, the teams will be
|
||||
# balanced in the teleport to the arena
|
||||
HBCEFairPlay = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Bot Report Button settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable the bot report button on the desired game servers.
|
||||
# Default: True
|
||||
EnableBotReportButton = True
|
||||
|
||||
# Report points restart hour. Format: HH:MM ( PM mode, 24 hours clock)
|
||||
# Default: 00:00
|
||||
BotReportPointsResetHour = 00:00
|
||||
|
||||
# Delay between reports from the same player (in minutes)
|
||||
# Default: 30 minutes
|
||||
BotReportDelay = 30
|
||||
|
||||
# Allow players from the same clan to report the same bot
|
||||
# Default: False
|
||||
AllowReportsFromSameClanMembers = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Auto Play Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Default: True
|
||||
EnableAutoPlay = True
|
||||
|
||||
# Default: True
|
||||
EnableAutoPotion = True
|
||||
|
||||
# Default: True
|
||||
EnableAutoSkill = True
|
||||
|
||||
# Default: True
|
||||
EnableAutoItem = True
|
||||
|
||||
# Resume auto play upon enter game.
|
||||
# Retail: False
|
||||
ResumeAutoPlay = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Developer Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Do not touch these if you do not know what you are doing.
|
||||
# These settings are for debugging servers ONLY. They are not meant for LIVE servers.
|
||||
|
||||
# Html action cache debugging
|
||||
# Default: False
|
||||
HtmlActionCacheDebug = False
|
||||
|
||||
# Default: False
|
||||
Developer = False
|
||||
|
||||
# Don't load quests.
|
||||
# Default: False
|
||||
AltDevNoQuests = False
|
||||
|
||||
# Don't load spawntable.
|
||||
# Default: False
|
||||
AltDevNoSpawns = False
|
||||
|
||||
# Show quests while loading them.
|
||||
# Default: False
|
||||
AltDevShowQuestsLoadInLogs = False
|
||||
|
||||
# Show scripts while loading them.
|
||||
# Default: False
|
||||
AltDevShowScriptsLoadInLogs = False
|
||||
|
||||
# Debug incoming packets.
|
||||
# Default: False
|
||||
DebugIncomingPackets = False
|
||||
|
||||
# Debug ex-incoming packets.
|
||||
# Default: False
|
||||
DebugExIncomingPackets = False
|
||||
|
||||
# Debug outgoing packets.
|
||||
# Default: False
|
||||
DebugOutgoingPackets = False
|
||||
|
||||
# Debug unknown packets.
|
||||
# Default: True
|
||||
DebugUnknownPackets = True
|
||||
|
||||
# Excluded packet list.
|
||||
# Packet names that are excluded from debugging, separated by commas.
|
||||
ExcludedPacketList = AbnormalStatusUpdate, AcquireSkillList, Attack, AutoAttackStart, AutoAttackStop, DeleteObject, ExAutoSoulShot, ExCollectionInfo, ExPacket, ExStorageMaxCount, ExUserBoostStat, ExUserInfoAbnormalVisualEffect, ExUserInfoEquipSlot, MoveToLocation, NpcInfo, NpcSay, SkillCoolTime, SocialAction, StatusUpdate, UserInfo, ValidatePosition
|
48
L2J_Mobius_10.3_MasterClass/dist/game/config/GeoEngine.ini
vendored
Normal file
48
L2J_Mobius_10.3_MasterClass/dist/game/config/GeoEngine.ini
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
# =================================================================
|
||||
# Geodata
|
||||
# =================================================================
|
||||
|
||||
# Pathfinding options:
|
||||
# 0 = Disabled
|
||||
# 1 = Enabled using path node files.
|
||||
# 2 = Enabled using geodata cells at runtime (recommended).
|
||||
# Default: 2
|
||||
PathFinding = 2
|
||||
|
||||
# Geodata file directory.
|
||||
GeoDataPath = ./data/geodata/
|
||||
|
||||
# Pathnode file directory.
|
||||
# Default: pathnode
|
||||
PathnodePath = ./data/pathnode/
|
||||
|
||||
# Pathfinding array buffers configuration.
|
||||
PathFindBuffers = 100x6;128x6;192x6;256x4;320x4;384x4;500x2
|
||||
|
||||
# Weight for nodes without obstacles far from walls.
|
||||
LowWeight = 0.5
|
||||
|
||||
# Weight for nodes near walls.
|
||||
MediumWeight = 2
|
||||
|
||||
# Weight for nodes with obstacles.
|
||||
HighWeight = 3
|
||||
|
||||
# Angle paths will be more "smart", but in cost of higher CPU utilization.
|
||||
AdvancedDiagonalStrategy = True
|
||||
|
||||
# Weight for diagonal movement. Used only with AdvancedDiagonalStrategy = True
|
||||
# Default: LowWeight * sqrt(2)
|
||||
DiagonalWeight = 0.707
|
||||
|
||||
# Maximum number of LOS postfilter passes, 0 will disable postfilter.
|
||||
# Default: 3
|
||||
MaxPostfilterPasses = 3
|
||||
|
||||
# Path debug function.
|
||||
# Nodes known to pathfinder will be displayed as adena, constructed path as antidots.
|
||||
# Number of the items show node cost * 10
|
||||
# Potions display path after first stage filter
|
||||
# Red potions - actual waypoints. Green potions - nodes removed by LOS postfilter
|
||||
# This function FOR DEBUG PURPOSES ONLY, never use it on the live server!
|
||||
DebugPath = False
|
18
L2J_Mobius_10.3_MasterClass/dist/game/config/GraciaSeeds.ini
vendored
Normal file
18
L2J_Mobius_10.3_MasterClass/dist/game/config/GraciaSeeds.ini
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Gracia Seeds Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Seed of Destruction Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Count of Kills which needed for Stage 2
|
||||
# Default: 10
|
||||
TiatKillCountForNextState = 10
|
||||
|
||||
# Length of Stage 2 before the Defense state starts (in minutes).
|
||||
# Default: 720min (12h)
|
||||
Stage2Length = 720
|
240
L2J_Mobius_10.3_MasterClass/dist/game/config/GrandBoss.ini
vendored
Normal file
240
L2J_Mobius_10.3_MasterClass/dist/game/config/GrandBoss.ini
vendored
Normal file
@@ -0,0 +1,240 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Antharas
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Delay of appearance time of Antharas. Value is minute. Range 3-60
|
||||
AntharasWaitTime = 20
|
||||
|
||||
# Interval time of Antharas. Value is hour. Range 1-480
|
||||
IntervalOfAntharasSpawn = 264
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfAntharasSpawn = 72
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Valakas
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Delay of appearance time of Valakas. Value is minute. Range 3-60
|
||||
ValakasWaitTime = 30
|
||||
|
||||
# Interval time of Valakas. Value is hour. Range 1-480
|
||||
IntervalOfValakasSpawn = 264
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfValakasSpawn = 72
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Baium
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of Baium. Value is hour. Range 1-480
|
||||
IntervalOfBaiumSpawn = 168
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfBaiumSpawn = 48
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Core
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of Core. Value is hour. Range 1-480
|
||||
IntervalOfCoreSpawn = 60
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfCoreSpawn = 24
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Orfen
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of Orfen. Value is hour. Range 1-480
|
||||
IntervalOfOrfenSpawn = 48
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfOrfenSpawn = 20
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Queen Ant
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of QueenAnt. Value is hour. Range 1-480
|
||||
IntervalOfQueenAntSpawn = 36
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfQueenAntSpawn = 17
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Beleth
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Delay of appearance time of Beleth. Value is minute. Range 3-60
|
||||
BelethWaitTime = 5
|
||||
|
||||
# Interval time of Beleth. Value is hour. Range 1-480. Retail: 192
|
||||
IntervalOfBelethSpawn = 192
|
||||
|
||||
# Random interval. Range 1-192. Retail: 148
|
||||
RandomOfBelethSpawn = 148
|
||||
|
||||
#Minimum count of players for enter to Beleth. Retail: 49
|
||||
BelethMinPlayers = 49
|
||||
|
||||
#Maximum count of players for enter to Beleth. Retail: 350
|
||||
BelethMaxPlayers = 350
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Kelbim
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Delay of appearance time of Kelbim. Value is minute. Range 3-60
|
||||
KelbimWaitTime = 5
|
||||
|
||||
# Interval time of Kelbim. Value is hour. Range 1-480. Retail: 48
|
||||
IntervalOfKelbimSpawn = 48
|
||||
|
||||
# Random interval. Range 1-192. Retail: 24
|
||||
RandomOfKelbimSpawn = 24
|
||||
|
||||
#Minimum count of players for enter to Kelbim. Retail: 21
|
||||
KelbimMinPlayers = 21
|
||||
|
||||
#Maximum count of players for enter to Kelbim. Retail: 35
|
||||
KelbimMaxPlayers = 35
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Anakim
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Minimum count of players for enter to Anakim. Retail: 98
|
||||
AnakimMinPlayers = 98
|
||||
|
||||
# Maximum count of players for enter to Anakim. Retail: 120
|
||||
AnakimMaxPlayers = 120
|
||||
|
||||
# Minimum players Level for enter to Anakim. Retail: 105
|
||||
AnakimMinPlayerLvl = 105
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Lilith
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Minimum count of players for enter to Lilith. Retail: 98
|
||||
LilithMinPlayers = 98
|
||||
|
||||
# Maximum count of players for enter to Lilith. Retail: 120
|
||||
LilithMaxPlayers = 120
|
||||
|
||||
# Minimum players Level for enter to Lilith. Retail: 105
|
||||
LilithMinPlayerLvl = 105
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Trasken
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of Trasken. Value is hour. Range 1-480. Retail: 264
|
||||
IntervalOfTraskenSpawn = 264
|
||||
|
||||
# Random interval. Range 1-192. Retail: 72
|
||||
RandomOfTraskenSpawn = 72
|
||||
|
||||
# Minimum count of players for enter to Trasken. Retail: 49
|
||||
TraskenMinPlayers = 49
|
||||
|
||||
# Maximum count of players for enter to Trasken. Retail: 112
|
||||
TraskenMaxPlayers = 112
|
||||
|
||||
# Minimum players Level for enter to Trasken. Retail: 99
|
||||
TraskenMinPlayerLvl = 85
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Lindvior
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of Lindvior. Value is hour. Range 1-480. Retail: 264
|
||||
IntervalOfLindviorSpawn = 264
|
||||
|
||||
# Random interval. Range 1-192. Retail: 72
|
||||
RandomOfLindviorSpawn = 72
|
||||
|
||||
# Minimum count of players for enter to Lindvior. Retail: 49
|
||||
LindviorMinPlayers = 49
|
||||
|
||||
# Maximum count of players for enter to Lindvior. Retail: 112
|
||||
LindviorMaxPlayers = 112
|
||||
|
||||
# Minimum players Level for enter to Lindvior. Retail: 99
|
||||
LindviorMinPlayerLvl = 99
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Ramona
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of Ramona. Value is hour. Range 1-480
|
||||
IntervalOfRamonaSpawn = 72
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfRamonaSpawn = 48
|
||||
|
||||
# Minimum count of players for enter to Ramona. Retail: 7
|
||||
RamonaMinPlayers = 7
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Helios
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Delay of appearance time of Helios. Value is minute. Range 3-60
|
||||
HeliosWaitTime = 10
|
||||
|
||||
# Interval time of Helios. Value is hour. Range 1-480
|
||||
IntervalOfHeliosSpawn = 264
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfHeliosSpawn = 72
|
||||
|
||||
# Minimum count of players for enter to Helios. Retail: 70
|
||||
HeliosMinPlayers = 70
|
||||
|
||||
# Minimum players Level for enter to Helios. Retail: 102
|
||||
HeliosMinPlayerLvl = 99
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Etis Van Etina
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of Etis Van Etina. Value is hour. Range 1-480. Retail: 264
|
||||
IntervalOfEtinaSpawn = 72
|
||||
|
||||
# Random interval. Range 1-192. Retail: 72
|
||||
RandomOfEtinaSpawn = 1
|
||||
|
||||
# Minimum count of players for enter to Etis Van Etina. Retail: 49
|
||||
EtinaMinPlayers = 2
|
||||
|
||||
# Maximum count of players for enter to Etis Van Etina. Retail: 112
|
||||
EtinaMaxPlayers = 112
|
||||
|
||||
# Minimum players Level for enter to Etis Van Etina. Retail: 99
|
||||
EtinaMinPlayerLvl = 103
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Fafurion
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Delay of appearance time of Fafurion. Value is minute. Range 3-60
|
||||
FafurionWaitTime = 10
|
||||
|
||||
# Interval time of Fafurion. Value is hour. Range 1-480
|
||||
IntervalOfFafurionSpawn = 264
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfFafurionSpawn = 72
|
||||
|
||||
# Maximum count of players for enter to 200. Retail: 200
|
||||
FafurionMaxPlayers = 200
|
||||
|
||||
# Minimum count of players for enter to Fafurion. Retail: 49
|
||||
FafurionMinPlayers = 49
|
||||
|
||||
# Minimum players Level for enter to Fafurion. Retail: 105
|
||||
FafurionMinPlayerLvl = 105
|
13
L2J_Mobius_10.3_MasterClass/dist/game/config/Interface.ini
vendored
Normal file
13
L2J_Mobius_10.3_MasterClass/dist/game/config/Interface.ini
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Interface Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable L2jMobius GUI when OS supports it.
|
||||
# Provides access to admin commands without the need to be online.
|
||||
# Default: True
|
||||
EnableGUI = True
|
||||
|
||||
# Dark theme.
|
||||
# Use a dark version of the Nimbus theme.
|
||||
# Default: True
|
||||
DarkTheme = True
|
7
L2J_Mobius_10.3_MasterClass/dist/game/config/MentorCoins.xml
vendored
Normal file
7
L2J_Mobius_10.3_MasterClass/dist/game/config/MentorCoins.xml
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/MentorCoins.xsd">
|
||||
<mentee level="85" coins="5000" />
|
||||
<mentee level="99" coins="10000" />
|
||||
<mentee level="103" coins="25000" />
|
||||
<mentee level="105" coins="60000" />
|
||||
</list>
|
211
L2J_Mobius_10.3_MasterClass/dist/game/config/NPC.ini
vendored
Normal file
211
L2J_Mobius_10.3_MasterClass/dist/game/config/NPC.ini
vendored
Normal file
@@ -0,0 +1,211 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# NPC Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# This properties file is solely for the purpose of NPC modifications and settings that directly influence them.
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# General
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Global announcements will be made indicating Blacksmith/Merchant of Mammon
|
||||
# Spawning points.
|
||||
# Default: False
|
||||
AnnounceMammonSpawn = False
|
||||
|
||||
# True - Mobs can be aggressive while in peace zones.
|
||||
# False - Mobs can NOT be aggressive while in peace zones.
|
||||
# Default: True
|
||||
AltMobAgroInPeaceZone = True
|
||||
|
||||
# Defines whether NPCs are attackable by default
|
||||
# Retail: True
|
||||
AltAttackableNpcs = True
|
||||
|
||||
# Allows non-GM players to view NPC stats via shift-click
|
||||
# Default: False
|
||||
AltGameViewNpc = False
|
||||
|
||||
# Default: False
|
||||
ShowNpcLevel = False
|
||||
|
||||
# Default: False
|
||||
ShowNpcAggression = False
|
||||
|
||||
# Attackables do not leave player corpses.
|
||||
AttackablesCampPlayerCorpses = False
|
||||
|
||||
# Show clan, alliance crests for territory NPCs without quests
|
||||
# Default: False
|
||||
ShowCrestWithoutQuest = False
|
||||
|
||||
# Custom random EnchantEffect
|
||||
# All npcs with weapons get random weapon enchanted value
|
||||
# Enchantment is only visual, range is 4-21
|
||||
# Default: False
|
||||
EnableRandomEnchantEffect = False
|
||||
|
||||
# The minimum NPC level for the Gracia Epilogue rule:
|
||||
# "The amount of damage inflicted on monsters will be lower if your character is 2 or more levels below that of the level 78+ monster."
|
||||
# Notes:
|
||||
# If you want to disable this feature then set it to max player level.
|
||||
# Default: 78
|
||||
MinNPCLevelForDmgPenalty = 78
|
||||
|
||||
# The penalty in percent for -2 till -9 level differences
|
||||
# Default: 0.8, 0.6, 0.5, 0.42, 0.36, 0.32, 0.28, 0.25
|
||||
DmgPenaltyForLvLDifferences = 0.8, 0.6, 0.5, 0.42, 0.36, 0.32, 0.28, 0.25
|
||||
CritDmgPenaltyForLvLDifferences = 0.8, 0.6, 0.5, 0.42, 0.36, 0.32, 0.28, 0.25
|
||||
SkillDmgPenaltyForLvLDifferences = 0.8, 0.6, 0.5, 0.42, 0.36, 0.32, 0.28, 0.25
|
||||
|
||||
# The minimum NPC level for the Gracia Epilogue rule:
|
||||
# "When a character's level is 3 or more levels lower than that of a monsters level the chance that the monster will be able to resist a magic spell will increase."
|
||||
# Notes:
|
||||
# If you want to disable this feature then set it to max player level.
|
||||
# Default: 78
|
||||
MinNPCLevelForMagicPenalty = 78
|
||||
|
||||
# The penalty in percent for -3 till -6 level differences
|
||||
# Default: unknown
|
||||
SkillChancePenaltyForLvLDifferences = 2.5, 3.0, 3.25, 3.5
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Monsters
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This is the default corpse time (in seconds).
|
||||
# Default: 7
|
||||
DefaultCorpseTime = 7
|
||||
|
||||
# This is the time that will be added to spoiled corpse time (in seconds).
|
||||
# Default: 10
|
||||
SpoiledCorpseExtendTime = 10
|
||||
|
||||
# The time allowed to use a corpse consume skill before the corpse decays.
|
||||
# Default: 2000
|
||||
CorpseConsumeSkillAllowedTimeBeforeDecay = 2000
|
||||
|
||||
# Maximum distance monsters can randomly move from spawn.
|
||||
# Default: 300
|
||||
MaxDriftRange = 300
|
||||
|
||||
# Enable monster aggro distance check.
|
||||
# When enabled monsters will lose aggro if pulled far away from spawn.
|
||||
# Default: True
|
||||
AggroDistanceCheckEnabled = True
|
||||
|
||||
# Maximum distance monsters can be pulled away from spawn.
|
||||
# Overridden by Spawn chaseRange parameter.
|
||||
# Default: 3000
|
||||
AggroDistanceCheckRange = 3000
|
||||
|
||||
# Use maximum aggro distance check for raids.
|
||||
# Grandbosses are excluded.
|
||||
# Default: False
|
||||
AggroDistanceCheckRaids = False
|
||||
|
||||
# Maximum distance raids can be pulled away from spawn.
|
||||
# Overridden by Spawn chaseRange parameter.
|
||||
# Default: 4000
|
||||
AggroDistanceCheckRaidRange = 4000
|
||||
|
||||
# Use maximum aggro distance check in instances.
|
||||
# Default: False
|
||||
AggroDistanceCheckInstances = False
|
||||
|
||||
# Restore monster HP and MP when aggro is reset by distance.
|
||||
# Default: True
|
||||
AggroDistanceCheckRestoreLife = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Guards
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# True - Allows guards to attack aggressive mobs within range.
|
||||
# Default: False
|
||||
GuardAttackAggroMob = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Pets
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This will control the inventory space limit for pets (NOT WEIGHT LIMIT).
|
||||
# Default: 12
|
||||
MaximumSlotsForPet = 12
|
||||
|
||||
# HP/MP Regen Multiplier for Pets
|
||||
# Default: 100, 100
|
||||
PetHpRegenMultiplier = 100
|
||||
PetMpRegenMultiplier = 100
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Raid Bosses
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Percent of HP and MP regeneration for raid bosses.
|
||||
# Example: Setting HP to 10 will cause raid boss HP to regenerate 90% slower than normal.
|
||||
# Default: 100, 100
|
||||
RaidHpRegenMultiplier = 100
|
||||
RaidMpRegenMultiplier = 100
|
||||
|
||||
# Percent of physical and magical defense for raid bosses.
|
||||
# Example: A setting of 10 will cause defense to be 90% lower than normal,
|
||||
# while 110 will cause defense to be 10% higher than normal.
|
||||
# Default: 100, 100
|
||||
RaidPDefenceMultiplier = 100
|
||||
RaidMDefenceMultiplier = 100
|
||||
|
||||
# Percent of physical and magical attack for raid bosses.
|
||||
# Example: A setting of 10 will cause attack to be 90% lower than normal,
|
||||
# while 110 will cause attack to be 10% higher than normal.
|
||||
# Default: 100, 100
|
||||
RaidPAttackMultiplier = 100
|
||||
RaidMAttackMultiplier = 100
|
||||
|
||||
# Configure Minimum and Maximum time multiplier between raid boss re-spawn.
|
||||
# By default 12Hours*1.0 for Minimum Time and 24Hours*1.0 for Maximum Time.
|
||||
# Example: Setting RaidMaxRespawnMultiplier to 2 will make the time between
|
||||
# re-spawn 24 hours to 48 hours.
|
||||
# Default: 1.0, 1.0
|
||||
RaidMinRespawnMultiplier = 1.0
|
||||
RaidMaxRespawnMultiplier = 1.0
|
||||
|
||||
# Configure the interval at which raid boss minions will re-spawn.
|
||||
# This time is in milliseconds, 1 minute is 60000 milliseconds.
|
||||
# Default: 300000
|
||||
RaidMinionRespawnTime = 300000
|
||||
|
||||
# Let's make handling of minions with non-standard static respawn easier - no additional code, just config.
|
||||
# Format: minionId1,timeInSec1;minionId2,timeInSec2
|
||||
CustomMinionsRespawnTime = 22450,30;22371,120;22543,0;25545,0;22424,30;22425,30;22426,30;22427,30;22428,30;22429,30;22430,30;22432,30;22433,30;22434,30;22435,30;22436,30;22437,30;22438,30;25596,30;25605,0;25606,0;25607,0;25608,0
|
||||
|
||||
# Force delete spawned minions upon master death.
|
||||
# By default minions are deleted only for raidbosses.
|
||||
# Default: False
|
||||
ForceDeleteMinions = False
|
||||
|
||||
# Disable Raid Curse if raid more than 8 levels lower.
|
||||
# Retail: True
|
||||
DisableRaidCurse = True
|
||||
|
||||
# Configure the interval at which raid bosses and minions wont reconsider their target
|
||||
# This time is in seconds, 1 minute is 60 seconds.
|
||||
# Default: 10,10,10
|
||||
RaidChaosTime = 10
|
||||
GrandChaosTime = 10
|
||||
MinionChaosTime = 10
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Vitality
|
||||
# ---------------------------------------------------------------------------
|
||||
# Vitality decrease multiplier for mob after awakening
|
||||
VitalityConsumeByMob=2250
|
||||
# Vitality increase multiplier for raid and world boss after awakening
|
||||
VitalityConsumeByBoss=1125
|
154
L2J_Mobius_10.3_MasterClass/dist/game/config/Olympiad.ini
vendored
Normal file
154
L2J_Mobius_10.3_MasterClass/dist/game/config/Olympiad.ini
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Olympiad Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# The defaults are set to be retail-like.
|
||||
# If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything.
|
||||
# Also please understand what you are changing before you do so on a live server.
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable Olympiad.
|
||||
# Default: True
|
||||
OlympiadEnabled = True
|
||||
|
||||
# Olympiad Start Time in Military hours Default 8pm (20)
|
||||
# Default: 20
|
||||
OlympiadStartTime = 20
|
||||
|
||||
# Olympiad Start Time for Min's, Default 00 so at the start of the hour.
|
||||
# Default: 00
|
||||
OlympiadMin = 00
|
||||
|
||||
# Olympiad Competition Period, Default 4 hours.
|
||||
# (If set different, should be increment by 10mins)
|
||||
# Default: 14400000
|
||||
OlympiadCPeriod = 14400000
|
||||
|
||||
# Olympiad Battle Period, Default 100 seconds.
|
||||
# Default: 100000
|
||||
OlympiadBattle = 100000
|
||||
|
||||
# Olympiad Weekly Period, Default 1 week
|
||||
# Used for adding points to nobles
|
||||
# Default: 604800000
|
||||
OlympiadWPeriod = 604800000
|
||||
|
||||
# Olympiad Validation Period, Default 24 Hours.
|
||||
# Default: 86400000
|
||||
OlympiadVPeriod = 86400000
|
||||
|
||||
# Points for reaching Noblesse for the first time
|
||||
# Default: 1000
|
||||
OlympiadStartPoints = 1000
|
||||
|
||||
# Required number of participants for the class based games
|
||||
# Default: 20
|
||||
OlympiadClassedParticipants = 20
|
||||
|
||||
# Required number of participants for the non-class based games
|
||||
# Default: 10
|
||||
OlympiadNonClassedParticipants = 10
|
||||
|
||||
# Reward for the winner
|
||||
# Format: itemId1,itemNum1;itemId2,itemNum2...
|
||||
# Default: 45584,12
|
||||
OlympiadWinReward = 45584,12
|
||||
|
||||
# Reward for loser
|
||||
# Format: itemId1,itemNum1;itemId2,itemNum2...
|
||||
# Default: 45584,7
|
||||
OlympiadLoserReward = 45584,7
|
||||
|
||||
# ItemId used for exchanging to the points.
|
||||
# Default: 45584
|
||||
OlympiadCompRewItem = 45584
|
||||
|
||||
# The minimum matches you need to participate to receive point rewards
|
||||
# Default: 10
|
||||
OlympiadMinMatchesForPoints = 10
|
||||
|
||||
# Rate to exchange points to reward item.
|
||||
# Default: 20
|
||||
OlympiadMarkPerPoint = 20
|
||||
|
||||
# Noblesse points awarded to Heroes.
|
||||
# Default: 30
|
||||
OlympiadHeroPoints = 30
|
||||
|
||||
# Noblesse points awarded to Rank 1 members.
|
||||
# Default: 100
|
||||
OlympiadRank1Points = 60
|
||||
|
||||
# Noblesse points awarded to Rank 2 members.
|
||||
# Default: 75
|
||||
OlympiadRank2Points = 50
|
||||
|
||||
# Noblesse points awarded to Rank 3 members.
|
||||
# Default: 55
|
||||
OlympiadRank3Points = 45
|
||||
|
||||
# Noblesse points awarded to Rank 4 members.
|
||||
# Default: 40
|
||||
OlympiadRank4Points = 40
|
||||
|
||||
# Noblesse points awarded to Rank 5 members.
|
||||
# Default: 30
|
||||
OlympiadRank5Points = 30
|
||||
|
||||
# Maximum points that player can gain/lose on a match.
|
||||
# Default: 10
|
||||
OlympiadMaxPoints = 10
|
||||
|
||||
# Hero tables show last month's winners or current status.
|
||||
# Default: True
|
||||
OlympiadShowMonthlyWinners = True
|
||||
|
||||
# Olympiad Managers announce each start of fight.
|
||||
# Default: True
|
||||
OlympiadAnnounceGames = True
|
||||
|
||||
# Restrict specified items in Olympiad. ItemID's need to be separated with a comma (ex. 1,200,350)
|
||||
# Equipped items will be moved to inventory during port.
|
||||
# Default:
|
||||
OlympiadRestrictedItems =
|
||||
|
||||
# Enchant limit for items during Olympiad battles. Disabled = -1.
|
||||
# Default: -1
|
||||
OlympiadWeaponEnchantLimit = -1
|
||||
OlympiadArmorEnchantLimit = -1
|
||||
|
||||
# Log all Olympiad fights and outcome to olympiad.csv file.
|
||||
# Default: False
|
||||
OlympiadLogFights = False
|
||||
|
||||
# Time to wait before teleported to arena.
|
||||
# Default: 120
|
||||
OlympiadWaitTime = 120
|
||||
|
||||
# Divider for points in classed and non-classed games
|
||||
# Default: 5
|
||||
OlympiadDividerClassed = 5
|
||||
OlympiadDividerNonClassed = 5
|
||||
|
||||
# Maximum number of matches a Noblesse character can join per week
|
||||
# Default: 25
|
||||
OlympiadMaxWeeklyMatches = 25
|
||||
|
||||
# Enable competitions only on specific days. Usage: 1,2,3,4,5,6,7 (SUNDAY,MONDAY,TUESDAY,WEDNESDAY,THURSDAY,FRIDAY,SATURDAY)
|
||||
# Default: 6,7 (FRIDAY,SATURDAY)
|
||||
OlympiadCompetitionDays = 6,7
|
||||
|
||||
# Change the type of delay between two Olympiads.
|
||||
# Available values: MONTH, WEEK, DAY
|
||||
# Default: MONTH
|
||||
OlympiadPeriod = MONTH
|
||||
|
||||
# Change the Olympiad frequency.
|
||||
# The value is a multiplier of period type,
|
||||
# i.e. if type is MONTH and multiplier is 2,
|
||||
# then Olympiad will occur every 2 months.
|
||||
# Default: 1
|
||||
# Note! If type = DAY, multiplier must be >= 7!
|
||||
OlympiadPeriodMultiplier = 1
|
91
L2J_Mobius_10.3_MasterClass/dist/game/config/PVP.ini
vendored
Normal file
91
L2J_Mobius_10.3_MasterClass/dist/game/config/PVP.ini
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# PvP Related Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
# ---------------------------------------------------------------------------
|
||||
# PK'er Drop Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Default: False
|
||||
CanGMDropEquipment = False
|
||||
|
||||
# Warning: Make sure the lists do NOT CONTAIN
|
||||
# trailing spaces or spaces between the numbers!
|
||||
# List of pet items we cannot drop.
|
||||
# Default: 2375,3500,3501,3502,4422,4423,4424,4425,6648,6649,6650
|
||||
ListOfPetItems = 2375,3500,3501,3502,4422,4423,4424,4425,6648,6649,6650
|
||||
|
||||
# Lists of items which should NEVER be dropped (note, Adena will
|
||||
# never be dropped) whether on this list or not
|
||||
# Default: 57,1147,425,1146,461,10,2368,7,6,2370,2369,6842,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,7694,8181,5575,7694,9388,9389,9390
|
||||
ListOfNonDroppableItems = 57,1147,425,1146,461,10,2368,7,6,2370,2369,6842,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,7694,8181,5575,7694,9388,9389,9390
|
||||
|
||||
# Default: 6
|
||||
MinimumPKRequiredToDrop = 6
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# AntiFeed
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This option will enable antifeed for pvp/pk/clanrep points.
|
||||
# Default: False
|
||||
AntiFeedEnable = False
|
||||
|
||||
# If set to True, kills from dualbox will not increase pvp/pk points
|
||||
# and clan reputation will not be transferred.
|
||||
# Default: True
|
||||
AntiFeedDualbox = True
|
||||
|
||||
# If set to True, server will count disconnected (unable to determine ip address) as dualbox.
|
||||
# Default: True
|
||||
AntiFeedDisconnectedAsDualbox = True
|
||||
|
||||
# If character died faster than timeout - pvp/pk points for killer will not increase
|
||||
# and clan reputation will not be transferred.
|
||||
# Setting to 0 will disable this feature.
|
||||
# Default: 120 seconds.
|
||||
AntiFeedInterval = 120
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Skills
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable VampiricAttack for PvP targets.
|
||||
VampiricAttackAffectsPvP = True
|
||||
|
||||
# Enable MpVampiricAttack for PvP targets.
|
||||
MpVampiricAttackAffectsPvP = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Misc.
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# How much time one stays in PvP mode after hitting an innocent (in ms)
|
||||
# Default: 120000
|
||||
PvPVsNormalTime = 120000
|
||||
|
||||
# Length one stays in PvP mode after hitting a purple player (in ms)
|
||||
# Default: 60000
|
||||
PvPVsPvPTime = 60000
|
||||
|
||||
# Max count of positive reputation
|
||||
# Default: 500
|
||||
MaxReputation = 500
|
||||
|
||||
# Reputation increase for kill one PK
|
||||
# Default: 100
|
||||
ReputationIncrease = 100
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Gainak Siege
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Announce Gainak siege in all chat
|
||||
# Default: false
|
||||
AnnounceGainakSiege = false
|
233
L2J_Mobius_10.3_MasterClass/dist/game/config/Rates.ini
vendored
Normal file
233
L2J_Mobius_10.3_MasterClass/dist/game/config/Rates.ini
vendored
Normal file
@@ -0,0 +1,233 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Rate Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Standard Settings (Retail value = 1)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Experience multiplier
|
||||
RateXp = 1
|
||||
# Skill points multiplier
|
||||
RateSp = 1
|
||||
# Experience multiplier (Party)
|
||||
RatePartyXp = 1
|
||||
# Skill points multiplier (Party)
|
||||
RatePartySp = 1
|
||||
|
||||
# Instance rates
|
||||
# Those rates are used as absolute rate within instances, does not applies on top of RateXp for example!
|
||||
# Default: -1 (Uses the rates above)
|
||||
# Instance Experience multiplier
|
||||
RateInstanceXp = -1
|
||||
# Instance Skill points multiplier
|
||||
RateInstanceSp = -1
|
||||
# Instance Experience multiplier (Party)
|
||||
RateInstancePartyXp = -1
|
||||
# Instance Skill points multiplier (Party)
|
||||
RateInstancePartySp = -1
|
||||
|
||||
RateDropManor = 1
|
||||
# Karma decreasing rate
|
||||
# Note: -1 means RateXp so it means it will use retail rate for decreasing karma upon death or receiving exp by farming mobs.
|
||||
# Default: -1
|
||||
RateKarmaLost = -1
|
||||
RateKarmaExpLost = 1
|
||||
RateSiegeGuardsPrice = 1
|
||||
|
||||
# Raidboss points multipler
|
||||
RateRaidbossPointsReward = 1
|
||||
|
||||
# Modify the rate of reward of all extractable items and skills.
|
||||
# Default: 1.
|
||||
RateExtractable = 1.
|
||||
|
||||
# Quest Multipliers
|
||||
# Warning: Many quests need to be rewritten
|
||||
# for this setting to work properly.
|
||||
|
||||
# Quest item drop multiplier
|
||||
RateQuestDrop = 1
|
||||
|
||||
# Exp/SP reward multipliers
|
||||
RateQuestRewardXP = 1
|
||||
RateQuestRewardSP = 1
|
||||
|
||||
# Faction points reward multiplier
|
||||
RateQuestRewardFP = 1
|
||||
|
||||
# Adena reward multiplier
|
||||
RateQuestRewardAdena = 1
|
||||
|
||||
# Use additional item multipliers?
|
||||
# Default: False
|
||||
UseQuestRewardMultipliers = False
|
||||
|
||||
# Default reward multiplier
|
||||
# When UseRewardMultipliers=False - default multiplier is used for any reward
|
||||
# When UseRewardMultipliers=True - default multiplier is used for all items not affected by additional multipliers
|
||||
# Default: 1
|
||||
RateQuestReward = 1
|
||||
|
||||
# Additional quest-reward multipliers based on item type
|
||||
RateQuestRewardPotion = 1
|
||||
RateQuestRewardScroll = 1
|
||||
RateQuestRewardRecipe = 1
|
||||
RateQuestRewardMaterial = 1
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Item Drop Rates
|
||||
# ---------------------------------------------------------------------------
|
||||
# Remember if you increase both chance and amount you will have higher rates than expected.
|
||||
# Example: if amount multiplier is 5 and chance multiplier is 5 you will end up with 5*5 = 25 drop rates so be careful!
|
||||
|
||||
# Multiplies the amount of items rewarded from monsters when they die.
|
||||
DeathDropAmountMultiplier = 1
|
||||
# Multiplies the amount of items rewarded from monsters when a Spoil skill is used.
|
||||
SpoilDropAmountMultiplier = 1
|
||||
# Multiplies the amount of items rewarded from monsters when they die.
|
||||
HerbDropAmountMultiplier = 1
|
||||
RaidDropAmountMultiplier = 1
|
||||
|
||||
# Multiplies the chance of items that can be rewarded from monsters when they die.
|
||||
DeathDropChanceMultiplier = 1
|
||||
# Multiplies the chance of items that can be rewarded from monsters when a Spoil skill is used.
|
||||
SpoilDropChanceMultiplier = 1
|
||||
# Multiplies the chance of items that can be rewarded from monsters when they die.
|
||||
HerbDropChanceMultiplier = 1
|
||||
RaidDropChanceMultiplier = 1
|
||||
|
||||
# List of items affected by custom drop rate by id, used now for Adena rate too.
|
||||
# Usage: itemId1,multiplier1;itemId2,multiplier2;...
|
||||
# Note: Make sure the lists do NOT CONTAIN trailing spaces or spaces between the numbers!
|
||||
# Example for Raid boss 1x jewelry: 6656,1;6657,1;6658,1;6659,1;6660,1;6661,1;6662,1;8191,1;10170,1;10314,1;
|
||||
# Default: 57,1
|
||||
DropAmountMultiplierByItemId = 57,1
|
||||
DropChanceMultiplierByItemId = 57,1
|
||||
|
||||
# Maximum drop occurrences.
|
||||
# Note: Items that have 100% drop chance without server rate multipliers
|
||||
# are not counted by this value. They will drop as extra drops.
|
||||
DropMaxOccurrencesNormal = 2
|
||||
DropMaxOccurrencesRaidboss = 7
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Item Drop Level Difference Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# The min and max level difference used for level gap calculation
|
||||
# this is only for how many levels higher the player is than the monster
|
||||
# Default: 8
|
||||
DropAdenaMinLevelDifference = 8
|
||||
# Default: 15
|
||||
DropAdenaMaxLevelDifference = 15
|
||||
|
||||
# This is the minimum level gap chance meaning for 10 that the monster will have 10% chance
|
||||
# to allow dropping the item if level difference is bigger than DropAdenaMaxLevelDifference
|
||||
# Note: This value is scalling from 100 to the specified value for DropAdenaMinLevelDifference to DropAdenaMaxLevelDifference limits
|
||||
# Default: 10
|
||||
DropAdenaMinLevelGapChance = 10
|
||||
|
||||
# The min and max level difference used for level gap calculation
|
||||
# this is only for how many levels higher the player is than the monster
|
||||
# Default: 5
|
||||
DropItemMinLevelDifference = 5
|
||||
# Default: 10
|
||||
DropItemMaxLevelDifference = 10
|
||||
|
||||
# This is the minimum level gap chance meaning for 10 that the monster will have 10% chance
|
||||
# to allow dropping the item if level difference is bigger than DropAdenaMaxLevelDifference
|
||||
# Note: This value is scalling from 100 to the specified value for DropAdenaMinLevelDifference to DropAdenaMaxLevelDifference limits
|
||||
# Default: 10
|
||||
DropItemMinLevelGapChance = 10
|
||||
|
||||
# Allow event items drop within custom level range between character and monster.
|
||||
# Default: 9
|
||||
EventItemMaxLevelDifference = 9
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Vitality system rates. Works only if EnableVitality = True
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# The following configures the XP multiplier of each vitality level. Basically, you have
|
||||
# Default: 2
|
||||
# Take care setting these values according to your server rates, as the can lead to huge differences!
|
||||
# Example with a server rate 15x and vitality = 2. => final server rate = 30 (15x2)!
|
||||
RateVitalityExpMultiplier = 2.
|
||||
|
||||
# Maximum vitality items allowed to be used for a week by a player.
|
||||
# Default: 999
|
||||
VitalityMaxItemsAllowed = 999
|
||||
|
||||
# These options are to be used if you want to increase the vitality gain/lost for each mob you kills
|
||||
# Default values are 1.
|
||||
RateVitalityGain = 1.
|
||||
RateVitalityLost = 1.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Player Drops (values are set in PERCENTS)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
PlayerDropLimit = 0
|
||||
# in %
|
||||
PlayerRateDrop = 0
|
||||
# in %
|
||||
PlayerRateDropItem = 0
|
||||
# in %
|
||||
PlayerRateDropEquip = 0
|
||||
# in %
|
||||
PlayerRateDropEquipWeapon = 0
|
||||
|
||||
# Default: 10
|
||||
KarmaDropLimit = 0
|
||||
|
||||
# Default: 40
|
||||
KarmaRateDrop = 0
|
||||
|
||||
# Default: 50
|
||||
KarmaRateDropItem = 0
|
||||
|
||||
# Default: 40
|
||||
KarmaRateDropEquip = 0
|
||||
|
||||
# Default: 10
|
||||
KarmaRateDropEquipWeapon = 0
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Pets (Default value = 1)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
PetXpRate = 1
|
||||
PetFoodRate = 1
|
||||
SinEaterXpRate = 1
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Additional drops from raid bosses (except GrandBoss)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
BossDropEnable = False
|
||||
BossDropMinLevel = 85
|
||||
BossDropMaxLevel = 999
|
||||
|
||||
# The following configures the items you want to add to the drop
|
||||
# Usage: itemId1,minAmount1;maxAmount1,chance1;itemId2...
|
||||
# Default: Einhasad's Golden Coin, min: 1x, max: 2x, 100% chance of drop
|
||||
# PLEASE NOTE: Chance of drop also increases from VIP level/runes/etc.
|
||||
BossDropList = 48472,1,2,100;
|
||||
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Lucky Clover
|
||||
# ---------------------------------------------------------------------------
|
||||
# Modifier for Lucky Clover chance.
|
||||
# Note: Affects drops, crafting and enchating chance.
|
||||
LuckyChanceMultiplier = 1.0
|
17
L2J_Mobius_10.3_MasterClass/dist/game/config/ScriptEngine.ini
vendored
Normal file
17
L2J_Mobius_10.3_MasterClass/dist/game/config/ScriptEngine.ini
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Script Engine Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# The parent class loader for isolated script class loaders.
|
||||
# When this property is not specified, has an invalid value or is a class name which could not be found, the System classloader is used.
|
||||
# Values: System, ThreadContext or a fully qualified java class name.
|
||||
classloader=System
|
||||
|
||||
# Source compatibility.
|
||||
source=1.8
|
||||
|
||||
# The java sourcepath, when you have a different datapack root, you must change this too.
|
||||
sourcepath=data/scripts
|
||||
|
||||
# The debug informations to generate for compiled class files.
|
||||
g=source,lines,vars
|
26
L2J_Mobius_10.3_MasterClass/dist/game/config/Scripts.xml
vendored
Normal file
26
L2J_Mobius_10.3_MasterClass/dist/game/config/Scripts.xml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/Scripts.xsd">
|
||||
<!-- Skip these filenames from script loading, because they are already loaded using a different way. -->
|
||||
<exclude file="package-info.java" />
|
||||
<exclude file="handlers" />
|
||||
|
||||
<!--
|
||||
With this file you can exclude/include specific folders/files from within the scripts directory.
|
||||
|
||||
In order to exclude a folder/file simply add the following line:
|
||||
<exclude file="{FOLDER/FILE NAME HERE}" />
|
||||
For example to exclude the quests directory, use:
|
||||
<exclude file="quests" />
|
||||
|
||||
If you want to exclude all files within a directory except certain file(s), you can do it like so:
|
||||
<exclude file="{FOLDER NAME HERE}">
|
||||
<include file="{FOLDER/FILE NAME HERE}" />
|
||||
<include file="{FOLDER/FILE NAME HERE}" />
|
||||
...
|
||||
</exclude>
|
||||
For example to exclude ForgeOfTheGods folder except Valakas script, use:
|
||||
<exclude file="ForgeOfTheGods">
|
||||
<include file="Valakas.java" />
|
||||
</exclude>
|
||||
-->
|
||||
</list>
|
338
L2J_Mobius_10.3_MasterClass/dist/game/config/SecondaryAuth.xml
vendored
Normal file
338
L2J_Mobius_10.3_MasterClass/dist/game/config/SecondaryAuth.xml
vendored
Normal file
@@ -0,0 +1,338 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/SecondaryAuth.xsd">
|
||||
<enabled>false</enabled> <!-- Enable Secondary Authentication on Character Select -->
|
||||
<maxAttempts>5</maxAttempts> <!-- Max Attempts for Second Auth Password (0 to disable) -->
|
||||
<banTime>480</banTime> <!-- Ban time if user reach maxAttempts (in minutes) -->
|
||||
<recoveryLink>http://www.google.com</recoveryLink> <!-- Password Recovery Link -->
|
||||
<forbiddenPasswords> <!-- List of forbidden passwords -->
|
||||
<!-- Client checks for the entries below so you should not remove or edit any of these just add more -->
|
||||
<password>000000</password>
|
||||
<password>111111</password>
|
||||
<password>222222</password>
|
||||
<password>333333</password>
|
||||
<password>444444</password>
|
||||
<password>555555</password>
|
||||
<password>666666</password>
|
||||
<password>777777</password>
|
||||
<password>888888</password>
|
||||
<password>999999</password>
|
||||
<password>123456</password>
|
||||
<password>234567</password>
|
||||
<password>345678</password>
|
||||
<password>456789</password>
|
||||
<password>567890</password>
|
||||
<password>012345</password>
|
||||
<password>098765</password>
|
||||
<password>987654</password>
|
||||
<password>876543</password>
|
||||
<password>765432</password>
|
||||
<password>543210</password>
|
||||
<password>010101</password>
|
||||
<password>020202</password>
|
||||
<password>030303</password>
|
||||
<password>040404</password>
|
||||
<password>050505</password>
|
||||
<password>060606</password>
|
||||
<password>070707</password>
|
||||
<password>080808</password>
|
||||
<password>090909</password>
|
||||
<password>121212</password>
|
||||
<password>131313</password>
|
||||
<password>141414</password>
|
||||
<password>151515</password>
|
||||
<password>161616</password>
|
||||
<password>171717</password>
|
||||
<password>181818</password>
|
||||
<password>191919</password>
|
||||
<password>101010</password>
|
||||
<password>212121</password>
|
||||
<password>232323</password>
|
||||
<password>242424</password>
|
||||
<password>252525</password>
|
||||
<password>262626</password>
|
||||
<password>272727</password>
|
||||
<password>282828</password>
|
||||
<password>292929</password>
|
||||
<password>202020</password>
|
||||
<password>313131</password>
|
||||
<password>323232</password>
|
||||
<password>343434</password>
|
||||
<password>353535</password>
|
||||
<password>363636</password>
|
||||
<password>373737</password>
|
||||
<password>383838</password>
|
||||
<password>393939</password>
|
||||
<password>303030</password>
|
||||
<password>404040</password>
|
||||
<password>414141</password>
|
||||
<password>424242</password>
|
||||
<password>434343</password>
|
||||
<password>454545</password>
|
||||
<password>464646</password>
|
||||
<password>474747</password>
|
||||
<password>484848</password>
|
||||
<password>494949</password>
|
||||
<password>505050</password>
|
||||
<password>515151</password>
|
||||
<password>525252</password>
|
||||
<password>535353</password>
|
||||
<password>545454</password>
|
||||
<password>565656</password>
|
||||
<password>575757</password>
|
||||
<password>585858</password>
|
||||
<password>595959</password>
|
||||
<password>606060</password>
|
||||
<password>616161</password>
|
||||
<password>626262</password>
|
||||
<password>636363</password>
|
||||
<password>646464</password>
|
||||
<password>656565</password>
|
||||
<password>676767</password>
|
||||
<password>686868</password>
|
||||
<password>696969</password>
|
||||
<password>707070</password>
|
||||
<password>717171</password>
|
||||
<password>727272</password>
|
||||
<password>737373</password>
|
||||
<password>747474</password>
|
||||
<password>757575</password>
|
||||
<password>767676</password>
|
||||
<password>787878</password>
|
||||
<password>797979</password>
|
||||
<password>808080</password>
|
||||
<password>818181</password>
|
||||
<password>828282</password>
|
||||
<password>838383</password>
|
||||
<password>848484</password>
|
||||
<password>858585</password>
|
||||
<password>868686</password>
|
||||
<password>878787</password>
|
||||
<password>898989</password>
|
||||
<password>909090</password>
|
||||
<password>919191</password>
|
||||
<password>929292</password>
|
||||
<password>939393</password>
|
||||
<password>949494</password>
|
||||
<password>959595</password>
|
||||
<password>969696</password>
|
||||
<password>979797</password>
|
||||
<password>989898</password>
|
||||
<password>0000000</password>
|
||||
<password>1111111</password>
|
||||
<password>2222222</password>
|
||||
<password>3333333</password>
|
||||
<password>4444444</password>
|
||||
<password>5555555</password>
|
||||
<password>6666666</password>
|
||||
<password>7777777</password>
|
||||
<password>8888888</password>
|
||||
<password>9999999</password>
|
||||
<password>0123456</password>
|
||||
<password>1234567</password>
|
||||
<password>2345678</password>
|
||||
<password>3456789</password>
|
||||
<password>4567890</password>
|
||||
<password>0987654</password>
|
||||
<password>9876543</password>
|
||||
<password>8765432</password>
|
||||
<password>7654321</password>
|
||||
<password>6543210</password>
|
||||
<password>0101010</password>
|
||||
<password>0202020</password>
|
||||
<password>0303030</password>
|
||||
<password>0404040</password>
|
||||
<password>0505050</password>
|
||||
<password>0606060</password>
|
||||
<password>0707070</password>
|
||||
<password>0808080</password>
|
||||
<password>0909090</password>
|
||||
<password>1212121</password>
|
||||
<password>1313131</password>
|
||||
<password>1414141</password>
|
||||
<password>1515151</password>
|
||||
<password>1616161</password>
|
||||
<password>1717171</password>
|
||||
<password>1818181</password>
|
||||
<password>1919191</password>
|
||||
<password>1010101</password>
|
||||
<password>2020202</password>
|
||||
<password>2121212</password>
|
||||
<password>2323232</password>
|
||||
<password>2424242</password>
|
||||
<password>2525252</password>
|
||||
<password>2626262</password>
|
||||
<password>2727272</password>
|
||||
<password>2828282</password>
|
||||
<password>2929292</password>
|
||||
<password>3030303</password>
|
||||
<password>3131313</password>
|
||||
<password>3232323</password>
|
||||
<password>3434343</password>
|
||||
<password>3535353</password>
|
||||
<password>3636363</password>
|
||||
<password>3737373</password>
|
||||
<password>3838383</password>
|
||||
<password>3939393</password>
|
||||
<password>4040404</password>
|
||||
<password>4141414</password>
|
||||
<password>4242424</password>
|
||||
<password>4343434</password>
|
||||
<password>4545454</password>
|
||||
<password>4646464</password>
|
||||
<password>4747474</password>
|
||||
<password>4848484</password>
|
||||
<password>4949494</password>
|
||||
<password>5050505</password>
|
||||
<password>5151515</password>
|
||||
<password>5252525</password>
|
||||
<password>5353535</password>
|
||||
<password>5454545</password>
|
||||
<password>5656565</password>
|
||||
<password>5757575</password>
|
||||
<password>5858585</password>
|
||||
<password>5959595</password>
|
||||
<password>6060606</password>
|
||||
<password>6161616</password>
|
||||
<password>6262626</password>
|
||||
<password>6363636</password>
|
||||
<password>6464646</password>
|
||||
<password>6565656</password>
|
||||
<password>6767676</password>
|
||||
<password>6868686</password>
|
||||
<password>6969696</password>
|
||||
<password>7070707</password>
|
||||
<password>7171717</password>
|
||||
<password>7272727</password>
|
||||
<password>7373737</password>
|
||||
<password>7474747</password>
|
||||
<password>7575757</password>
|
||||
<password>7676767</password>
|
||||
<password>7878787</password>
|
||||
<password>7979797</password>
|
||||
<password>8080808</password>
|
||||
<password>8181818</password>
|
||||
<password>8282828</password>
|
||||
<password>8383838</password>
|
||||
<password>8484848</password>
|
||||
<password>8585858</password>
|
||||
<password>8686868</password>
|
||||
<password>8787878</password>
|
||||
<password>8989898</password>
|
||||
<password>9090909</password>
|
||||
<password>9191919</password>
|
||||
<password>9292929</password>
|
||||
<password>9393939</password>
|
||||
<password>9494949</password>
|
||||
<password>9595959</password>
|
||||
<password>9696969</password>
|
||||
<password>9797979</password>
|
||||
<password>9898989</password>
|
||||
<password>00000000</password>
|
||||
<password>11111111</password>
|
||||
<password>22222222</password>
|
||||
<password>33333333</password>
|
||||
<password>44444444</password>
|
||||
<password>55555555</password>
|
||||
<password>66666666</password>
|
||||
<password>77777777</password>
|
||||
<password>88888888</password>
|
||||
<password>99999999</password>
|
||||
<password>12345678</password>
|
||||
<password>23456789</password>
|
||||
<password>34567890</password>
|
||||
<password>01234567</password>
|
||||
<password>98765432</password>
|
||||
<password>87654321</password>
|
||||
<password>76543210</password>
|
||||
<password>01010101</password>
|
||||
<password>02020202</password>
|
||||
<password>03030303</password>
|
||||
<password>04040404</password>
|
||||
<password>05050505</password>
|
||||
<password>06060606</password>
|
||||
<password>07070707</password>
|
||||
<password>08080808</password>
|
||||
<password>09090909</password>
|
||||
<password>10101010</password>
|
||||
<password>12121212</password>
|
||||
<password>13131313</password>
|
||||
<password>14141414</password>
|
||||
<password>15151515</password>
|
||||
<password>16161616</password>
|
||||
<password>17171717</password>
|
||||
<password>18181818</password>
|
||||
<password>19191919</password>
|
||||
<password>20202020</password>
|
||||
<password>21212121</password>
|
||||
<password>23232323</password>
|
||||
<password>24242424</password>
|
||||
<password>25252525</password>
|
||||
<password>26262626</password>
|
||||
<password>27272727</password>
|
||||
<password>28282828</password>
|
||||
<password>29292929</password>
|
||||
<password>30303030</password>
|
||||
<password>31313131</password>
|
||||
<password>32323232</password>
|
||||
<password>34343434</password>
|
||||
<password>35353535</password>
|
||||
<password>36363636</password>
|
||||
<password>37373737</password>
|
||||
<password>38383838</password>
|
||||
<password>39393939</password>
|
||||
<password>40404040</password>
|
||||
<password>41414141</password>
|
||||
<password>42424242</password>
|
||||
<password>43434343</password>
|
||||
<password>45454545</password>
|
||||
<password>46464646</password>
|
||||
<password>47474747</password>
|
||||
<password>48484848</password>
|
||||
<password>49494949</password>
|
||||
<password>50505050</password>
|
||||
<password>51515151</password>
|
||||
<password>52525252</password>
|
||||
<password>53535353</password>
|
||||
<password>54545454</password>
|
||||
<password>56565656</password>
|
||||
<password>57575757</password>
|
||||
<password>58585858</password>
|
||||
<password>59595959</password>
|
||||
<password>60606060</password>
|
||||
<password>61616161</password>
|
||||
<password>62626262</password>
|
||||
<password>63636363</password>
|
||||
<password>64646464</password>
|
||||
<password>65656565</password>
|
||||
<password>67676767</password>
|
||||
<password>68686868</password>
|
||||
<password>69696969</password>
|
||||
<password>70707070</password>
|
||||
<password>71717171</password>
|
||||
<password>72727272</password>
|
||||
<password>73737373</password>
|
||||
<password>74747474</password>
|
||||
<password>75757575</password>
|
||||
<password>76767676</password>
|
||||
<password>78787878</password>
|
||||
<password>79797979</password>
|
||||
<password>80808080</password>
|
||||
<password>81818181</password>
|
||||
<password>82828282</password>
|
||||
<password>83838383</password>
|
||||
<password>84848484</password>
|
||||
<password>85858585</password>
|
||||
<password>86868686</password>
|
||||
<password>87878787</password>
|
||||
<password>89898989</password>
|
||||
<password>90909090</password>
|
||||
<password>91919191</password>
|
||||
<password>92929292</password>
|
||||
<password>93939393</password>
|
||||
<password>94949494</password>
|
||||
<password>95959595</password>
|
||||
<password>96969696</password>
|
||||
<password>97979797</password>
|
||||
<password>98989898</password>
|
||||
</forbiddenPasswords>
|
||||
</list>
|
265
L2J_Mobius_10.3_MasterClass/dist/game/config/Server.ini
vendored
Normal file
265
L2J_Mobius_10.3_MasterClass/dist/game/config/Server.ini
vendored
Normal file
@@ -0,0 +1,265 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Game Server Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# This is the server configuration file. Here you can set up the connection information for your server.
|
||||
# This was written with the assumption that you are behind a router.
|
||||
# Dumbed Down Definitions...
|
||||
# LAN (LOCAL area network) - typically consists of computers connected to the same router as you.
|
||||
# WAN (WIDE area network) - typically consists of computers OUTSIDE of your router (ie. the internet).
|
||||
# x.x.x.x - Format of an IP address. Do not include the x'es into settings. Must be real numbers.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Networking
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Where's the Login server this gameserver should connect to
|
||||
# WARNING: <u><b><font color="red">Please don't change default IPs here if you don't know what are you doing!</font></b></u>
|
||||
# WARNING: <u><b><font color="red">External/Internal IPs are now inside "ipconfig.xml" file.</font></b></u>
|
||||
# Default: 127.0.0.1
|
||||
LoginHost = 127.0.0.1
|
||||
|
||||
# TCP port the login server listen to for gameserver connection requests
|
||||
# Default: 9014
|
||||
LoginPort = 9014
|
||||
|
||||
# Bind address for gameserver. You should not need to change it in most cases.
|
||||
# WARNING: <u><b><font color="red">Please don't change default IPs here if you don't know what are you doing!</font></b></u>
|
||||
# WARNING: <u><b><font color="red">External/Internal IPs are now inside "ipconfig.xml" file.</font></b></u>
|
||||
# Default: * (0.0.0.0)
|
||||
GameserverHostname = 0.0.0.0
|
||||
|
||||
# Default: 7777
|
||||
GameserverPort = 7777
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Database
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Specify the appropriate driver and url for the database you're using.
|
||||
# Default: org.mariadb.jdbc.Driver
|
||||
Driver = org.mariadb.jdbc.Driver
|
||||
|
||||
# Database URL
|
||||
# Default: jdbc:mariadb://localhost/l2jmobius?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
||||
URL = jdbc:mariadb://localhost/l2jmobius?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
||||
|
||||
# Database user info (default is "root" but it's not recommended)
|
||||
Login = root
|
||||
|
||||
# Database connection password
|
||||
Password =
|
||||
|
||||
# Default: 100
|
||||
MaximumDbConnections = 100
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Automatic Database Backup Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Generate database backups when server restarts or shuts down.
|
||||
BackupDatabase = False
|
||||
|
||||
# Path to MySQL bin folder. Only necessary on Windows.
|
||||
MySqlBinLocation = C:/xampp/mysql/bin/
|
||||
|
||||
# Path where MySQL backups are stored.
|
||||
BackupPath = ../backup/
|
||||
|
||||
# Maximum number of days that backups will be kept.
|
||||
# Old files in backup folder will be deleted.
|
||||
# Set to 0 to disable.
|
||||
BackupDays = 30
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Misc Server Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This is the server ID that the Game Server will request.
|
||||
# Example: 1 = Bartz
|
||||
# Default: 1
|
||||
RequestServerID = 1
|
||||
|
||||
# True = The Login Server will give an other ID to the server if the requested ID is already reserved.
|
||||
# Default: True
|
||||
AcceptAlternateID = True
|
||||
|
||||
# Datapack root directory.
|
||||
# Defaults to current directory from which the server is started unless the below line is uncommented.
|
||||
# WARNING: <u><b><font color="red">If the specified path is invalid, it will lead to multiple errors!</font></b></u>
|
||||
# Default: .
|
||||
DatapackRoot = .
|
||||
|
||||
# Scripts root directory.
|
||||
ScriptRoot = ./data/scripts
|
||||
|
||||
# Define how many players are allowed to play simultaneously on your server.
|
||||
# Default: 2000
|
||||
MaximumOnlineUsers = 2000
|
||||
|
||||
# Numbers of protocol revisions that server allows to connect.
|
||||
# Delimiter is ;
|
||||
# WARNING: <u><b><font color="red">Changing the protocol revision may result in incompatible communication and many errors in game!</font></b></u>
|
||||
# Master Class Chapter 2: 362
|
||||
AllowedProtocolRevisions = 362
|
||||
|
||||
# Displays server type next to the server name on character selection.
|
||||
# Notes:
|
||||
# Accepted Values: Normal, Relax, Test, Broad, Restricted, Event, Free, World, New, Classic
|
||||
# Default: Free
|
||||
ServerListType = Free
|
||||
|
||||
# Displays server minimum age to the server name on character selection.
|
||||
# Notes:
|
||||
# Accepted values: 0, 15, 18
|
||||
# Default: 0
|
||||
ServerListAge = 0
|
||||
|
||||
# Setting for serverList
|
||||
# Displays [] in front of server name on character selection
|
||||
# Default: False
|
||||
ServerListBrackets = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Thread Configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Determines the amount of scheduled thread pools. If set to -1, the server will decide the amount depending on the available processors.
|
||||
ScheduledThreadPoolCount = -1
|
||||
|
||||
# Specifies how many threads will be in a single scheduled pool.
|
||||
ThreadsPerScheduledThreadPool = 4
|
||||
|
||||
# Determines the amount of instant thread pools. If set to -1, the server will decide the amount depending on the available processors.
|
||||
InstantThreadPoolCount = -1
|
||||
|
||||
# Specifies how many threads will be in a single instant pool.
|
||||
ThreadsPerInstantThreadPool = 2
|
||||
|
||||
# Urgent packet thread core size.
|
||||
UrgentPacketThreadCoreSize = -1
|
||||
|
||||
# Use threads to decrease startup time.
|
||||
# Default: False
|
||||
ThreadsForLoading = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Dead Lock Detector (separate thread for detecting deadlocks)
|
||||
# ---------------------------------------------------------------------------
|
||||
# For improved crash logs and automatic restart in deadlock case if enabled.
|
||||
# Check interval is in seconds.
|
||||
# Default: True
|
||||
DeadLockDetector = True
|
||||
|
||||
# Default: 20
|
||||
DeadLockCheckInterval = 20
|
||||
|
||||
# Default: False
|
||||
RestartOnDeadlock = False
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Player HWID settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Check if hardware information is sent upon login.
|
||||
# WARNING: To receive hardware information from client, l2.ini NetSendHardWare must be set to true.
|
||||
# Default: False
|
||||
EnableHardwareInfo = False
|
||||
|
||||
# Players without hardware information are kicked from the game.
|
||||
# Automatically set to True when MaxPlayersPerHWID > 0.
|
||||
# Default: False
|
||||
KickMissingHWID = False
|
||||
|
||||
# Maximum number of players per HWID allowed to enter game.
|
||||
# Default: 0 (unlimited)
|
||||
MaxPlayersPerHWID = 0
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Misc Player Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Character name template.
|
||||
# Examples:
|
||||
# CnameTemplate = [A-Z][a-z]{3,3}[A-Za-z0-9]*
|
||||
# The above setting will allow names with first capital letter, next three small letters,
|
||||
# and any letter (case insensitive) or number, like OmfgWTF1
|
||||
# CnameTemplate = [A-Z][a-z]*
|
||||
# The above setting will allow names only of letters with first one capital, like Omfgwtf
|
||||
# Default .* (allows any symbol)
|
||||
CnameTemplate = .*
|
||||
|
||||
# This setting restricts names players can give to their pets.
|
||||
# See CnameTemplate for details
|
||||
PetNameTemplate = .*
|
||||
|
||||
# This setting restricts clan/subpledge names players can set.
|
||||
# See CnameTemplate for details
|
||||
ClanNameTemplate = .*
|
||||
|
||||
# Maximum number of characters per account.
|
||||
# Default: 7 (client limit)
|
||||
CharMaxNumber = 7
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Precautionary Server Restart
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable server restart when CPU or memory usage is too high.
|
||||
# Default: False
|
||||
PrecautionaryRestartEnabled = False
|
||||
|
||||
# Enable monitoring system CPU usage.
|
||||
# Default: True
|
||||
PrecautionaryRestartCpu = True
|
||||
|
||||
# Enable monitoring process memory usage.
|
||||
# Default: False
|
||||
PrecautionaryRestartMemory = False
|
||||
|
||||
# Check if sieges are in progress
|
||||
# or players are in olympiad, events, instances
|
||||
# or have targeted raidbosses.
|
||||
# Default: True
|
||||
PrecautionaryRestartChecks = True
|
||||
|
||||
# Percentage of used resources.
|
||||
# Default: 95
|
||||
PrecautionaryRestartPercentage = 95
|
||||
|
||||
# Delay in seconds between each check.
|
||||
# Default: 60
|
||||
PrecautionaryRestartDelay = 60
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Scheduled Server Restart
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable scheduled server restart.
|
||||
# Default: False
|
||||
ServerRestartScheduleEnabled = False
|
||||
|
||||
# Send a message when player enters the game.
|
||||
# Default: False
|
||||
ServerRestartScheduleMessage = False
|
||||
|
||||
# Restart time countdown (in seconds).
|
||||
# Default: 600 (10 minutes)
|
||||
ServerRestartScheduleCountdown = 600
|
||||
|
||||
# Scheduled restart schedule.
|
||||
# You can put more than one value separated by commas (,).
|
||||
# Example: 12:00, 00:00
|
||||
ServerRestartSchedule = 08:00
|
||||
|
||||
# Specify days that the restart will occur. Values separated by commas (,).
|
||||
# Example: 1,2,3,4,5,6,7 (SUNDAY,MONDAY,TUESDAY,WEDNESDAY,THURSDAY,FRIDAY,SATURDAY)
|
||||
# Default: 4 (WEDNESDAY)
|
||||
ServerRestartDays = 4
|
121
L2J_Mobius_10.3_MasterClass/dist/game/config/Siege.ini
vendored
Normal file
121
L2J_Mobius_10.3_MasterClass/dist/game/config/Siege.ini
vendored
Normal file
@@ -0,0 +1,121 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Siege Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Standard Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Length of siege before the count down (in minutes).
|
||||
# Default: 120
|
||||
SiegeLength = 120
|
||||
|
||||
# Maximum number of flags per clan.
|
||||
# Default: 1
|
||||
MaxFlags = 1
|
||||
|
||||
# Minimum level to register.
|
||||
# Default: 5
|
||||
SiegeClanMinLevel = 5
|
||||
|
||||
# Max number of clans that can register on each side.
|
||||
# Default: 500
|
||||
AttackerMaxClans = 500
|
||||
|
||||
# Default: 500
|
||||
DefenderMaxClans = 500
|
||||
|
||||
# Respawn times (in milliseconds).
|
||||
# Default: 0
|
||||
AttackerRespawn = 0
|
||||
|
||||
# Reward successful siege defense with blood alliance in clan warehouse
|
||||
# Default: 1
|
||||
BloodAllianceReward = 1
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Castle Control Tower Spawns
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Caste Artifacts and Control Towers spawns
|
||||
#
|
||||
# Control Towers syntax: NameControlTowerN=x,y,z,npc_id,hp
|
||||
# Name - castle name
|
||||
# N - number
|
||||
# x,y,z - coords
|
||||
# npc_id - id of template
|
||||
#
|
||||
# Flame Towers syntax: NameFlameTowerN=x,y,z,npc_id,hp,zoneIds
|
||||
# Name - castle name
|
||||
# N - number
|
||||
# x,y,z - coords
|
||||
# npc_id - id of template
|
||||
# zoneIds - ids of zones related with tower
|
||||
#
|
||||
|
||||
# Gludio
|
||||
GludioFlameTower1=-18154,107591,-2560,13004,70017,70019
|
||||
GludioFlameTower2=-19329,108154,-2384,13004,70018,70020
|
||||
GludioControlTower1=-18325,112811,-2377,13002
|
||||
GludioControlTower2=-18048,107098,-2378,13002
|
||||
GludioControlTower3=-18113,108597,-2343,13002
|
||||
|
||||
# Giran
|
||||
GiranFlameTower1=118331,145055,-2627,13004,70025,70027
|
||||
GiranFlameTower2=117768,143880,-2451,13004,70026,70028
|
||||
GiranControlTower1=113115,144829,-2446,13002
|
||||
GiranControlTower2=118828,145106,-2447,13002
|
||||
GiranControlTower3=117329,145041,-2412,13002
|
||||
|
||||
# Dion
|
||||
DionFlameTower1=22114,162159,-2754,13004,70021,70023
|
||||
DionFlameTower2=23289,161596,-2578,13004,70022,70024
|
||||
DionControlTower1=22285,156939,-2571,13002
|
||||
DionControlTower2=22008,162652,-2572,13002
|
||||
DionControlTower3=22073,161153,-2537,13002
|
||||
|
||||
# Oren
|
||||
OrenFlameTower1=84407,37150,-2354,13004,70029,70031
|
||||
OrenFlameTower2=83844,35975,-2178,13004,70030,70032
|
||||
OrenControlTower1=79193,36977,-2167,13002
|
||||
OrenControlTower2=84906,37254,-2168,13002
|
||||
OrenControlTower3=83407,37189,-2133,13002
|
||||
|
||||
# Aden
|
||||
AdenFlameTower1=149976,1583,-450,13004,70008,70016,70007,70015,70006,70014,70005,70013
|
||||
AdenFlameTower2=144955,1603,-450,13004,70004,70012,70003,70011,70002,70010,70001,70009
|
||||
AdenControlTower1=148774,2351,-389,13002
|
||||
AdenControlTower2=147456,5724,158,13002
|
||||
AdenControlTower3=146137,2352,-389,13002
|
||||
|
||||
# Innadril
|
||||
InnadrilFlameTower1=116065,250938,-850,13004,70033,70035
|
||||
InnadrilFlameTower2=117240,250375,-674,13004,70034,70036
|
||||
InnadrilControlTower1=116236,245718,-667,13002
|
||||
InnadrilControlTower2=115959,251431,-667,13002
|
||||
InnadrilControlTower3=116024,249932,-633,13002
|
||||
|
||||
# Goddard
|
||||
GoddardFlameTower1=148144,-46992,-1609,13004,70037,70039
|
||||
GoddardFlameTower2=146784,-46992,-1609,13004,70038,70040
|
||||
GoddardControlTower1=144672,-48832,-1742,13002
|
||||
GoddardControlTower2=150240,-48832,-1742,13002
|
||||
GoddardControlTower3=147456,-49200,-1619,13002
|
||||
|
||||
# Rune
|
||||
RuneFlameTower1=12864,-47440,-1087,13004,70041,70043
|
||||
RuneFlameTower2=12225,-50767,1248,13004,70042,70044
|
||||
RuneControlTower1=16565,-50318,-641,13002
|
||||
RuneControlTower2=16559,-48000,-641,13002
|
||||
RuneControlTower3=10775,-48481,83,13002
|
||||
|
||||
# Schuttgart
|
||||
SchuttgartFlameTower1=76872,-151043,120,13004,70045,70047
|
||||
SchuttgartFlameTower2=78233,-151037,120,13004,70046,70048
|
||||
SchuttgartControlTower1=80334,-152898,-8,13002
|
||||
SchuttgartControlTower2=74775,-152928,-8,13002
|
||||
SchuttgartControlTower3=77547,-153246,112,13002
|
12
L2J_Mobius_10.3_MasterClass/dist/game/config/SiegeSchedule.xml
vendored
Normal file
12
L2J_Mobius_10.3_MasterClass/dist/game/config/SiegeSchedule.xml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/SiegeSchedule.xsd">
|
||||
<schedule castleId="1" castleName="Gludio" siegeEnabled="true" day="SUNDAY" hour="16" maxConcurrent="5" />
|
||||
<schedule castleId="2" castleName="Dion" siegeEnabled="true" day="SUNDAY" hour="20" maxConcurrent="5" />
|
||||
<schedule castleId="3" castleName="Giran" siegeEnabled="true" day="SUNDAY" hour="16" maxConcurrent="5" />
|
||||
<schedule castleId="4" castleName="Oren" siegeEnabled="true" day="SUNDAY" hour="20" maxConcurrent="5" />
|
||||
<schedule castleId="5" castleName="Aden" siegeEnabled="true" day="SUNDAY" hour="16" maxConcurrent="5" />
|
||||
<schedule castleId="6" castleName="Innadril" siegeEnabled="true" day="SUNDAY" hour="20" maxConcurrent="5" />
|
||||
<schedule castleId="7" castleName="Goddard" siegeEnabled="true" day="SUNDAY" hour="16" maxConcurrent="5" />
|
||||
<schedule castleId="8" castleName="Rune" siegeEnabled="true" day="SUNDAY" hour="20" maxConcurrent="5" />
|
||||
<schedule castleId="9" castleName="Schuttgart" siegeEnabled="true" day="SUNDAY" hour="16" maxConcurrent="5" />
|
||||
</list>
|
31
L2J_Mobius_10.3_MasterClass/dist/game/config/Telnet.ini
vendored
Normal file
31
L2J_Mobius_10.3_MasterClass/dist/game/config/Telnet.ini
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Telnet Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
# ---------------------------------------------------------------------------
|
||||
# Allows text based monitoring and administration of L2J GS
|
||||
# by using a telnet client. Communication protocol is insecure
|
||||
# and you should use SSL tunnels, VPN, etc. if you plan to connect
|
||||
# over non-trusted channels.
|
||||
# Default: False
|
||||
EnableTelnet = False
|
||||
|
||||
# This is the hostname address on which telnet server will be listening.
|
||||
# Note for all adapters use: *
|
||||
# Default: 127.0.0.1
|
||||
BindAddress = 127.0.0.1
|
||||
|
||||
# This is the port L2J should listen to for incoming telnet
|
||||
# requests.
|
||||
# Default: 54321
|
||||
Port = 54321
|
||||
|
||||
# If the following is not set, a random password is generated on server startup.
|
||||
Password = somepassword
|
||||
|
||||
# This list can contain IPs or Hosts of clients you wish to allow. Hostnames must be resolvable to an IP.
|
||||
# Example: 0.0.0.0,host,0.0.0.1,host2,host3,host4,0.0.0.3
|
||||
# Default: 127.0.0.1,localhost,::1
|
||||
ListOfHosts = 127.0.0.1,localhost,::1
|
31
L2J_Mobius_10.3_MasterClass/dist/game/config/TrainingCamp.ini
vendored
Normal file
31
L2J_Mobius_10.3_MasterClass/dist/game/config/TrainingCamp.ini
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Training Camp
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable or disable Training Camp
|
||||
# Default: False
|
||||
TrainingCampEnable = False
|
||||
|
||||
# Only Premium account can access training camp
|
||||
# Default: True
|
||||
TrainingCampPremiumOnly = True
|
||||
|
||||
# Max duration for Training Camp in seconds. NA : 18000, RU : 36000
|
||||
# Default: 18000
|
||||
TrainingCampDuration = 18000
|
||||
|
||||
# Min level to enter Training Camp
|
||||
# Default: 18
|
||||
TrainingCampMinLevel = 18
|
||||
|
||||
# Max level to enter Training Camp
|
||||
# Default: 127
|
||||
TrainingCampMaxLevel = 127
|
||||
|
||||
# Multiplier for rewarded EXP
|
||||
# Default: 1.0
|
||||
TrainingCampExpMultiplier = 1.0
|
||||
|
||||
# Multiplier for rewarded SP
|
||||
# Default: 1.0
|
||||
TrainingCampSpMultiplier = 1.0
|
11
L2J_Mobius_10.3_MasterClass/dist/game/config/chatfilter.txt
vendored
Normal file
11
L2J_Mobius_10.3_MasterClass/dist/game/config/chatfilter.txt
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
# Example for <cr> and <lf>
|
||||
# (not allow players to confuse others by writing from beginning of the line)
|
||||
# \\r
|
||||
# \\n
|
||||
#
|
||||
# These words will be replaced:
|
||||
suck
|
||||
gay
|
||||
rape
|
||||
fuck
|
||||
dick
|
13
L2J_Mobius_10.3_MasterClass/dist/game/config/default-ipconfig.xml
vendored
Normal file
13
L2J_Mobius_10.3_MasterClass/dist/game/config/default-ipconfig.xml
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Note: If file is named "ipconfig.xml" this data will be used as network configuration, otherwise server will configure it automatically! -->
|
||||
<!-- Externalhost here (Internet IP) or Localhost IP for local test -->
|
||||
<gameserver address="127.0.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/ipconfig.xsd">
|
||||
<!-- Localhost here -->
|
||||
<define subnet="127.0.0.0/8" address="127.0.0.1" />
|
||||
<!-- Internalhosts here (LANs IPs) -->
|
||||
<define subnet="10.0.0.0/8" address="10.0.0.0" />
|
||||
<define subnet="172.16.0.0/19" address="172.16.0.0" />
|
||||
<define subnet="192.168.0.0/16" address="192.168.0.0" />
|
||||
<define subnet="192.168.0.0/24" address="192.168.0.0" />
|
||||
<define subnet="192.168.1.0/24" address="192.168.1.0" />
|
||||
</gameserver>
|
4
L2J_Mobius_10.3_MasterClass/dist/game/config/hexid.txt
vendored
Normal file
4
L2J_Mobius_10.3_MasterClass/dist/game/config/hexid.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
#The HexId to Auth into LoginServer
|
||||
#Fri Jan 02 01:25:33 EET 2015
|
||||
HexID=-2ad66b3f483c22be097019f55c8abdf0
|
||||
ServerID=2
|
7
L2J_Mobius_10.3_MasterClass/dist/game/console.cfg
vendored
Normal file
7
L2J_Mobius_10.3_MasterClass/dist/game/console.cfg
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# Default global logging level.
|
||||
# This specifies which kinds of events are logged across
|
||||
# all loggers. For any given facility this global level
|
||||
# can be overriden by a facility specific level
|
||||
# Note that the ConsoleHandler also has a separate level
|
||||
# setting to limit messages printed to the console.
|
||||
.level=OFF
|
220
L2J_Mobius_10.3_MasterClass/dist/game/data/ActionData.xml
vendored
Normal file
220
L2J_Mobius_10.3_MasterClass/dist/game/data/ActionData.xml
vendored
Normal file
@@ -0,0 +1,220 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ActionData.xsd">
|
||||
<action id="0" handler="SitStand" />
|
||||
<action id="1" handler="RunWalk" />
|
||||
<action id="10" handler="PrivateStore" option="1" /> <!-- Private Store Sell -->
|
||||
<action id="12" handler="SocialAction" option="2" /> <!-- Greeting -->
|
||||
<action id="13" handler="SocialAction" option="3" /> <!-- Victory -->
|
||||
<action id="14" handler="SocialAction" option="4" /> <!-- Advance -->
|
||||
<action id="15" handler="PetHold" /> <!-- Change Movement Mode -->
|
||||
<action id="16" handler="PetAttack" /> <!-- Attack -->
|
||||
<action id="17" handler="PetStop" /> <!-- Stop -->
|
||||
<action id="19" handler="UnsummonPet" />
|
||||
<action id="21" handler="ServitorHold" /> <!-- Change Movement Mode -->
|
||||
<action id="22" handler="ServitorAttack" /> <!-- Attack -->
|
||||
<action id="23" handler="ServitorStop" /> <!-- Stop -->
|
||||
<action id="24" handler="SocialAction" option="6" /> <!-- Yes -->
|
||||
<action id="25" handler="SocialAction" option="5" /> <!-- No -->
|
||||
<action id="26" handler="SocialAction" option="7" /> <!-- Bow -->
|
||||
<action id="28" handler="PrivateStore" option="3" /> <!-- Private Store Buy -->
|
||||
<action id="29" handler="SocialAction" option="8" /> <!-- Unaware -->
|
||||
<action id="30" handler="SocialAction" option="9" /> <!-- Social Waiting -->
|
||||
<action id="31" handler="SocialAction" option="10" /> <!-- Laugh -->
|
||||
<action id="32" handler="ServitorSkillUse" option="4230" /> <!-- Wild Hog Cannon - Wild Cannon -->
|
||||
<action id="33" handler="SocialAction" option="11" /> <!-- Applaud -->
|
||||
<action id="34" handler="SocialAction" option="12" /> <!-- Dance -->
|
||||
<action id="35" handler="SocialAction" option="13" /> <!-- Sorrow -->
|
||||
<action id="36" handler="ServitorSkillUse" option="4259" /> <!-- Soulless - Toxic Smoke -->
|
||||
<action id="37" handler="PrivateStore" option="5" /> <!-- Dwarven Manufacture -->
|
||||
<action id="38" handler="Ride" /> <!-- Mount/Dismount -->
|
||||
<action id="39" handler="ServitorSkillUse" option="4138" /> <!-- Soulless - Parasite Burst -->
|
||||
<action id="41" handler="ServitorSkillUse" option="4230" /> <!-- Wild Hog Cannon - Attack -->
|
||||
<action id="42" handler="ServitorSkillUse" option="4378" /> <!-- Kai the Cat - Self Damage Shield -->
|
||||
<action id="43" handler="ServitorSkillUse" option="4137" /> <!-- Unicorn Merrow - Hydro Screw -->
|
||||
<action id="44" handler="ServitorSkillUse" option="4139" /> <!-- Big Boom - Boom Attack -->
|
||||
<action id="45" handler="ServitorSkillUse" option="4025" /> <!-- Unicorn Boxer - Master Recharge -->
|
||||
<action id="46" handler="ServitorSkillUse" option="4261" /> <!-- Mew the Cat - Mega Storm Strike -->
|
||||
<action id="47" handler="ServitorSkillUse" option="4260" /> <!-- Silhouette - Steal Blood -->
|
||||
<action id="48" handler="ServitorSkillUse" option="4068" /> <!-- Mechanic Golem - Mech. Cannon -->
|
||||
<action id="52" handler="UnsummonServitor" />
|
||||
<action id="53" handler="ServitorMove" /> <!-- Move to target -->
|
||||
<action id="54" handler="PetMove" /> <!-- Move to target -->
|
||||
<action id="61" handler="PrivateStore" option="8" /> <!-- Private Store Package Sell -->
|
||||
<action id="62" handler="SocialAction" option="14" /> <!-- Charm -->
|
||||
<action id="64" handler="TeleportBookmark" />
|
||||
<action id="65" handler="BotReport" />
|
||||
<action id="66" handler="SocialAction" option="15" /> <!-- Shyness -->
|
||||
<action id="67" handler="AirshipAction" option="1" /> <!-- Steer -->
|
||||
<action id="68" handler="AirshipAction" option="2" /> <!-- Cancel Control -->
|
||||
<action id="69" handler="AirshipAction" option="3" /> <!-- Destination Map -->
|
||||
<action id="70" handler="AirshipAction" option="4" /> <!-- Exit Airship -->
|
||||
<action id="71" handler="SocialAction" option="16" /> <!-- Exchange Bows -->
|
||||
<action id="72" handler="SocialAction" option="17" /> <!-- High Five -->
|
||||
<action id="73" handler="SocialAction" option="18" /> <!-- Couple Dance -->
|
||||
<action id="78" handler="TacticalSignUse" option="1" /> <!-- Token 1: Star -->
|
||||
<action id="79" handler="TacticalSignUse" option="2" /> <!-- Token 2: Heart -->
|
||||
<action id="80" handler="TacticalSignUse" option="3" /> <!-- Token 3: Moon -->
|
||||
<action id="81" handler="TacticalSignUse" option="4" /> <!-- Token 4: Cross -->
|
||||
<action id="82" handler="TacticalSignTarget" option="1" /> <!-- Token 1: Star -->
|
||||
<action id="83" handler="TacticalSignTarget" option="2" /> <!-- Token 2: Heart -->
|
||||
<action id="84" handler="TacticalSignTarget" option="3" /> <!-- Token 3: Moon -->
|
||||
<action id="85" handler="TacticalSignTarget" option="4" /> <!-- Token 4: Cross -->
|
||||
<action id="87" handler="SocialAction" option="28" /> <!-- Propose -->
|
||||
<action id="88" handler="SocialAction" option="29" /> <!-- Provoke -->
|
||||
<action id="89" handler="SocialAction" option="30" /> <!-- Beauty Shop -->
|
||||
<action id="90" handler="InstanceZoneInfo" />
|
||||
<action id="95" handler="PlayIdleAnimation" />
|
||||
<action id="1000" handler="ServitorSkillUse" option="4079" /> <!-- Siege Golem - Siege Hammer -->
|
||||
<action id="1003" handler="PetSkillUse" option="4710" /> <!-- Wind Hatchling/Strider - Wild Stun -->
|
||||
<action id="1004" handler="PetSkillUse" option="4711" /> <!-- Wind Hatchling/Strider - Wild Defense -->
|
||||
<action id="1005" handler="PetSkillUse" option="4712" /> <!-- Star Hatchling/Strider - Bright Burst -->
|
||||
<action id="1006" handler="PetSkillUse" option="4713" /> <!-- Star Hatchling/Strider - Bright Heal -->
|
||||
<action id="1007" handler="ServitorSkillUse" option="4699" /> <!-- Cat Queen - Blessing of Queen -->
|
||||
<action id="1008" handler="ServitorSkillUse" option="4700" /> <!-- Cat Queen - Gift of Queen -->
|
||||
<action id="1009" handler="ServitorSkillUse" option="4701" /> <!-- Cat Queen - Cure of Queen -->
|
||||
<action id="1010" handler="ServitorSkillUse" option="4702" /> <!-- Unicorn Seraphim - Blessing of Seraphim -->
|
||||
<action id="1011" handler="ServitorSkillUse" option="4703" /> <!-- Unicorn Seraphim - Gift of Seraphim -->
|
||||
<action id="1012" handler="ServitorSkillUse" option="4704" /> <!-- Unicorn Seraphim - Cure of Seraphim -->
|
||||
<action id="1013" handler="ServitorSkillUse" option="4705" /> <!-- Nightshade - Curse of Shade -->
|
||||
<action id="1014" handler="ServitorSkillUse" option="4706" /> <!-- Nightshade - Mass Curse of Shade -->
|
||||
<action id="1015" handler="ServitorSkillUse" option="4707" /> <!-- Nightshade - Shade Sacrifice -->
|
||||
<action id="1016" handler="ServitorSkillUse" option="4709" /> <!-- Cursed Man - Cursed Blow -->
|
||||
<action id="1017" handler="ServitorSkillUse" option="4708" /> <!-- Cursed Man - Cursed Strike/Stun -->
|
||||
<action id="1031" handler="ServitorSkillUse" option="5135" /> <!-- Feline King - Slash -->
|
||||
<action id="1032" handler="ServitorSkillUse" option="5136" /> <!-- Feline King - Spinning Slash -->
|
||||
<action id="1033" handler="ServitorSkillUse" option="5137" /> <!-- Feline King - Grip of the Cat -->
|
||||
<action id="1034" handler="ServitorSkillUse" option="5138" /> <!-- Magnus the Unicorn - Whiplash -->
|
||||
<action id="1035" handler="ServitorSkillUse" option="5139" /> <!-- Magnus the Unicorn - Tridal Wave -->
|
||||
<action id="1036" handler="ServitorSkillUse" option="5142" /> <!-- Spectral Lord - Corpse Kaboom -->
|
||||
<action id="1037" handler="ServitorSkillUse" option="5141" /> <!-- Spectral Lord - Dicing Death -->
|
||||
<action id="1038" handler="ServitorSkillUse" option="5140" /> <!-- Spectral Lord - Force Curse -->
|
||||
<action id="1039" handler="ServitorSkillUse" option="5110" /> <!-- Swoop Cannon - Cannon Fodder -->
|
||||
<action id="1040" handler="ServitorSkillUse" option="5111" /> <!-- Swoop Cannon - Big Bang -->
|
||||
<action id="1041" handler="PetSkillUse" option="5442" /> <!-- Great Wolf - Bite Attack -->
|
||||
<action id="1042" handler="PetSkillUse" option="5444" /> <!-- Great Wolf - Maul -->
|
||||
<action id="1043" handler="PetSkillUse" option="5443" /> <!-- Great Wolf - Cry of the Wolf -->
|
||||
<action id="1044" handler="PetSkillUse" option="5445" /> <!-- Great Wolf - Awakening -->
|
||||
<action id="1045" handler="PetSkillUse" option="5584" /> <!-- Great Wolf - Howl -->
|
||||
<action id="1046" handler="PetSkillUse" option="5585" /> <!-- Strider - Roar -->
|
||||
<action id="1047" handler="ServitorSkillUse" option="5580" /> <!-- Divine Beast - Bite -->
|
||||
<action id="1048" handler="ServitorSkillUse" option="5581" /> <!-- Divine Beast - Stun Attack -->
|
||||
<action id="1049" handler="ServitorSkillUse" option="5582" /> <!-- Divine Beast - Fire Breath -->
|
||||
<action id="1050" handler="ServitorSkillUse" option="5583" /> <!-- Divine Beast - Roar -->
|
||||
<action id="1051" handler="ServitorSkillUse" option="5638" /> <!-- Feline Queen - Bless The Body -->
|
||||
<action id="1052" handler="ServitorSkillUse" option="5639" /> <!-- Feline Queen - Bless The Soul -->
|
||||
<action id="1053" handler="ServitorSkillUse" option="5640" /> <!-- Feline Queen - Haste -->
|
||||
<action id="1054" handler="ServitorSkillUse" option="5643" /> <!-- Unicorn Seraphim - Acumen -->
|
||||
<action id="1055" handler="ServitorSkillUse" option="5647" /> <!-- Unicorn Seraphim - Clarity -->
|
||||
<action id="1056" handler="ServitorSkillUse" option="5648" /> <!-- Unicorn Seraphim - Empower -->
|
||||
<action id="1057" handler="ServitorSkillUse" option="5646" /> <!-- Unicorn Seraphim - Wild Magic -->
|
||||
<action id="1058" handler="ServitorSkillUse" option="5652" /> <!-- Nightshade - Death Whisper -->
|
||||
<action id="1059" handler="ServitorSkillUse" option="5653" /> <!-- Nightshade - Focus -->
|
||||
<action id="1060" handler="ServitorSkillUse" option="5654" /> <!-- Nightshade - Guidance -->
|
||||
<action id="1061" handler="PetSkillUse" option="5745" /> <!-- Wild Beast Fighter, White Weasel - Death blow -->
|
||||
<action id="1062" handler="PetSkillUse" option="5746" /> <!-- Wild Beast Fighter - Double attack -->
|
||||
<action id="1063" handler="PetSkillUse" option="5747" /> <!-- Wild Beast Fighter - Spin attack -->
|
||||
<action id="1064" handler="PetSkillUse" option="5748" /> <!-- Wild Beast Fighter - Meteor Shower -->
|
||||
<action id="1065" handler="PetSkillUse" option="5753" /> <!-- Fox Shaman, Wild Beast Fighter, White Weasel, Fairy Princess - Awakening -->
|
||||
<action id="1066" handler="PetSkillUse" option="5749" /> <!-- Fox Shaman, Spirit Shaman - Thunder Bolt -->
|
||||
<action id="1067" handler="PetSkillUse" option="5750" /> <!-- Fox Shaman, Spirit Shaman - Flash -->
|
||||
<action id="1068" handler="PetSkillUse" option="5751" /> <!-- Fox Shaman, Spirit Shaman - Lightning Wave -->
|
||||
<action id="1069" handler="PetSkillUse" option="5752" /> <!-- Fox Shaman, Fairy Princess - Flare -->
|
||||
<action id="1070" handler="PetSkillUse" option="5771" /> <!-- White Weasel, Fairy Princess, Improved Baby Buffalo, Improved Baby Kookaburra, Improved Baby Cougar, Spirit Shaman, Toy Knight, Turtle Ascetic - Buff control -->
|
||||
<action id="1071" handler="ServitorSkillUse" option="5761" /> <!-- Tigress - Power Strike -->
|
||||
<action id="1072" handler="PetSkillUse" option="6046" /> <!-- Toy Knight - Piercing attack -->
|
||||
<action id="1073" handler="PetSkillUse" option="6047" /> <!-- Toy Knight - Whirlwind -->
|
||||
<action id="1074" handler="PetSkillUse" option="6048" /> <!-- Toy Knight - Lance Smash -->
|
||||
<action id="1075" handler="PetSkillUse" option="6049" /> <!-- Toy Knight - Battle Cry -->
|
||||
<action id="1076" handler="PetSkillUse" option="6050" /> <!-- Turtle Ascetic - Power Smash -->
|
||||
<action id="1077" handler="PetSkillUse" option="6051" /> <!-- Turtle Ascetic - Energy Burst -->
|
||||
<action id="1078" handler="PetSkillUse" option="6052" /> <!-- Turtle Ascetic - Shockwave -->
|
||||
<action id="1079" handler="PetSkillUse" option="6053" /> <!-- Turtle Ascetic - Howl -->
|
||||
<action id="1080" handler="ServitorSkillUse" option="6041" /> <!-- Phoenix Rush -->
|
||||
<action id="1081" handler="ServitorSkillUse" option="6042" /> <!-- Phoenix Cleanse -->
|
||||
<action id="1082" handler="ServitorSkillUse" option="6043" /> <!-- Phoenix Flame Feather -->
|
||||
<action id="1083" handler="ServitorSkillUse" option="6044" /> <!-- Phoenix Flame Beak -->
|
||||
<action id="1084" handler="PetSkillUse" option="6054" /> <!-- Switch State -->
|
||||
<action id="1086" handler="ServitorSkillUse" option="6094" /> <!-- Panther Cancel -->
|
||||
<action id="1087" handler="ServitorSkillUse" option="6095" /> <!-- Panther Dark Claw -->
|
||||
<action id="1088" handler="ServitorSkillUse" option="6096" /> <!-- Panther Fatal Claw -->
|
||||
<action id="1089" handler="PetSkillUse" option="6199" /> <!-- Deinonychus - Tail Strike -->
|
||||
<action id="1090" handler="PetSkillUse" option="6205" /> <!-- Guardian's Strider - Strider Bite -->
|
||||
<action id="1091" handler="PetSkillUse" option="6206" /> <!-- Guardian's Strider - Strider Fear -->
|
||||
<action id="1092" handler="PetSkillUse" option="6207" /> <!-- Guardian's Strider - Strider Dash -->
|
||||
<action id="1093" handler="PetSkillUse" option="6618" /> <!-- Maguen - Maguen Strike -->
|
||||
<action id="1094" handler="PetSkillUse" option="6681" /> <!-- Maguen - Maguen Wind Walk -->
|
||||
<action id="1095" handler="PetSkillUse" option="6619" /> <!-- Elite Maguen - Maguen Power Strike -->
|
||||
<action id="1096" handler="PetSkillUse" option="6682" /> <!-- Elite Maguen - Elite Maguen Wind Walk -->
|
||||
<action id="1097" handler="PetSkillUse" option="6683" /> <!-- Maguen - Maguen Return -->
|
||||
<action id="1098" handler="PetSkillUse" option="6684" /> <!-- Elite Maguen - Maguen Party Return -->
|
||||
<action id="1099" handler="ServitorAttack" /> <!-- All Attack -->
|
||||
<action id="1100" handler="ServitorMove" /> <!-- All Move to target -->
|
||||
<action id="1101" handler="ServitorStop" /> <!-- All Stop -->
|
||||
<action id="1102" handler="UnsummonServitor" />
|
||||
<action id="1103" handler="ServitorMode" option="1" /> <!-- All Passive mode -->
|
||||
<action id="1104" handler="ServitorMode" option="2" /> <!-- All Defending mode -->
|
||||
<action id="1106" handler="ServitorSkillUse" option="11278" /> <!-- Cute Bear - Bear Claw -->
|
||||
<action id="1107" handler="ServitorSkillUse" option="11279" /> <!-- Cute Bear - Bear Tumbling -->
|
||||
<action id="1108" handler="ServitorSkillUse" option="11280" /> <!-- Saber Tooth Cougar- Cougar Bite -->
|
||||
<action id="1109" handler="ServitorSkillUse" option="11281" /> <!-- Saber Tooth Cougar - Cougar Pounce -->
|
||||
<action id="1110" handler="ServitorSkillUse" option="11282" /> <!-- Grim Reaper - Reaper Touch -->
|
||||
<action id="1111" handler="ServitorSkillUse" option="11283" /> <!-- Grim Reaper - Reaper Power -->
|
||||
<action id="1113" handler="ServitorSkillUse" option="10051" /> <!-- Golden Lion - Lion Roar -->
|
||||
<action id="1114" handler="ServitorSkillUse" option="10052" /> <!-- Golden Lion - Lion Claw -->
|
||||
<action id="1115" handler="ServitorSkillUse" option="10053" /> <!-- Golden Lion - Lion Dash -->
|
||||
<action id="1116" handler="ServitorSkillUse" option="10054" /> <!-- Golden Lion - Lion Flame -->
|
||||
<action id="1117" handler="ServitorSkillUse" option="10794" /> <!-- Thunder Hawk - Thunder Flight -->
|
||||
<action id="1118" handler="ServitorSkillUse" option="10795" /> <!-- Thunder Hawk - Thunder Purity -->
|
||||
<action id="1120" handler="ServitorSkillUse" option="10797" /> <!-- Thunder Hawk - Thunder Feather Blast -->
|
||||
<action id="1121" handler="ServitorSkillUse" option="10798" /> <!-- Thunder Hawk - Thunder Sharp Claw -->
|
||||
<action id="1122" handler="ServitorSkillUse" option="11806" /> <!-- Tree of Life - Blessing of Tree -->
|
||||
<action id="1123" handler="ServitorSkillUse" option="14767" /> <!-- Siege Golem - Siege Punch -->
|
||||
<action id="1124" handler="ServitorSkillUse" option="11323" /> <!-- Wynn Kai the Cat - Feline Aggression -->
|
||||
<action id="1125" handler="ServitorSkillUse" option="11324" /> <!-- Wynn Kai the Cat - Feline Stun -->
|
||||
<action id="1126" handler="ServitorSkillUse" option="11325" /> <!-- Wynn Feline King - Feline Bite -->
|
||||
<action id="1127" handler="ServitorSkillUse" option="11326" /> <!-- Wynn Feline King - Feline Pounce -->
|
||||
<action id="1128" handler="ServitorSkillUse" option="11327" /> <!-- Wynn Feline Queen - Feline Touch -->
|
||||
<action id="1129" handler="ServitorSkillUse" option="11328" /> <!-- Wynn Feline Queen - Feline Power -->
|
||||
<action id="1130" handler="ServitorSkillUse" option="11332" /> <!-- Wynn Merrow - Unicorn's Aggression -->
|
||||
<action id="1131" handler="ServitorSkillUse" option="11333" /> <!-- Wynn Merrow - Unicorn's Stun -->
|
||||
<action id="1132" handler="ServitorSkillUse" option="11334" /> <!-- Wynn Magnus - Unicorn's Bite -->
|
||||
<action id="1133" handler="ServitorSkillUse" option="11335" /> <!-- Wynn Magnus - Unicorn's Pounce -->
|
||||
<action id="1134" handler="ServitorSkillUse" option="11336" /> <!-- Wynn Seraphim - Unicorn's Touch -->
|
||||
<action id="1135" handler="ServitorSkillUse" option="11337" /> <!-- Wynn Seraphim - Unicorn's Power -->
|
||||
<action id="1136" handler="ServitorSkillUse" option="11341" /> <!-- Wynn Nightshade - Phantom Aggression -->
|
||||
<action id="1137" handler="ServitorSkillUse" option="11342" /> <!-- Wynn Nightshade - Phantom Stun -->
|
||||
<action id="1138" handler="ServitorSkillUse" option="11343" /> <!-- Wynn Spectral Lord - Phantom Bite -->
|
||||
<action id="1139" handler="ServitorSkillUse" option="11344" /> <!-- Wynn Spectral Lord - Phantom Pounce -->
|
||||
<action id="1140" handler="ServitorSkillUse" option="11345" /> <!-- Wynn Soulless - Phantom Touch -->
|
||||
<action id="1141" handler="ServitorSkillUse" option="11346" /> <!-- Wynn Soulless - Phantom Power -->
|
||||
<action id="1142" handler="ServitorSkillUse" option="10087" /> <!-- Blood Panther - Panther Roar -->
|
||||
<action id="1143" handler="ServitorSkillUse" option="10088" /> <!-- Blood Panther - Panther Rush -->
|
||||
<action id="1144" handler="ServitorSkillUse" option="11375" /> <!-- Commando Cat - Commando Jumping Attack -->
|
||||
<action id="1145" handler="ServitorSkillUse" option="11376" /> <!-- Commando Cat - Commando Double Slash -->
|
||||
<action id="1146" handler="ServitorSkillUse" option="11378" /> <!-- Witch Cat - Elemental Slam -->
|
||||
<action id="1147" handler="ServitorSkillUse" option="11377" /> <!-- Witch Cat - Witch Cat Power -->
|
||||
<action id="1148" handler="ServitorSkillUse" option="11379" /> <!-- Unicorn Lancer - Lancer Rush -->
|
||||
<action id="1149" handler="ServitorSkillUse" option="11380" /> <!-- Unicorn Lancer - Power Stamp -->
|
||||
<action id="1150" handler="ServitorSkillUse" option="11382" /> <!-- Unicorn Cherub - Multiple Icicles -->
|
||||
<action id="1151" handler="ServitorSkillUse" option="11381" /> <!-- Unicorn Cherub - Cherub Power -->
|
||||
<action id="1152" handler="ServitorSkillUse" option="11383" /> <!-- Dark Crusader - Phantom Sword Attack -->
|
||||
<action id="1153" handler="ServitorSkillUse" option="11384" /> <!-- Dark Crusader - Phantom Blow -->
|
||||
<action id="1154" handler="ServitorSkillUse" option="11385" /> <!-- Banshee Queen - Phantom Spike -->
|
||||
<action id="1155" handler="ServitorSkillUse" option="11386" /> <!-- Banshee Queen - Phantom Crash -->
|
||||
<action id="5000" handler="PetSkillUse" option="23155" /> <!-- Baby Rudolph - Reindeer Scratch -->
|
||||
<action id="5001" handler="PetSkillUse" option="23167" /> <!-- Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum - Rosy Seduction -->
|
||||
<action id="5002" handler="PetSkillUse" option="23168" /> <!-- Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum - Critical Seduction -->
|
||||
<action id="5003" handler="PetSkillUse" option="5749" /> <!-- Hyum, Lapham, Hyum, Lapham - Thunder Bolt -->
|
||||
<action id="5004" handler="PetSkillUse" option="5750" /> <!-- Hyum, Lapham, Hyum, Lapham - Flash -->
|
||||
<action id="5005" handler="PetSkillUse" option="5751" /> <!-- Hyum, Lapham, Hyum, Lapham - Lightning Wave -->
|
||||
<action id="5006" handler="PetSkillUse" option="5771" /> <!-- Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum, Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum - Buff Control -->
|
||||
<action id="5007" handler="PetSkillUse" option="6046" /> <!-- Deseloph, Lilias, Deseloph, Lilias - Piercing Attack -->
|
||||
<action id="5008" handler="PetSkillUse" option="6047" /> <!-- Deseloph, Lilias, Deseloph, Lilias - Spin Attack -->
|
||||
<action id="5009" handler="PetSkillUse" option="6048" /> <!-- Deseloph, Lilias, Deseloph, Lilias - Smash -->
|
||||
<action id="5010" handler="PetSkillUse" option="6049" /> <!-- Deseloph, Lilias, Deseloph, Lilias - Ignite -->
|
||||
<action id="5011" handler="PetSkillUse" option="6050" /> <!-- Rekang, Mafum, Rekang, Mafum - Power Smash -->
|
||||
<action id="5012" handler="PetSkillUse" option="6051" /> <!-- Rekang, Mafum, Rekang, Mafum - Energy Burst -->
|
||||
<action id="5013" handler="PetSkillUse" option="6052" /> <!-- Rekang, Mafum, Rekang, Mafum - Shockwave -->
|
||||
<action id="5014" handler="PetSkillUse" option="6053" /> <!-- Rekang, Mafum, Rekang, Mafum - Ignite -->
|
||||
<action id="5015" handler="PetSkillUse" option="6054" /> <!-- Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum, Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum - Switch Stance -->
|
||||
</list>
|
4234
L2J_Mobius_10.3_MasterClass/dist/game/data/AgathionData.xml
vendored
Normal file
4234
L2J_Mobius_10.3_MasterClass/dist/game/data/AgathionData.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1221
L2J_Mobius_10.3_MasterClass/dist/game/data/AlchemyData.xml
vendored
Normal file
1221
L2J_Mobius_10.3_MasterClass/dist/game/data/AlchemyData.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4553
L2J_Mobius_10.3_MasterClass/dist/game/data/AppearanceStones.xml
vendored
Normal file
4553
L2J_Mobius_10.3_MasterClass/dist/game/data/AppearanceStones.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
34
L2J_Mobius_10.3_MasterClass/dist/game/data/AttendanceRewards.xml
vendored
Normal file
34
L2J_Mobius_10.3_MasterClass/dist/game/data/AttendanceRewards.xml
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/AttendanceRewards.xsd">
|
||||
<item id="48848" count="12" /> <!-- Freya's Ice Rose -->
|
||||
<item id="48857" count="12" /> <!-- Shining Dragon Attribute Tonic (XP) -->
|
||||
<item id="40231" count="36" /> <!-- Freya's Frozen Scroll -->
|
||||
<item id="81013" count="12" /> <!-- Shining Nevit's Gold Hourglass -->
|
||||
<item id="81011" count="12" /> <!-- Honey Dark Beer -->
|
||||
<item id="81053" count="120" /> <!-- Vitality -->
|
||||
<item id="48309" count="1" /> <!-- Blessed Valakas' Necklace - Mind -->
|
||||
|
||||
<item id="48848" count="12" /> <!-- Freya's Ice Rose -->
|
||||
<item id="48857" count="12" /> <!-- Shining Dragon Attribute Tonic (XP) -->
|
||||
<item id="40231" count="36" /> <!-- Freya's Frozen Scroll -->
|
||||
<item id="81013" count="12" /> <!-- Shining Nevit's Gold Hourglass -->
|
||||
<item id="81011" count="12" /> <!-- Honey Dark Beer -->
|
||||
<item id="81053" count="120" /> <!-- Vitality -->
|
||||
<item id="29679" count="1" /> <!-- Silver Strider Rider Scroll -->
|
||||
|
||||
<item id="48848" count="24" /> <!-- Freya's Ice Rose -->
|
||||
<item id="48857" count="24" /> <!-- Shining Dragon Attribute Tonic (XP) -->
|
||||
<item id="40231" count="72" /> <!-- Freya's Frozen Scroll -->
|
||||
<item id="81013" count="24" /> <!-- Shining Nevit's Gold Hourglass -->
|
||||
<item id="81011" count="24" /> <!-- Honey Dark Beer -->
|
||||
<item id="81053" count="240" /> <!-- Vitality -->
|
||||
<item id="48305" count="1" /> <!-- Blessed Antharas' Earring - Shield -->
|
||||
|
||||
<item id="48848" count="24" /> <!-- Freya's Ice Rose -->
|
||||
<item id="48857" count="24" /> <!-- Shining Dragon Attribute Tonic (XP) -->
|
||||
<item id="40231" count="72" /> <!-- Freya's Frozen Scroll -->
|
||||
<item id="81013" count="24" /> <!-- Shining Nevit's Gold Hourglass -->
|
||||
<item id="81011" count="24" /> <!-- Honey Dark Beer -->
|
||||
<item id="81053" count="240" /> <!-- Vitality -->
|
||||
<item id="48313" count="1" /> <!-- Lindvior's Earring - Pure -->
|
||||
</list>
|
1148
L2J_Mobius_10.3_MasterClass/dist/game/data/BeautyShop.xml
vendored
Normal file
1148
L2J_Mobius_10.3_MasterClass/dist/game/data/BeautyShop.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5762
L2J_Mobius_10.3_MasterClass/dist/game/data/CategoryData.xml
vendored
Normal file
5762
L2J_Mobius_10.3_MasterClass/dist/game/data/CategoryData.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
35
L2J_Mobius_10.3_MasterClass/dist/game/data/ClanMasteryData.xml
vendored
Normal file
35
L2J_Mobius_10.3_MasterClass/dist/game/data/ClanMasteryData.xml
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ClanMasteryData.xsd">
|
||||
<!-- Clan Specialty level 1 -->
|
||||
<clan mastery="1" skill1Id="19543" skill1Level="1" skill2Id="19544" skill2Level="1" skill3Id="19545" skill3Level="1" skill4Id="391" skill4Level="1" clanLevel="5" clanReputation="10000" />
|
||||
<!-- Clan Specialty level 2 -->
|
||||
<clan mastery="2" skill1Id="19543" skill1Level="2" skill2Id="19544" skill2Level="1" skill3Id="19545" skill3Level="2" skill4Id="19007" skill4Level="1" clanLevel="6" clanReputation="10000" previousMastery="1" />
|
||||
<!-- Clan Specialty level 3 -->
|
||||
<clan mastery="3" skill1Id="19543" skill1Level="3" skill2Id="19544" skill2Level="3" skill3Id="19545" skill3Level="3" skill4Id="19112" skill4Level="1" clanLevel="7" clanReputation="10000" previousMastery="2" />
|
||||
<!-- Clan Specialty level 4 -->
|
||||
<clan mastery="4" skill1Id="19543" skill1Level="4" skill2Id="19544" skill2Level="4" skill3Id="19545" skill3Level="4" skill4Id="19008" skill4Level="1" clanLevel="11" clanReputation="50000" previousMastery="9" previousMasteryAlt="14" />
|
||||
<!-- Clan Specialty level 5 -->
|
||||
<clan mastery="5" skill1Id="19543" skill1Level="5" skill2Id="19544" skill2Level="5" skill3Id="19545" skill3Level="5" clanLevel="14" clanReputation="100000" previousMastery="11" previousMasteryAlt="16" />
|
||||
<!-- Clan Specialty level 6 -->
|
||||
<clan mastery="6" skill1Id="19543" skill1Level="6" skill2Id="19544" skill2Level="6" skill3Id="19545" skill3Level="6" clanLevel="15" clanReputation="100000" previousMastery="5" />
|
||||
<!-- Combat Specialty level 1 -->
|
||||
<clan mastery="7" skill1Id="19531" skill1Level="1" skill2Id="19532" skill2Level="1" clanLevel="8" clanReputation="30000" previousMastery="3" />
|
||||
<!-- Combat Specialty level 2 -->
|
||||
<clan mastery="8" skill1Id="19531" skill1Level="2" skill2Id="19532" skill2Level="2" clanLevel="9" clanReputation="30000" previousMastery="7" />
|
||||
<!-- Combat Specialty level 3 -->
|
||||
<clan mastery="9" skill1Id="19531" skill1Level="3" skill2Id="19532" skill2Level="3" skill3Id="19533" skill3Level="1" clanLevel="10" clanReputation="30000" previousMastery="8" />
|
||||
<!-- Combat Specialty level 4 -->
|
||||
<clan mastery="10" skill1Id="19531" skill1Level="4" skill2Id="19534" skill2Level="1" clanLevel="12" clanReputation="50000" previousMastery="4" />
|
||||
<!-- Combat Specialty level 5 -->
|
||||
<clan mastery="11" skill1Id="19534" skill1Level="2" clanLevel="13" clanReputation="50000" previousMastery="10" />
|
||||
<!-- War Specialty level 1 -->
|
||||
<clan mastery="12" skill1Id="19013" skill1Level="1" skill2Id="19535" skill2Level="1" clanLevel="8" clanReputation="30000" previousMastery="3" />
|
||||
<!-- War Specialty level 2 -->
|
||||
<clan mastery="13" skill1Id="19113" skill1Level="1" skill2Id="19535" skill2Level="2" clanLevel="9" clanReputation="30000" previousMastery="12" />
|
||||
<!-- War Specialty level 3 -->
|
||||
<clan mastery="14" skill1Id="19114" skill1Level="1" skill2Id="19535" skill2Level="3" skill3Id="19536" skill3Level="1" clanLevel="10" clanReputation="30000" previousMastery="13" />
|
||||
<!-- War Specialty level 4 -->
|
||||
<clan mastery="15" skill1Id="15094" skill1Level="1" skill2Id="19537" skill2Level="1" clanLevel="12" clanReputation="50000" previousMastery="4" />
|
||||
<!-- War Specialty level 5 -->
|
||||
<clan mastery="16" skill1Id="19537" skill1Level="2" clanLevel="13" clanReputation="50000" previousMastery="15" />
|
||||
</list>
|
1099
L2J_Mobius_10.3_MasterClass/dist/game/data/CollectionData.xml
vendored
Normal file
1099
L2J_Mobius_10.3_MasterClass/dist/game/data/CollectionData.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
17687
L2J_Mobius_10.3_MasterClass/dist/game/data/CombinationItems.xml
vendored
Normal file
17687
L2J_Mobius_10.3_MasterClass/dist/game/data/CombinationItems.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1834
L2J_Mobius_10.3_MasterClass/dist/game/data/CrystallizableItems.xml
vendored
Normal file
1834
L2J_Mobius_10.3_MasterClass/dist/game/data/CrystallizableItems.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
17
L2J_Mobius_10.3_MasterClass/dist/game/data/CursedWeapons.xml
vendored
Normal file
17
L2J_Mobius_10.3_MasterClass/dist/game/data/CursedWeapons.xml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/CursedWeapons.xsd">
|
||||
<item id="8190" name="Demonic Sword Zariche" skillId="3603">
|
||||
<disapearChance val="50" /> <!-- in % -->
|
||||
<dropRate val="1" /> <!-- 100000 for 100% -->
|
||||
<duration val="300" /> <!-- in minutes -->
|
||||
<durationLost val="3" /> <!-- in minutes -->
|
||||
<stageKills val="10" /> <!-- Integer -->
|
||||
</item>
|
||||
<item id="8689" name="Blood Sword Akamanah" skillId="3629">
|
||||
<disapearChance val="50" /> <!-- in % -->
|
||||
<dropRate val="1" /> <!-- 100000 for 100% -->
|
||||
<duration val="300" /> <!-- in minutes -->
|
||||
<durationLost val="3" /> <!-- in minutes -->
|
||||
<stageKills val="10" /> <!-- Integer -->
|
||||
</item>
|
||||
</list>
|
1398
L2J_Mobius_10.3_MasterClass/dist/game/data/DailyMission.xml
vendored
Normal file
1398
L2J_Mobius_10.3_MasterClass/dist/game/data/DailyMission.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
18399
L2J_Mobius_10.3_MasterClass/dist/game/data/DoorData.xml
vendored
Normal file
18399
L2J_Mobius_10.3_MasterClass/dist/game/data/DoorData.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
157
L2J_Mobius_10.3_MasterClass/dist/game/data/ElementalAttributeData.xml
vendored
Normal file
157
L2J_Mobius_10.3_MasterClass/dist/game/data/ElementalAttributeData.xml
vendored
Normal file
@@ -0,0 +1,157 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ElementalAttributeData.xsd">
|
||||
<!-- Stone -->
|
||||
<item id="9546" elemental="FIRE" type="STONE" />
|
||||
<item id="9547" elemental="WATER" type="STONE" />
|
||||
<item id="9549" elemental="WIND" type="STONE" />
|
||||
<item id="9548" elemental="EARTH" type="STONE" />
|
||||
<item id="9551" elemental="HOLY" type="STONE" />
|
||||
<item id="9550" elemental="DARK" type="STONE" />
|
||||
|
||||
<!-- Rough Stone -->
|
||||
<item id="10521" elemental="FIRE" type="STONE" />
|
||||
<item id="10522" elemental="WATER" type="STONE" />
|
||||
<item id="10524" elemental="WIND" type="STONE" />
|
||||
<item id="10523" elemental="EARTH" type="STONE" />
|
||||
<item id="10526" elemental="HOLY" type="STONE" />
|
||||
<item id="10525" elemental="DARK" type="STONE" />
|
||||
|
||||
<!-- Crystal -->
|
||||
<item id="9552" elemental="FIRE" type="CRYSTAL" />
|
||||
<item id="9553" elemental="WATER" type="CRYSTAL" />
|
||||
<item id="9555" elemental="WIND" type="CRYSTAL" />
|
||||
<item id="9554" elemental="EARTH" type="CRYSTAL" />
|
||||
<item id="9557" elemental="HOLY" type="CRYSTAL" />
|
||||
<item id="9556" elemental="DARK" type="CRYSTAL" />
|
||||
|
||||
<!-- Jewels are only for R110 grade -->
|
||||
<item id="9558" elemental="FIRE" type="JEWEL" />
|
||||
<item id="9559" elemental="WATER" type="JEWEL" />
|
||||
<item id="9561" elemental="WIND" type="JEWEL" />
|
||||
<item id="9560" elemental="EARTH" type="JEWEL" />
|
||||
<item id="9563" elemental="HOLY" type="JEWEL" />
|
||||
<item id="9562" elemental="DARK" type="JEWEL" />
|
||||
|
||||
<!-- Energy -->
|
||||
<item id="9564" elemental="FIRE" type="ENERGY" />
|
||||
<item id="9565" elemental="WATER" type="ENERGY" />
|
||||
<item id="9567" elemental="WIND" type="ENERGY" />
|
||||
<item id="9566" elemental="EARTH" type="ENERGY" />
|
||||
<item id="9569" elemental="HOLY" type="ENERGY" />
|
||||
<item id="9568" elemental="DARK" type="ENERGY" />
|
||||
|
||||
<!-- GoD+ Stones -->
|
||||
<item id="22635" elemental="FIRE" type="STONE" />
|
||||
<item id="22636" elemental="WATER" type="STONE" />
|
||||
<item id="22637" elemental="EARTH" type="STONE" />
|
||||
<item id="22638" elemental="WIND" type="STONE" />
|
||||
<item id="22639" elemental="DARK" type="STONE" />
|
||||
<item id="22640" elemental="HOLY" type="STONE" />
|
||||
<item id="22919" elemental="FIRE" type="STONE" />
|
||||
<item id="22920" elemental="WATER" type="STONE" />
|
||||
<item id="22921" elemental="EARTH" type="STONE" />
|
||||
<item id="22922" elemental="WIND" type="STONE" />
|
||||
<item id="22923" elemental="DARK" type="STONE" />
|
||||
<item id="22924" elemental="HOLY" type="STONE" />
|
||||
<item id="33481" elemental="FIRE" type="STONE_SUPER" />
|
||||
<item id="33482" elemental="WATER" type="STONE_SUPER" />
|
||||
<item id="33483" elemental="EARTH" type="STONE_SUPER" />
|
||||
<item id="33484" elemental="WIND" type="STONE_SUPER" />
|
||||
<item id="33485" elemental="DARK" type="STONE_SUPER" />
|
||||
<item id="33486" elemental="HOLY" type="STONE_SUPER" />
|
||||
<item id="33863" elemental="FIRE" type="STONE_SUPER" power="60" />
|
||||
<item id="33864" elemental="WATER" type="STONE_SUPER" power="60" />
|
||||
<item id="33865" elemental="EARTH" type="STONE_SUPER" power="60" />
|
||||
<item id="33866" elemental="WIND" type="STONE_SUPER" power="60" />
|
||||
<item id="33867" elemental="DARK" type="STONE_SUPER" power="60" />
|
||||
<item id="33868" elemental="HOLY" type="STONE_SUPER" power="60" />
|
||||
<item id="33869" elemental="FIRE" type="STONE_SUPER" power="150" />
|
||||
<item id="33870" elemental="WATER" type="STONE_SUPER" power="150" />
|
||||
<item id="33871" elemental="EARTH" type="STONE_SUPER" power="150" />
|
||||
<item id="33872" elemental="WIND" type="STONE_SUPER" power="150" />
|
||||
<item id="33873" elemental="DARK" type="STONE_SUPER" power="150" />
|
||||
<item id="33874" elemental="HOLY" type="STONE_SUPER" power="150" />
|
||||
<item id="34661" elemental="FIRE" type="STONE_SUPER" power="60" />
|
||||
<item id="34662" elemental="WATER" type="STONE_SUPER" power="60" />
|
||||
<item id="34663" elemental="EARTH" type="STONE_SUPER" power="60" />
|
||||
<item id="34664" elemental="WIND" type="STONE_SUPER" power="60" />
|
||||
<item id="34665" elemental="DARK" type="STONE_SUPER" power="60" />
|
||||
<item id="34666" elemental="HOLY" type="STONE_SUPER" power="60" />
|
||||
<item id="34667" elemental="FIRE" type="STONE_SUPER" power="150" />
|
||||
<item id="34668" elemental="WATER" type="STONE_SUPER" power="150" />
|
||||
<item id="34669" elemental="EARTH" type="STONE_SUPER" power="150" />
|
||||
<item id="34670" elemental="WIND" type="STONE_SUPER" power="150" />
|
||||
<item id="34671" elemental="DARK" type="STONE_SUPER" power="150" />
|
||||
<item id="34672" elemental="HOLY" type="STONE_SUPER" power="150" />
|
||||
<item id="34790" elemental="FIRE" type="STONE" />
|
||||
<item id="34791" elemental="WATER" type="STONE" />
|
||||
<item id="34792" elemental="EARTH" type="STONE" />
|
||||
<item id="34793" elemental="WIND" type="STONE" />
|
||||
<item id="34794" elemental="DARK" type="STONE" />
|
||||
<item id="34795" elemental="HOLY" type="STONE" />
|
||||
<item id="35729" elemental="FIRE" type="STONE_SUPER" power="60" />
|
||||
<item id="35730" elemental="WATER" type="STONE_SUPER" power="60" />
|
||||
<item id="35731" elemental="EARTH" type="STONE_SUPER" power="60" />
|
||||
<item id="35732" elemental="WIND" type="STONE_SUPER" power="60" />
|
||||
<item id="35733" elemental="DARK" type="STONE_SUPER" power="60" />
|
||||
<item id="35734" elemental="HOLY" type="STONE_SUPER" power="60" />
|
||||
<item id="35735" elemental="FIRE" type="STONE_SUPER" power="150" />
|
||||
<item id="35736" elemental="WATER" type="STONE_SUPER" power="150" />
|
||||
<item id="35737" elemental="EARTH" type="STONE_SUPER" power="150" />
|
||||
<item id="35738" elemental="WIND" type="STONE_SUPER" power="150" />
|
||||
<item id="35739" elemental="DARK" type="STONE_SUPER" power="150" />
|
||||
<item id="35740" elemental="HOLY" type="STONE_SUPER" power="150" />
|
||||
<item id="36960" elemental="FIRE" type="STONE_SUPER" power="60" />
|
||||
<item id="36961" elemental="WATER" type="STONE_SUPER" power="60" />
|
||||
<item id="36962" elemental="EARTH" type="STONE_SUPER" power="60" />
|
||||
<item id="36963" elemental="WIND" type="STONE_SUPER" power="60" />
|
||||
<item id="36964" elemental="DARK" type="STONE_SUPER" power="60" />
|
||||
<item id="36965" elemental="HOLY" type="STONE_SUPER" power="60" />
|
||||
<item id="36966" elemental="FIRE" type="STONE_SUPER" power="150" />
|
||||
<item id="36967" elemental="WATER" type="STONE_SUPER" power="150" />
|
||||
<item id="36968" elemental="EARTH" type="STONE_SUPER" power="150" />
|
||||
<item id="36969" elemental="WIND" type="STONE_SUPER" power="150" />
|
||||
<item id="36970" elemental="DARK" type="STONE_SUPER" power="150" />
|
||||
<item id="36971" elemental="HOLY" type="STONE_SUPER" power="150" />
|
||||
<item id="37499" elemental="FIRE" type="STONE" />
|
||||
<item id="37500" elemental="WATER" type="STONE" />
|
||||
<item id="37501" elemental="EARTH" type="STONE" />
|
||||
<item id="37502" elemental="WIND" type="STONE" />
|
||||
<item id="37503" elemental="DARK" type="STONE" />
|
||||
<item id="37504" elemental="HOLY" type="STONE" />
|
||||
|
||||
<!-- GoD+ Crystals -->
|
||||
<item id="22641" elemental="FIRE" type="CRYSTAL" />
|
||||
<item id="22642" elemental="WATER" type="CRYSTAL" />
|
||||
<item id="22643" elemental="EARTH" type="CRYSTAL" />
|
||||
<item id="22644" elemental="WIND" type="CRYSTAL" />
|
||||
<item id="22645" elemental="DARK" type="CRYSTAL" />
|
||||
<item id="22646" elemental="HOLY" type="CRYSTAL" />
|
||||
<item id="22925" elemental="FIRE" type="CRYSTAL" />
|
||||
<item id="22926" elemental="WATER" type="CRYSTAL" />
|
||||
<item id="22927" elemental="EARTH" type="CRYSTAL" />
|
||||
<item id="22928" elemental="WIND" type="CRYSTAL" />
|
||||
<item id="22929" elemental="DARK" type="CRYSTAL" />
|
||||
<item id="22930" elemental="HOLY" type="CRYSTAL" />
|
||||
<item id="33487" elemental="FIRE" type="CRYSTAL_SUPER" />
|
||||
<item id="33488" elemental="WATER" type="CRYSTAL_SUPER" />
|
||||
<item id="33489" elemental="EARTH" type="CRYSTAL_SUPER" />
|
||||
<item id="33490" elemental="WIND" type="CRYSTAL_SUPER" />
|
||||
<item id="33491" elemental="DARK" type="CRYSTAL_SUPER" />
|
||||
<item id="33492" elemental="HOLY" type="CRYSTAL_SUPER" />
|
||||
<item id="34796" elemental="FIRE" type="CRYSTAL" />
|
||||
<item id="34797" elemental="WATER" type="CRYSTAL" />
|
||||
<item id="34798" elemental="EARTH" type="CRYSTAL" />
|
||||
<item id="34799" elemental="WIND" type="CRYSTAL" />
|
||||
<item id="34800" elemental="DARK" type="CRYSTAL" />
|
||||
<item id="34801" elemental="HOLY" type="CRYSTAL" />
|
||||
<item id="36972" elemental="FIRE" type="CRYSTAL_SUPER" />
|
||||
<item id="36973" elemental="WATER" type="CRYSTAL_SUPER" />
|
||||
<item id="36974" elemental="EARTH" type="CRYSTAL_SUPER" />
|
||||
<item id="36975" elemental="WIND" type="CRYSTAL_SUPER" />
|
||||
<item id="36976" elemental="DARK" type="CRYSTAL_SUPER" />
|
||||
<item id="36977" elemental="HOLY" type="CRYSTAL_SUPER" />
|
||||
|
||||
<!-- Attribute Practice Fire Stone -->
|
||||
<item id="48169" elemental="FIRE" type="STONE" />
|
||||
</list>
|
2627
L2J_Mobius_10.3_MasterClass/dist/game/data/EnchantItemData.xml
vendored
Normal file
2627
L2J_Mobius_10.3_MasterClass/dist/game/data/EnchantItemData.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
605
L2J_Mobius_10.3_MasterClass/dist/game/data/EnchantItemGroups.xml
vendored
Normal file
605
L2J_Mobius_10.3_MasterClass/dist/game/data/EnchantItemGroups.xml
vendored
Normal file
@@ -0,0 +1,605 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/EnchantItemGroups.xsd">
|
||||
<!-- General armor enchant group. -->
|
||||
<enchantRateGroup name="ARMOR_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3-15" chance="66.67" />
|
||||
<current enchant="16-19" chance="33" />
|
||||
<current enchant="20-29" chance="20" />
|
||||
<current enchant="30-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- General full armor enchant group. -->
|
||||
<enchantRateGroup name="FULL_ARMOR_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3-15" chance="66.67" />
|
||||
<current enchant="16-19" chance="33" />
|
||||
<current enchant="20-29" chance="20" />
|
||||
<current enchant="30-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Common Accessories (all jewels except rare ones) -->
|
||||
<enchantRateGroup name="COMMON_ACCESSORIES_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3-15" chance="66.67" />
|
||||
<current enchant="16-19" chance="33" />
|
||||
<current enchant="20-29" chance="20" />
|
||||
<current enchant="30-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Rare Accessories (Angel, Dragon, Fallen Angel jewels) enchant group. -->
|
||||
<enchantRateGroup name="RARE_ACCESSORIES_GROUP">
|
||||
<current enchant="0-2" chance="50" />
|
||||
<current enchant="3-4" chance="45" />
|
||||
<current enchant="5-6" chance="40" />
|
||||
<current enchant="7" chance="35" />
|
||||
<current enchant="8" chance="17" />
|
||||
<current enchant="9" chance="7" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Common Kaliel bracelet enchant group. -->
|
||||
<enchantRateGroup name="COMMON_KALIEL_BRACELET_GROUP">
|
||||
<current enchant="0" chance="70" />
|
||||
<current enchant="1" chance="65" />
|
||||
<current enchant="2" chance="55" />
|
||||
<current enchant="3" chance="50" />
|
||||
<current enchant="4" chance="40" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Greater Kaliel bracelet enchant group. -->
|
||||
<enchantRateGroup name="GREATER_KALIEL_BRACELET_GROUP">
|
||||
<current enchant="0" chance="60" />
|
||||
<current enchant="1" chance="50" />
|
||||
<current enchant="2" chance="45" />
|
||||
<current enchant="3" chance="40" />
|
||||
<current enchant="4" chance="35" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Superior Kaliel bracelet enchant group. -->
|
||||
<enchantRateGroup name="SUPERIOR_KALIEL_BRACELET_GROUP">
|
||||
<current enchant="0" chance="50" />
|
||||
<current enchant="1" chance="45" />
|
||||
<current enchant="2" chance="40" />
|
||||
<current enchant="3" chance="30" />
|
||||
<current enchant="4" chance="15" />
|
||||
<current enchant="5-9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Superior Seed bracelet enchant group. -->
|
||||
<enchantRateGroup name="SUPERIOR_SEED_BRACELET_GROUP">
|
||||
<current enchant="0" chance="50" />
|
||||
<current enchant="1" chance="40" />
|
||||
<current enchant="2" chance="30" />
|
||||
<current enchant="3" chance="15" />
|
||||
<current enchant="4-9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Common Kingdom cloaks enchant group. -->
|
||||
<enchantRateGroup name="COMMON_KINGDOM_CLOAK_GROUP">
|
||||
<current enchant="0" chance="70" />
|
||||
<current enchant="1" chance="65" />
|
||||
<current enchant="2" chance="58" />
|
||||
<current enchant="3" chance="42" />
|
||||
<current enchant="4-5" chance="32" />
|
||||
<current enchant="6" chance="28" />
|
||||
<current enchant="7" chance="48" />
|
||||
<current enchant="8-9" chance="28" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Legendary Kingdom cloaks enchant group. -->
|
||||
<enchantRateGroup name="LEGENDARY_KINGDOM_CLOAK_GROUP">
|
||||
<current enchant="0" chance="70" />
|
||||
<current enchant="1" chance="65" />
|
||||
<current enchant="2" chance="58" />
|
||||
<current enchant="3" chance="42" />
|
||||
<current enchant="4-5" chance="32" />
|
||||
<current enchant="6" chance="28" />
|
||||
<current enchant="7" chance="48" />
|
||||
<current enchant="8-12" chance="28" />
|
||||
<current enchant="13" chance="65" />
|
||||
<current enchant="14" chance="20" />
|
||||
<current enchant="15-16" chance="7" />
|
||||
<current enchant="17-18" chance="5" />
|
||||
<current enchant="19" chance="3" />
|
||||
<current enchant="20-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Power Shirts Group -->
|
||||
<enchantRateGroup name="POWER_SHIRT_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3" chance="66" />
|
||||
<current enchant="4" chance="33" />
|
||||
<current enchant="5" chance="15" />
|
||||
<current enchant="6" chance="14" />
|
||||
<current enchant="7" chance="9" />
|
||||
<current enchant="8" chance="7" />
|
||||
<current enchant="9" chance="4" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Special Shirts Group (Pa'agrio, Sayha, Eva, Maphr, Elemental, Reflect) -->
|
||||
<enchantRateGroup name="SPECIAL_SHIRT_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3" chance="50" />
|
||||
<current enchant="4" chance="40" />
|
||||
<current enchant="5" chance="30" />
|
||||
<current enchant="6" chance="27" />
|
||||
<current enchant="7" chance="17" />
|
||||
<current enchant="8" chance="9" />
|
||||
<current enchant="9" chance="1" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Dragon Shirt Group -->
|
||||
<enchantRateGroup name="DRAGON_SHIRT_GROUP">
|
||||
<current enchant="0" chance="60" />
|
||||
<current enchant="1" chance="55" />
|
||||
<current enchant="2" chance="50" />
|
||||
<current enchant="3" chance="45" />
|
||||
<current enchant="4" chance="40" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Dragon Leather Shirt Group -->
|
||||
<enchantRateGroup name="DRAGON_LEATHER_SHIRT_GROUP">
|
||||
<current enchant="0" chance="50" />
|
||||
<current enchant="1" chance="45" />
|
||||
<current enchant="2" chance="40" />
|
||||
<current enchant="3" chance="35" />
|
||||
<current enchant="4" chance="30" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Dragon Rind Leather Shirt Group -->
|
||||
<enchantRateGroup name="DRAGON_RIND_LEATHER_SHIRT_GROUP">
|
||||
<current enchant="0" chance="45" />
|
||||
<current enchant="1" chance="40" />
|
||||
<current enchant="2" chance="30" />
|
||||
<current enchant="3" chance="20" />
|
||||
<current enchant="4-9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Savior's Mask Group -->
|
||||
<enchantRateGroup name="SAVIOR_MASK_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3" chance="50" />
|
||||
<current enchant="4" chance="45" />
|
||||
<current enchant="5" chance="33" />
|
||||
<current enchant="6" chance="25" />
|
||||
<current enchant="7" chance="20" />
|
||||
<current enchant="8" chance="15" />
|
||||
<current enchant="9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Navari's Mask Group -->
|
||||
<enchantRateGroup name="NAVARI_MASK_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3" chance="50" />
|
||||
<current enchant="4" chance="41" />
|
||||
<current enchant="5" chance="32" />
|
||||
<current enchant="6" chance="23" />
|
||||
<current enchant="7" chance="19" />
|
||||
<current enchant="8" chance="15" />
|
||||
<current enchant="9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- 17th Anniversary Guardian Angel's Ring Event Group -->
|
||||
<enchantRateGroup name="GUARDIAN_ANGEL_RING_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3" chance="40" />
|
||||
<current enchant="4" chance="30" />
|
||||
<current enchant="5-6" chance="20" />
|
||||
<current enchant="7-9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- General fighter weapon enchant group. -->
|
||||
<enchantRateGroup name="FIGHTER_WEAPON_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3-15" chance="66.67" />
|
||||
<current enchant="16-19" chance="33" />
|
||||
<current enchant="20-29" chance="20" />
|
||||
<current enchant="30-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- General mage weapon enchant group. -->
|
||||
<enchantRateGroup name="MAGE_WEAPON_GROUP">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3-15" chance="66.67" />
|
||||
<current enchant="16-19" chance="33" />
|
||||
<current enchant="20-29" chance="20" />
|
||||
<current enchant="30-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Agathion Charms enchant group. -->
|
||||
<enchantRateGroup name="AGATHION_CHARM">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3" chance="50" />
|
||||
<current enchant="4" chance="45" />
|
||||
<current enchant="5" chance="35" />
|
||||
<current enchant="6" chance="25" />
|
||||
<current enchant="7" chance="20" />
|
||||
<current enchant="8" chance="15" />
|
||||
<current enchant="9" chance="7" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Greater Agathion Charms enchant group. -->
|
||||
<enchantRateGroup name="GREATER_AGATHION_CHARM">
|
||||
<current enchant="0" chance="70" />
|
||||
<current enchant="1" chance="55" />
|
||||
<current enchant="2" chance="40" />
|
||||
<current enchant="3" chance="25" />
|
||||
<current enchant="4" chance="15" />
|
||||
<current enchant="5-9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Agathion Fire Dragon Charm enchant group. -->
|
||||
<enchantRateGroup name="AGATHION_FIRE_DRAGON_CHARM">
|
||||
<current enchant="0-2" chance="100" />
|
||||
<current enchant="3-4" chance="2" />
|
||||
<current enchant="5-9" chance="1" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Enhanced Brooch enchant group. -->
|
||||
<enchantRateGroup name="ENHANCED_BROOCH_GROUP">
|
||||
<current enchant="0" chance="60" />
|
||||
<current enchant="1" chance="50" />
|
||||
<current enchant="2" chance="45" />
|
||||
<current enchant="3" chance="40" />
|
||||
<current enchant="4" chance="35" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Superior Brooch enchant group. -->
|
||||
<enchantRateGroup name="SUPERIOR_BROOCH_GROUP">
|
||||
<current enchant="0-2" chance="60" />
|
||||
<current enchant="3-4" chance="50" />
|
||||
<current enchant="5-6" chance="40" />
|
||||
<current enchant="7-8" chance="30" />
|
||||
<current enchant="9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Common Circlet enchant group. -->
|
||||
<enchantRateGroup name="COMMON_CIRCLET_GROUP">
|
||||
<current enchant="0" chance="70" />
|
||||
<current enchant="1" chance="65" />
|
||||
<current enchant="2" chance="55" />
|
||||
<current enchant="3" chance="50" />
|
||||
<current enchant="4" chance="40" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Noble Circlet enchant group. -->
|
||||
<enchantRateGroup name="NOBLE_CIRCLET_GROUP">
|
||||
<current enchant="0" chance="60" />
|
||||
<current enchant="1" chance="50" />
|
||||
<current enchant="2" chance="45" />
|
||||
<current enchant="3" chance="40" />
|
||||
<current enchant="4" chance="35" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Radiant Circlet enchant group. -->
|
||||
<enchantRateGroup name="RADIANT_CIRCLET_GROUP">
|
||||
<current enchant="0" chance="48" />
|
||||
<current enchant="1" chance="35" />
|
||||
<current enchant="2" chance="29" />
|
||||
<current enchant="3" chance="25" />
|
||||
<current enchant="4" chance="20" />
|
||||
<current enchant="5-9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Common Artifact Book enchant group -->
|
||||
<enchantRateGroup name="COMMON_ARTIFACT_BOOK_GROUP">
|
||||
<current enchant="0" chance="70" />
|
||||
<current enchant="1" chance="60" />
|
||||
<current enchant="2" chance="50" />
|
||||
<current enchant="3" chance="40" />
|
||||
<current enchant="4" chance="35" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Improved Artifact Book enchant group -->
|
||||
<enchantRateGroup name="IMPROVED_ARTIFACT_BOOK_GROUP">
|
||||
<current enchant="0" chance="60" />
|
||||
<current enchant="1" chance="50" />
|
||||
<current enchant="2" chance="40" />
|
||||
<current enchant="3" chance="30" />
|
||||
<current enchant="4" chance="25" />
|
||||
<current enchant="5-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Unique Artifact Book enchant group -->
|
||||
<enchantRateGroup name="UNIQUE_ARTIFACT_BOOK_GROUP">
|
||||
<current enchant="0" chance="55" />
|
||||
<current enchant="1" chance="45" />
|
||||
<current enchant="2" chance="35" />
|
||||
<current enchant="3" chance="25" />
|
||||
<current enchant="4" chance="15" />
|
||||
<current enchant="5-9" chance="10" />
|
||||
<current enchant="10-127" chance="0" />
|
||||
</enchantRateGroup>
|
||||
|
||||
<!-- Default scrolls enchanting route line. -->
|
||||
<enchantScrollGroup id="0">
|
||||
<!-- Bind armor group to all item slots except full armor. -->
|
||||
<enchantRate group="ARMOR_GROUP">
|
||||
<item slot="lhand" /> <!-- Left hand: Shields, Sigils -->
|
||||
<item slot="head" /> <!-- Head: Helmet -->
|
||||
<item slot="chest" /> <!-- Chest: Armor upper body. -->
|
||||
<item slot="legs" /> <!-- Legs: Armor lower body. -->
|
||||
<item slot="feet" /> <!-- Feet: Boots -->
|
||||
<item slot="gloves" /> <!-- Gloves: Gloves -->
|
||||
<item slot="waist" /> <!-- Belt: Belts -->
|
||||
</enchantRate>
|
||||
<!-- Common Accessories -->
|
||||
<enchantRate group="COMMON_ACCESSORIES_GROUP">
|
||||
<item slot="neck" /> <!-- Neck: Necklaces -->
|
||||
<item slot="rear;lear" /> <!-- Right ear, Left ear: Earrings -->
|
||||
<item slot="rfinger;lfinger" /> <!-- Right finger, Left finger: Rings -->
|
||||
</enchantRate>
|
||||
<!-- Agathion Charm -->
|
||||
<enchantRate group="AGATHION_CHARM">
|
||||
<item slot="agathion" /> <!-- Agathion Charm -->
|
||||
</enchantRate>
|
||||
<!-- Enhanced Brooch -->
|
||||
<enchantRate group="ENHANCED_BROOCH_GROUP">
|
||||
<item itemId="81359" /> <!-- Enhanced La Vie En Rose's Brooch -->
|
||||
<item itemId="29546" /> <!-- Enhanced La Vie En Rose's Brooch -->
|
||||
</enchantRate>
|
||||
<!-- Common Circlets -->
|
||||
<enchantRate group="COMMON_CIRCLET_GROUP">
|
||||
<item itemId="48202" /> <!-- Warrior's Circlet -->
|
||||
<item itemId="48205" /> <!-- Wizard's Circlet -->
|
||||
<item itemId="48208" /> <!-- Knight's Circlet -->
|
||||
</enchantRate>
|
||||
<!-- Common Artifact Book -->
|
||||
<enchantRate group="COMMON_ARTIFACT_BOOK_GROUP">
|
||||
<item itemId="48956" /> <!-- Artifact Book Lv. 3 -->
|
||||
</enchantRate>
|
||||
<!-- Bind only full armor group to to full armor slot items. -->
|
||||
<enchantRate group="FULL_ARMOR_GROUP">
|
||||
<item slot="fullarmor" /> <!-- Full Armor: Full armor pants are included. -->
|
||||
</enchantRate>
|
||||
<!-- Common Kaliel Bracelet -->
|
||||
<enchantRate group="COMMON_KALIEL_BRACELET_GROUP">
|
||||
<item itemId="80835" /> <!-- Kaliel Bracelet -->
|
||||
</enchantRate>
|
||||
<!-- Superior Seed Bracelet Lv. 4 -->
|
||||
<enchantRate group="SUPERIOR_SEED_BRACELET_GROUP">
|
||||
<item itemId="48577" /> <!-- Superior Seed Bracelet Lv. 4 -->
|
||||
</enchantRate>
|
||||
<!-- Common Kingdom Cloaks -->
|
||||
<enchantRate group="COMMON_KINGDOM_CLOAK_GROUP">
|
||||
<item itemId="28585" /> <!-- Elmoreden Cloak -->
|
||||
<item itemId="28586" /> <!-- Aden Cloak -->
|
||||
<item itemId="28587" /> <!-- Elmore Cloak -->
|
||||
<item itemId="28588" /> <!-- Ferios Cloak -->
|
||||
</enchantRate>
|
||||
<!-- Power Shirts -->
|
||||
<enchantRate group="POWER_SHIRT_GROUP">
|
||||
<item itemId="21580" /> <!-- Power Shirt -->
|
||||
<item itemId="21706" /> <!-- Power Shirt (Event) -->
|
||||
<item itemId="23085" /> <!-- Power Shirt (Event) -->
|
||||
<item itemId="34732" /> <!-- Exchanged Power Shirt -->
|
||||
</enchantRate>
|
||||
<!-- Navari's Mask -->
|
||||
<enchantRate group="SAVIOR_MASK_GROUP">
|
||||
<item itemId="48584" /> <!-- Savior's Mask -->
|
||||
</enchantRate>
|
||||
<!-- 17th Anniversary Guardian Angel's Ring Event Group -->
|
||||
<enchantRate group="GUARDIAN_ANGEL_RING_GROUP">
|
||||
<item itemId="81736" /> <!-- 17th Anniversary Guardian Angel's Ring Event -->
|
||||
</enchantRate>
|
||||
<!-- Bind only fighter weapon group to all fighter weapons. -->
|
||||
<enchantRate group="FIGHTER_WEAPON_GROUP">
|
||||
<item slot="rhand" magicWeapon="false" /> <!-- Right hand: Weapons, Non magic weapon -->
|
||||
<item slot="lrhand" magicWeapon="false" /> <!-- Two hands: Weapons, Non magic weapon -->
|
||||
</enchantRate>
|
||||
<!-- Bind only mage weapon group to all magic weapons. -->
|
||||
<enchantRate group="MAGE_WEAPON_GROUP">
|
||||
<item slot="rhand" magicWeapon="true" /> <!-- Right hand: Weapons, Magic weapon -->
|
||||
<item slot="lrhand" magicWeapon="true" /> <!-- Two hands: Weapons, Magic weapon -->
|
||||
</enchantRate>
|
||||
</enchantScrollGroup>
|
||||
<enchantScrollGroup id="1">
|
||||
<!-- Rare Accessories -->
|
||||
<enchantRate group="RARE_ACCESSORIES_GROUP">
|
||||
<item itemId="48669" /> <!-- Angel's Necklace -->
|
||||
<item itemId="81370" /> <!-- Angel's Necklace(Assault Lv. 1) -->
|
||||
<item itemId="81371" /> <!-- Angel's Necklace(Assault Lv. 2) -->
|
||||
<item itemId="81372" /> <!-- Angel's Necklace(Assault Lv. 3) -->
|
||||
<item itemId="48841" /> <!-- Angel's Earring -->
|
||||
<item itemId="81373" /> <!-- Angel's Earring(Security Lv. 1) -->
|
||||
<item itemId="81374" /> <!-- Angel's Earring(Security Lv. 2) -->
|
||||
<item itemId="81375" /> <!-- Angel's Earring(Security Lv. 3) -->
|
||||
<item itemId="81154" /> <!-- Angel's Ring -->
|
||||
<item itemId="81376" /> <!-- Angel's Ring(Elements Lv. 1) -->
|
||||
<item itemId="81377" /> <!-- Angel's Ring(Elements Lv. 2) -->
|
||||
<item itemId="81378" /> <!-- Angel's Ring(Elements Lv. 3) -->
|
||||
<item itemId="81212" /> <!-- Angel's Necklace -->
|
||||
<item itemId="81388" /> <!-- Angel's Necklace(Assault Lv. 1) -->
|
||||
<item itemId="81389" /> <!-- Angel's Necklace(Assault Lv. 2) -->
|
||||
<item itemId="81390" /> <!-- Angel's Necklace(Assault Lv. 3) -->
|
||||
<item itemId="81213" /> <!-- Angel's Earring -->
|
||||
<item itemId="81391" /> <!-- Angel's Earring(Security Lv. 1) -->
|
||||
<item itemId="81392" /> <!-- Angel's Earring(Security Lv. 2) -->
|
||||
<item itemId="81393" /> <!-- Angel's Earring(Security Lv. 3) -->
|
||||
<item itemId="81214" /> <!-- Angel's Ring -->
|
||||
<item itemId="81394" /> <!-- Angel's Ring(Elements Lv. 1) -->
|
||||
<item itemId="81395" /> <!-- Angel's Ring(Elements Lv. 2) -->
|
||||
<item itemId="81396" /> <!-- Angel's Ring(Elements Lv. 3) -->
|
||||
<item itemId="81784" /> <!-- Blessed Angel's Necklace -->
|
||||
<item itemId="81785" /> <!-- Blessed Angel's Necklace(Assault Lv. 1) -->
|
||||
<item itemId="81786" /> <!-- Blessed Angel's Necklace(Assault Lv. 2) -->
|
||||
<item itemId="81787" /> <!-- Blessed Angel's Necklace(Assault Lv. 3) -->
|
||||
<item itemId="81788" /> <!-- Blessed Angel's Earring -->
|
||||
<item itemId="81789" /> <!-- Blessed Angel's Earring(Security Lv. 1) -->
|
||||
<item itemId="81790" /> <!-- Blessed Angel's Earring(Security Lv. 2) -->
|
||||
<item itemId="81791" /> <!-- Blessed Angel's Earring(Security Lv. 3) -->
|
||||
<item itemId="81792" /> <!-- Blessed Angel's Ring -->
|
||||
<item itemId="81793" /> <!-- Blessed Angel's Ring(Elements Lv. 1) -->
|
||||
<item itemId="81794" /> <!-- Blessed Angel's Ring(Elements Lv. 2) -->
|
||||
<item itemId="81795" /> <!-- Blessed Angel's Ring(Elements Lv. 3) -->
|
||||
<item itemId="81796" /> <!-- Blessed Angel's Necklace -->
|
||||
<item itemId="81797" /> <!-- Blessed Angel's Necklace(Assault Lv. 1) -->
|
||||
<item itemId="81798" /> <!-- Blessed Angel's Necklace(Assault Lv. 2) -->
|
||||
<item itemId="81799" /> <!-- Blessed Angel's Necklace(Assault Lv. 3) -->
|
||||
<item itemId="81800" /> <!-- Blessed Angel's Earring -->
|
||||
<item itemId="81801" /> <!-- Blessed Angel's Earring(Security Lv. 1) -->
|
||||
<item itemId="81802" /> <!-- Blessed Angel's Earring(Security Lv. 2) -->
|
||||
<item itemId="81803" /> <!-- Blessed Angel's Earring(Security Lv. 3) -->
|
||||
<item itemId="81804" /> <!-- Blessed Angel's Ring -->
|
||||
<item itemId="81805" /> <!-- Blessed Angel's Ring(Elements Lv. 1) -->
|
||||
<item itemId="81806" /> <!-- Blessed Angel's Ring(Elements Lv. 2) -->
|
||||
<item itemId="81807" /> <!-- Blessed Angel's Ring(Elements Lv. 3) -->
|
||||
<item itemId="80333" /> <!-- Dragon Necklace -->
|
||||
<item itemId="81379" /> <!-- Dragon Necklace (Battle Lv. 1) -->
|
||||
<item itemId="81380" /> <!-- Dragon Necklace (Battle Lv. 2) -->
|
||||
<item itemId="81381" /> <!-- Dragon Necklace (Battle Lv. 3) -->
|
||||
<item itemId="80334" /> <!-- Dragon's Earring -->
|
||||
<item itemId="81382" /> <!-- Dragon's Earring (Guardian lv. 1) -->
|
||||
<item itemId="81383" /> <!-- Dragon's Earring (Guardian lv. 2) -->
|
||||
<item itemId="81384" /> <!-- Dragon's Earring (Guardian lv. 3) -->
|
||||
<item itemId="80335" /> <!-- Dragon's Ring -->
|
||||
<item itemId="81385" /> <!-- Dragon's Ring (Potential Lv. 1) -->
|
||||
<item itemId="81386" /> <!-- Dragon's Ring (Potential Lv. 2) -->
|
||||
<item itemId="81387" /> <!-- Dragon's Ring (Potential Lv. 3) -->
|
||||
<item itemId="48864" /> <!-- Fallen Angel's Ring -->
|
||||
<item itemId="81364" /> <!-- Fallen Angel's Ring (Charisma Lv. 1) -->
|
||||
<item itemId="81365" /> <!-- Fallen Angel's Ring (Charisma Lv. 2) -->
|
||||
<item itemId="81366" /> <!-- Fallen Angel's Ring (Charisma Lv. 3) -->
|
||||
<item itemId="81914" /> <!-- Blessed Fallen Angel's Ring -->
|
||||
<item itemId="81915" /> <!-- Blessed Fallen Angel's Ring (Charisma Lv. 1) -->
|
||||
<item itemId="81916" /> <!-- Blessed Fallen Angel's Ring (Charisma Lv. 2) -->
|
||||
<item itemId="81917" /> <!-- Blessed Fallen Angel's Ring (Charisma Lv. 3) -->
|
||||
<item itemId="82216" /> <!-- Fallen Angel's Earring -->
|
||||
<item itemId="82217" /> <!-- Fallen Angel's Earring (Cooldown Decrease Lv. 1) -->
|
||||
<item itemId="82218" /> <!-- Fallen Angel's Earring (Cooldown Decrease Lv. 2) -->
|
||||
<item itemId="82219" /> <!-- Fallen Angel's Earring (Cooldown Decrease Lv. 3) -->
|
||||
<item itemId="82220" /> <!-- Blessed Fallen Angel's Earring -->
|
||||
<item itemId="82221" /> <!-- Blessed Fallen Angel's Earring (Cooldown Decrease Lv. 1) -->
|
||||
<item itemId="82222" /> <!-- Blessed Fallen Angel's Earring (Cooldown Decrease Lv. 2) -->
|
||||
<item itemId="82223" /> <!-- Blessed Fallen Angel's Earring (Cooldown Decrease Lv. 3) -->
|
||||
</enchantRate>
|
||||
<!-- Greater Agathion Charm -->
|
||||
<enchantRate group="GREATER_AGATHION_CHARM">
|
||||
<item itemId="80936" /> <!-- Greater Agathion Virgo Charm -->
|
||||
<item itemId="80937" /> <!-- Greater Agathion Capricorn Charm -->
|
||||
<item itemId="80938" /> <!-- Greater Agathion Libra Charm -->
|
||||
<item itemId="80939" /> <!-- Greater Agathion Aries Charm -->
|
||||
<item itemId="80940" /> <!-- Greater Agathion Taurus Charm -->
|
||||
<item itemId="80941" /> <!-- Greater Agathion Leo Charm -->
|
||||
<item itemId="80942" /> <!-- Greater Agathion Gemini Charm -->
|
||||
<item itemId="80943" /> <!-- Greater Agathion Scorpio Charm -->
|
||||
<item itemId="80944" /> <!-- Greater Agathion Aquarius Charm -->
|
||||
<item itemId="80945" /> <!-- Greater Agathion Pisces Charm -->
|
||||
<item itemId="80946" /> <!-- Greater Agathion Sagittarius Charm -->
|
||||
<item itemId="80947" /> <!-- Greater Agathion Cancer Charm -->
|
||||
</enchantRate>
|
||||
<!-- Superior Brooch -->
|
||||
<enchantRate group="SUPERIOR_BROOCH_GROUP">
|
||||
<item itemId="81360" /> <!-- Superior La Vie En Rose's Brooch -->
|
||||
<item itemId="29547" /> <!-- Superior La Vie En Rose's Brooch -->
|
||||
</enchantRate>
|
||||
<!-- Noble Circlet -->
|
||||
<enchantRate group="NOBLE_CIRCLET_GROUP">
|
||||
<item itemId="48203" /> <!-- Noble Warrior's Circlet -->
|
||||
<item itemId="48206" /> <!-- Noble Wizard's Circlet -->
|
||||
<item itemId="48209" /> <!-- Noble Knight's Circlet -->
|
||||
<item itemId="80776" /> <!-- Noble Warrior's Circlet -->
|
||||
<item itemId="80777" /> <!-- Noble Wizard's Circlet -->
|
||||
<item itemId="80778" /> <!-- Noble Knight's Circlet -->
|
||||
</enchantRate>
|
||||
<!-- Improved Artifact Book -->
|
||||
<enchantRate group="IMPROVED_ARTIFACT_BOOK_GROUP">
|
||||
<item itemId="81695" /> <!-- Improved Artifact Book Lv. 3 -->
|
||||
</enchantRate>
|
||||
<!-- Greater Kaliel Bracelet -->
|
||||
<enchantRate group="GREATER_KALIEL_BRACELET_GROUP">
|
||||
<item itemId="80836" /> <!-- Greater Kaliel Bracelet -->
|
||||
</enchantRate>
|
||||
<!-- Legendary Kingdom Cloaks -->
|
||||
<enchantRate group="LEGENDARY_KINGDOM_CLOAK_GROUP">
|
||||
<item itemId="28589" /> <!-- Legendary Elmoreden Cloak -->
|
||||
<item itemId="28590" /> <!-- Legendary Aden Cloak -->
|
||||
<item itemId="28591" /> <!-- Legendary Elmore Cloak -->
|
||||
<item itemId="28592" /> <!-- Legendary Ferios Cloak -->
|
||||
</enchantRate>
|
||||
<!-- Special Shirts (Pa'agrio, Sayha, Eva, Maphr, Elemental, Reflect) -->
|
||||
<enchantRate group="SPECIAL_SHIRT_GROUP">
|
||||
<item itemId="23240" /> <!-- Pa'agrio's Shirt -->
|
||||
<item itemId="23301" /> <!-- Sayha's Shirt -->
|
||||
<item itemId="23304" /> <!-- Eva's Shirt -->
|
||||
<item itemId="23307" /> <!-- Maphr's Shirt -->
|
||||
<item itemId="34623" /> <!-- Pa'agrio's Shirt -->
|
||||
<item itemId="34624" /> <!-- Sayha's Shirt -->
|
||||
<item itemId="34625" /> <!-- Eva's Shirt -->
|
||||
<item itemId="34626" /> <!-- Maphr's Shirt -->
|
||||
<item itemId="34770" /> <!-- Pa'agrio's Shirt (Event) -->
|
||||
<item itemId="34771" /> <!-- Sayha's Shirt (Event) -->
|
||||
<item itemId="34772" /> <!-- Eva's Shirt (Event) -->
|
||||
<item itemId="34773" /> <!-- Maphr's Shirt (Event) -->
|
||||
<item itemId="37718" /> <!-- Shiny Elemental Shirt -->
|
||||
<item itemId="46193" /> <!-- Physical Reflect Shirt -->
|
||||
<item itemId="46194" /> <!-- Magical Reflect Shirt -->
|
||||
</enchantRate>
|
||||
<!-- Navari's Mask -->
|
||||
<enchantRate group="NAVARI_MASK_GROUP">
|
||||
<item itemId="81153" /> <!-- Navari's Mask -->
|
||||
</enchantRate>
|
||||
</enchantScrollGroup>
|
||||
<enchantScrollGroup id="2">
|
||||
<!-- Agathion Fire Dragon Charm -->
|
||||
<enchantRate group="AGATHION_FIRE_DRAGON_CHARM">
|
||||
<item itemId="81443" /> <!-- Agathion Fire Dragon Charm -->
|
||||
</enchantRate>
|
||||
<!-- Radiant Circlets -->
|
||||
<enchantRate group="RADIANT_CIRCLET_GROUP">
|
||||
<item itemId="48204" /> <!-- Radiant Warrior's Circlet -->
|
||||
<item itemId="48207" /> <!-- Radiant Wizard's Circlet -->
|
||||
<item itemId="48210" /> <!-- Radiant Knight's Circlet -->
|
||||
<item itemId="48918" /> <!-- Radiant Warrior's Circlet -->
|
||||
<item itemId="48919" /> <!-- Radiant Wizard's Circlet -->
|
||||
<item itemId="48920" /> <!-- Radiant Knight's Circlet -->
|
||||
</enchantRate>
|
||||
<!-- Unique Artifact Book -->
|
||||
<enchantRate group="UNIQUE_ARTIFACT_BOOK_GROUP">
|
||||
<item itemId="81696" /> <!-- Unique Artifact Book Lv. 3 -->
|
||||
</enchantRate>
|
||||
<!-- Superior Kaliel Bracelet -->
|
||||
<enchantRate group="SUPERIOR_KALIEL_BRACELET_GROUP">
|
||||
<item itemId="80837" /> <!-- Superior Kaliel Bracelet -->
|
||||
</enchantRate>
|
||||
<!-- Dragon Shirt -->
|
||||
<enchantRate group="DRAGON_SHIRT_GROUP">
|
||||
<item itemId="48491" /> <!-- Dragon Skin Shirt -->
|
||||
</enchantRate>
|
||||
</enchantScrollGroup>
|
||||
<enchantScrollGroup id="3">
|
||||
<!-- Dragon Leather Shirt -->
|
||||
<enchantRate group="DRAGON_LEATHER_SHIRT_GROUP">
|
||||
<item itemId="48492" /> <!-- Dragon Leather Shirt -->
|
||||
</enchantRate>
|
||||
</enchantScrollGroup>
|
||||
<enchantScrollGroup id="4">
|
||||
<!-- Dragon Rind Leather Shirt -->
|
||||
<enchantRate group="DRAGON_RIND_LEATHER_SHIRT_GROUP">
|
||||
<item itemId="48493" /> <!-- Dragon Rind Leather Shirt -->
|
||||
</enchantRate>
|
||||
</enchantScrollGroup>
|
||||
</list>
|
5434
L2J_Mobius_10.3_MasterClass/dist/game/data/EnchantItemOptions.xml
vendored
Normal file
5434
L2J_Mobius_10.3_MasterClass/dist/game/data/EnchantItemOptions.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
403
L2J_Mobius_10.3_MasterClass/dist/game/data/EnchantSkillGroups.xml
vendored
Normal file
403
L2J_Mobius_10.3_MasterClass/dist/game/data/EnchantSkillGroups.xml
vendored
Normal file
@@ -0,0 +1,403 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/EnchantSkillGroups.xsd">
|
||||
<enchant level="1" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="4250000" type="NORMAL" />
|
||||
<sp amount="4250000" type="BLESSED" />
|
||||
<sp amount="4250000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="90" type="NORMAL" />
|
||||
<chance value="90" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex -->
|
||||
<item id="57" count="2380000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="2380000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="2380000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="2" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="4550000" type="NORMAL" />
|
||||
<sp amount="4550000" type="BLESSED" />
|
||||
<sp amount="4550000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="87" type="NORMAL" />
|
||||
<chance value="87" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="2540000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="2540000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="2540000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="3" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="4850000" type="NORMAL" />
|
||||
<sp amount="4850000" type="BLESSED" />
|
||||
<sp amount="4850000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="84" type="NORMAL" />
|
||||
<chance value="84" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="2720000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="2720000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="2720000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="4" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="5170000" type="NORMAL" />
|
||||
<sp amount="5170000" type="BLESSED" />
|
||||
<sp amount="5170000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="81" type="NORMAL" />
|
||||
<chance value="81" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="2890000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="2890000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="2890000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="5" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="5420000" type="NORMAL" />
|
||||
<sp amount="5420000" type="BLESSED" />
|
||||
<sp amount="5420000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="78" type="NORMAL" />
|
||||
<chance value="78" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="3030000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="3030000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="3030000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="6" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="5880000" type="NORMAL" />
|
||||
<sp amount="5880000" type="BLESSED" />
|
||||
<sp amount="5880000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="75" type="NORMAL" />
|
||||
<chance value="75" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="3290000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="3290000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="3290000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="7" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="6550000" type="NORMAL" />
|
||||
<sp amount="6550000" type="BLESSED" />
|
||||
<sp amount="6550000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="72" type="NORMAL" />
|
||||
<chance value="72" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="3670000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="3670000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="3670000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="8" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="13340000" type="NORMAL" />
|
||||
<sp amount="13340000" type="BLESSED" />
|
||||
<sp amount="13340000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="68" type="NORMAL" />
|
||||
<chance value="68" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="7470000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="7470000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="7470000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="9" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="18580000" type="NORMAL" />
|
||||
<sp amount="18580000" type="BLESSED" />
|
||||
<sp amount="18580000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="64" type="NORMAL" />
|
||||
<chance value="64" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="10400000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="10400000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="10400000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="10" enchantFailLevel="0">
|
||||
<sps>
|
||||
<sp amount="36370000" type="NORMAL" />
|
||||
<sp amount="36370000" type="BLESSED" />
|
||||
<sp amount="36370000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="60" type="NORMAL" />
|
||||
<chance value="60" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="30297" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="20700000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="30298" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery -->
|
||||
<item id="57" count="20700000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="30299" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline -->
|
||||
<item id="57" count="20700000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="37044" count="1" type="IMMORTAL" /> <!-- Immortal Scroll -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="11" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="15000000" type="NORMAL" />
|
||||
<sp amount="15000000" type="BLESSED" />
|
||||
<sp amount="15000000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="89" type="NORMAL" />
|
||||
<chance value="89" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="8400000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="8400000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="8400000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="12" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="16800000" type="NORMAL" />
|
||||
<sp amount="16800000" type="BLESSED" />
|
||||
<sp amount="16800000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="86" type="NORMAL" />
|
||||
<chance value="86" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="9400000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="9400000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="9400000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="13" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="47000000" type="NORMAL" />
|
||||
<sp amount="47000000" type="BLESSED" />
|
||||
<sp amount="47000000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="83" type="NORMAL" />
|
||||
<chance value="83" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="26300000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="26300000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="26300000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="14" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="56700000" type="NORMAL" />
|
||||
<sp amount="56700000" type="BLESSED" />
|
||||
<sp amount="56700000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="80" type="NORMAL" />
|
||||
<chance value="80" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="31700000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="31700000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="31700000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="15" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="85100000" type="NORMAL" />
|
||||
<sp amount="85100000" type="BLESSED" />
|
||||
<sp amount="85100000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="77" type="NORMAL" />
|
||||
<chance value="77" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="47600000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="47600000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="47600000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="16" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="110500000" type="NORMAL" />
|
||||
<sp amount="110500000" type="BLESSED" />
|
||||
<sp amount="110500000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="74" type="NORMAL" />
|
||||
<chance value="74" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="61800000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="61800000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="61800000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="17" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="358400000" type="NORMAL" />
|
||||
<sp amount="358400000" type="BLESSED" />
|
||||
<sp amount="358400000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="71" type="NORMAL" />
|
||||
<chance value="71" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="200700000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="200700000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="200700000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="18" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="575400000" type="NORMAL" />
|
||||
<sp amount="575400000" type="BLESSED" />
|
||||
<sp amount="575400000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="67" type="NORMAL" />
|
||||
<chance value="67" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="322200000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="322200000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="322200000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="19" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="690500000" type="NORMAL" />
|
||||
<sp amount="690500000" type="BLESSED" />
|
||||
<sp amount="690500000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="63" type="NORMAL" />
|
||||
<chance value="63" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="386700000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="386700000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="386700000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
<enchant level="20" enchantFailLevel="10">
|
||||
<sps>
|
||||
<sp amount="690500000" type="NORMAL" />
|
||||
<sp amount="690500000" type="BLESSED" />
|
||||
<sp amount="690500000" type="CHANGE" />
|
||||
</sps>
|
||||
<chances>
|
||||
<chance value="59" type="NORMAL" />
|
||||
<chance value="59" type="BLESSED" />
|
||||
</chances>
|
||||
<items>
|
||||
<item id="46150" count="1" type="NORMAL" /> <!-- Superior Giant's Codex --> <!-- Retail count 0 -->
|
||||
<item id="57" count="386700000" type="NORMAL" /> <!-- Adena -->
|
||||
<item id="46151" count="1" type="BLESSED" /> <!-- Superior Giant's Codex - Mastery Chapter 1 -->
|
||||
<item id="57" count="386700000" type="BLESSED" /> <!-- Adena -->
|
||||
<item id="46152" count="1" type="CHANGE" /> <!-- Superior Giant's Codex - Discipline Chapter 1 -->
|
||||
<item id="57" count="386700000" type="CHANGE" /> <!-- Adena -->
|
||||
<item id="46153" count="1" type="IMMORTAL" /> <!-- Immortal Scroll Chapter 1 -->
|
||||
</items>
|
||||
</enchant>
|
||||
</list>
|
7293
L2J_Mobius_10.3_MasterClass/dist/game/data/EquipmentUpgradeData.xml
vendored
Normal file
7293
L2J_Mobius_10.3_MasterClass/dist/game/data/EquipmentUpgradeData.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
21
L2J_Mobius_10.3_MasterClass/dist/game/data/EquipmentUpgradeNormalData.xml
vendored
Normal file
21
L2J_Mobius_10.3_MasterClass/dist/game/data/EquipmentUpgradeNormalData.xml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/EquipmentUpgradeNormalData.xsd">
|
||||
<!--
|
||||
Commission in params its Adena multiplier, which apply to commission from upgrade.
|
||||
Commission in upgrade its adena, which request for change item type.
|
||||
Upgrade commission value 5 000 000:
|
||||
* commission 100 - upgrade commission will be 5 000 000 // default value
|
||||
* commission 1 000 - upgrade commission will be 50 000 000
|
||||
Calculation formula -> (Upgrade commission / 100) * (params commission)
|
||||
-->
|
||||
<params commission="100" />
|
||||
<discount>
|
||||
<!--
|
||||
Working only for material items in upgrade.
|
||||
For change adena tax - use commission in params.
|
||||
<item id="57" count="0" />
|
||||
<item id="57" count="0" />
|
||||
<item id="57" count="0" />
|
||||
-->
|
||||
</discount>
|
||||
</list>
|
24
L2J_Mobius_10.3_MasterClass/dist/game/data/FakePlayerChatData.xml
vendored
Normal file
24
L2J_Mobius_10.3_MasterClass/dist/game/data/FakePlayerChatData.xml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Use lowercase for searchText and answers. -->
|
||||
<!-- You can use specific fpcName or ALL to use with all fpcs. -->
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/FakePlayerChatData.xsd">
|
||||
<fakePlayerChat fpcName="ALL" searchMethod="EQUALS" searchText="hi" answers="hello;hi;hi there;hello there" />
|
||||
<fakePlayerChat fpcName="ALL" searchMethod="EQUALS" searchText="hey" answers="hey hey;hey;hey there" />
|
||||
<fakePlayerChat fpcName="ALL" searchMethod="EQUALS" searchText="hello" answers="hello;hi;hi there;hello there" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="EQUALS" searchText="here?" answers="yes;busy;i look for something" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="EQUALS" searchText="whats up?" answers="good;busy;i look for something" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="EQUALS" searchText="what?" answers="something :P;something for me" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="EQUALS" searchText="why?" answers="because;i don't know;what?" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="EQUALS" searchText="really" answers="really;yes;of course" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="EQUALS" searchText="thanks" answers=":);:D;:*" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="EQUALS" searchText="thank you" answers=":);:D;:*" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="STARTS_WITH" searchText="how are you" answers="fine;good;busy" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="STARTS_WITH" searchText="do you know" answers="nope;no sorry;nope, i don't" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="STARTS_WITH" searchText="where can i" answers="i don't know;no clue;ask someone else :P" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="STARTS_WITH" searchText="can i ask you" answers="yes;what?;tell me" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="CONTAINS" searchText="server;ha;problem" answers="it's good;i don't know;i don't think so..." />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="CONTAINS" searchText="server;ha;bug" answers="it's good;i don't know;i don't think so..." />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="CONTAINS" searchText="is th;server;good" answers="it's good :D;i like it :P;yes it is :)" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="CONTAINS" searchText="where;you;go;?" answers="i look for something;checking stuff;looking for curius people :P" />
|
||||
<fakePlayerChat fpcName="Evi" searchMethod="CONTAINS" searchText="are;you;kidding" answers="^^;:D;:P" />
|
||||
</list>
|
37
L2J_Mobius_10.3_MasterClass/dist/game/data/FakePlayerVisualData.xml
vendored
Normal file
37
L2J_Mobius_10.3_MasterClass/dist/game/data/FakePlayerVisualData.xml
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Values that can be set:
|
||||
int classId, int hair, int hairColor, int face, int nameColor, int titleColor, int equipRHand, int equipLHand, int equipHead,
|
||||
int equipGloves, int equipChest, int equipLegs, int equipFeet, int equipCloak, int equipHair, int equipHair2, int agathionId,
|
||||
int weaponEnchantLevel, int armorEnchantLevel, boolean fishing, int baitLocationX, int baitLocationY, int baitLocationZ,
|
||||
int recommends, int nobleLevel, boolean hero, int clanId, int pledgeStatus -->
|
||||
<!--
|
||||
################################################ Hero Weapons #################################################
|
||||
Bow(37874) Crossbow(37875) Dagger(37868) Dual Blunt Weapon(37881) Dual Dagger(37880) Dual Sword(37879)
|
||||
Fist(37872) OneHand Blunt(37871) OneHand Magic Blunt(37877) One Hand Magic Sword(37876) One Hand Sword(37869)
|
||||
Spear(37873) Two-handed Magic Blunt Weapon(37878) Two-handed Sword(37870) Shield(37870) Sigil(37223)
|
||||
###############################################################################################################
|
||||
-->
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/FakePlayerVisualData.xsd">
|
||||
<!-- Non-Combat -->
|
||||
<fakePlayer npcId="80000" classId="188" hair="1" hairColor="1" face="0" equipRHand="17294" equipHead="37215" equipGloves="37216" equipChest="37213" equipLegs="37214" equipFeet="37217" equipCloak="40200" />
|
||||
|
||||
<!-- Combat -->
|
||||
<!-- Sigel Phoenix Knight -->
|
||||
<fakePlayer npcId="81001" classId="148" hair="0" hairColor="0" face="0" equipRHand="37869" equipLHand="37212" equipHead="37209" equipGloves="37210" equipChest="37207" equipLegs="37208" equipFeet="37211" equipCloak="30310" />
|
||||
<!-- Tyrr Titan -->
|
||||
<fakePlayer npcId="81002" classId="154" hair="0" hairColor="0" face="0" equipRHand="37870" equipHead="37215" equipGloves="37216" equipChest="37213" equipLegs="37214" equipFeet="37217" equipCloak="30311" />
|
||||
<!-- Othell Fortune Seeker -->
|
||||
<fakePlayer npcId="81003" classId="161" hair="0" hairColor="0" face="0" equipRHand="37880" equipHead="37215" equipGloves="37216" equipChest="37213" equipLegs="37214" equipFeet="37217" equipCloak="30312" />
|
||||
<!-- Yul Trickster -->
|
||||
<fakePlayer npcId="81004" classId="165" hair="0" hairColor="0" face="0" equipRHand="37875" equipHead="37215" equipGloves="37216" equipChest="37213" equipLegs="37214" equipFeet="37217" equipCloak="30313" />
|
||||
<!-- Feoh Archmage -->
|
||||
<fakePlayer npcId="81005" classId="166" hair="0" hairColor="0" face="0" equipRHand="37878" equipHead="37220" equipGloves="37221" equipChest="37218" equipLegs="37219" equipFeet="37222" equipCloak="30314" />
|
||||
<!-- Iss Spectral Dancer -->
|
||||
<fakePlayer npcId="81006" classId="173" hair="0" hairColor="0" face="0" equipRHand="37879" equipHead="37209" equipGloves="37210" equipChest="37207" equipLegs="37208" equipFeet="37211" equipCloak="30316" />
|
||||
<!-- Aeore Eva's Saint -->
|
||||
<fakePlayer npcId="81007" classId="180" hair="0" hairColor="0" face="0" equipRHand="37876" equipLHand="37223" equipHead="37220" equipGloves="37221" equipChest="37218" equipLegs="37219" equipFeet="37222" equipCloak="30317" />
|
||||
<!-- Eviscerator -->
|
||||
<fakePlayer npcId="81008" classId="188" hair="0" hairColor="0" face="0" equipRHand="37872" equipHead="37215" equipGloves="37216" equipChest="37213" equipLegs="37214" equipFeet="37217" equipCloak="40200" />
|
||||
<!-- Sayha's Seer -->
|
||||
<fakePlayer npcId="81009" classId="189" hair="0" hairColor="0" face="0" equipRHand="37878" equipHead="37220" equipGloves="37221" equipChest="37218" equipLegs="37219" equipFeet="37222" equipCloak="40201" />
|
||||
</list>
|
4
L2J_Mobius_10.3_MasterClass/dist/game/data/FenceData.xml
vendored
Normal file
4
L2J_Mobius_10.3_MasterClass/dist/game/data/FenceData.xml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/FenceData.xsd">
|
||||
<fence name="demo" x="-114552" y="-251256" z="-2992" width="100" length="100" height="3" state="CLOSED" />
|
||||
</list>
|
75
L2J_Mobius_10.3_MasterClass/dist/game/data/Fishing.xml
vendored
Normal file
75
L2J_Mobius_10.3_MasterClass/dist/game/data/Fishing.xml
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./xsd/Fishing.xsd">
|
||||
<baitDistance min="90" max="250" />
|
||||
<xpRate min="1" max="1" /> <!-- XP modification rate -->
|
||||
<spRate min="1" max="1" /> <!-- SP modification rate -->
|
||||
<baits>
|
||||
<bait itemId="46737" minPlayerLevel="95" chance="40" timeMin="105000" waitMin="15000"> <!-- Practice Bait -->
|
||||
<catch itemId="46736" chance="70" multiplier="1" /> <!-- Practice Fish -->
|
||||
</bait>
|
||||
<bait itemId="47547" minPlayerLevel="85" chance="40" timeMin="105000" waitMin="15000"> <!-- Bait -->
|
||||
<catch itemId="47550" chance="70" multiplier="1" /> <!-- Ugly Fish -->
|
||||
<catch itemId="47551" chance="25" multiplier="1" /> <!-- Nimble Fish -->
|
||||
<catch itemId="47552" chance="3" multiplier="1" /> <!-- Powerful Fish -->
|
||||
<catch itemId="47553" chance="2" multiplier="1" /> <!-- Blueish Box -->
|
||||
</bait>
|
||||
<bait itemId="48537" minPlayerLevel="85" chance="40" timeMin="105000" waitMin="15000"> <!-- Bait -->
|
||||
<catch itemId="47550" chance="70" multiplier="1" /> <!-- Ugly Fish -->
|
||||
<catch itemId="47551" chance="25" multiplier="1" /> <!-- Nimble Fish -->
|
||||
<catch itemId="47552" chance="3" multiplier="1" /> <!-- Powerful Fish -->
|
||||
<catch itemId="47553" chance="2" multiplier="1" /> <!-- Blueish Box -->
|
||||
</bait>
|
||||
<bait itemId="47548" minPlayerLevel="99" chance="40" timeMin="105000" waitMin="15000"> <!-- Bait(R99) -->
|
||||
<catch itemId="47550" chance="70" multiplier="1476" /> <!-- Ugly Fish -->
|
||||
<catch itemId="47551" chance="25" multiplier="1804" /> <!-- Nimble Fish -->
|
||||
<catch itemId="47552" chance="3" multiplier="1968" /> <!-- Powerful Fish -->
|
||||
<catch itemId="47554" chance="2" multiplier="1" /> <!-- Reddish Box -->
|
||||
</bait>
|
||||
<bait itemId="48538" minPlayerLevel="102" chance="40" timeMin="105000" waitMin="15000"> <!-- Bait(R102) -->
|
||||
<catch itemId="47550" chance="70" multiplier="1476" /> <!-- Ugly Fish -->
|
||||
<catch itemId="47551" chance="25" multiplier="1804" /> <!-- Nimble Fish -->
|
||||
<catch itemId="47552" chance="3" multiplier="1968" /> <!-- Powerful Fish -->
|
||||
<catch itemId="47554" chance="2" multiplier="1" /> <!-- Reddish Box -->
|
||||
</bait>
|
||||
<bait itemId="48539" minPlayerLevel="105" chance="40" timeMin="105000" waitMin="15000"> <!-- Bait(R105) -->
|
||||
<catch itemId="47550" chance="70" multiplier="1476" /> <!-- Ugly Fish -->
|
||||
<catch itemId="47551" chance="25" multiplier="1804" /> <!-- Nimble Fish -->
|
||||
<catch itemId="47552" chance="3" multiplier="1968" /> <!-- Powerful Fish -->
|
||||
<catch itemId="47554" chance="2" multiplier="1" /> <!-- Reddish Box -->
|
||||
</bait>
|
||||
<bait itemId="80445" minPlayerLevel="108" chance="40" timeMin="105000" waitMin="15000"> <!-- Bait(R108) -->
|
||||
<catch itemId="47550" chance="70" multiplier="1476" /> <!-- Ugly Fish -->
|
||||
<catch itemId="47551" chance="25" multiplier="1804" /> <!-- Nimble Fish -->
|
||||
<catch itemId="47552" chance="3" multiplier="1968" /> <!-- Powerful Fish -->
|
||||
<catch itemId="47554" chance="2" multiplier="1" /> <!-- Reddish Box -->
|
||||
</bait>
|
||||
<bait itemId="47549" minPlayerLevel="85" chance="40" timeMin="105000" waitMin="15000"> <!-- PA Bait -->
|
||||
<catch itemId="47550" chance="70" multiplier="1" /> <!-- Ugly Fish -->
|
||||
<catch itemId="47551" chance="25" multiplier="1" /> <!-- Nimble Fish -->
|
||||
<catch itemId="47552" chance="3" multiplier="1" /> <!-- Powerful Fish -->
|
||||
<catch itemId="47555" chance="2" multiplier="1" /> <!-- Purplish Box -->
|
||||
</bait>
|
||||
<bait itemId="81146" minPlayerLevel="99" chance="40" timeMin="105000" waitMin="15000"> <!-- Santiago's Bait -->
|
||||
<catch itemId="47550" chance="70" multiplier="1476" /> <!-- Ugly Fish -->
|
||||
<catch itemId="47551" chance="25" multiplier="1804" /> <!-- Nimble Fish -->
|
||||
<catch itemId="47552" chance="3" multiplier="1968" /> <!-- Powerful Fish -->
|
||||
<catch itemId="81144" chance="2" multiplier="1" /> <!-- Santiago's Star Energy Pack -->
|
||||
</bait>
|
||||
</baits>
|
||||
<rods>
|
||||
<rod itemId="45492" /> <!-- Normal Fishing Rod - 30-day -->
|
||||
<rod itemId="45494" /> <!-- Sturdy Fishing Rod -->
|
||||
<rod itemId="46738" /> <!-- Practice Fishing Rod -->
|
||||
<rod itemId="46740" /> <!-- Reward Fishing Rod - 7-day -->
|
||||
<rod itemId="46286" reduceFishingTime="100000" xpMultiplier="2.5" spMultiplier="2.5" /> <!-- Christmas Fishing Rod -->
|
||||
<rod itemId="27632" reduceFishingTime="95000" xpMultiplier="1.5" spMultiplier="1.5" /> <!-- Fancy Fishing Rod -->
|
||||
<rod itemId="27633" reduceFishingTime="95000" xpMultiplier="1.5" spMultiplier="1.5" /> <!-- Fancy Fishing Rod - 1-day -->
|
||||
<rod itemId="27635" reduceFishingTime="95000" xpMultiplier="1.5" spMultiplier="1.5" /> <!-- Fancy Fishing Rod - 7-day -->
|
||||
<rod itemId="27637" reduceFishingTime="95000" xpMultiplier="1.5" spMultiplier="1.5" /> <!-- Fancy Fishing Rod - 30-day -->
|
||||
<rod itemId="47557" reduceFishingTime="10000" /> <!-- Master Fishing Rod - Stage 1 -->
|
||||
<rod itemId="47558" reduceFishingTime="15000" /> <!-- Master Fishing Rod - Stage 2 -->
|
||||
<rod itemId="47559" reduceFishingTime="20000" /> <!-- Master Fishing Rod - Stage 3 -->
|
||||
<rod itemId="47560" reduceFishingTime="25000" /> <!-- Master Fishing Rod - Stage 4 -->
|
||||
<rod itemId="47561" reduceFishingTime="30000" /> <!-- Master Fishing Rod - Stage 5 -->
|
||||
</rods>
|
||||
</list>
|
100
L2J_Mobius_10.3_MasterClass/dist/game/data/HomunculusCreationData.xml
vendored
Normal file
100
L2J_Mobius_10.3_MasterClass/dist/game/data/HomunculusCreationData.xml
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/HomunculusCreationData.xsd">
|
||||
<!-- https://l2central.info/main/articles/247.html?lang=ru
|
||||
=================================================================
|
||||
|
||||
=================================================================
|
||||
For change items or params in client for Cradle of Time - need to edit HomunCreate.dat:
|
||||
=================================================================
|
||||
homun_create_begin cost_base=1000000
|
||||
hp_count=100 hp_volume=10000
|
||||
sp_count=10 sp_volume=5000000000
|
||||
vp_count=5 vp_volume=35000
|
||||
cost_time=86400 homun_create_end
|
||||
=================================================================
|
||||
For adding new Coupon items in Cradle of Life edit HomunList.dat:
|
||||
=================================================================
|
||||
homun_list_begin itemid=81815 amount=1 fee=2000000 grade=0 event=0 homun_list_end
|
||||
=================================================================
|
||||
IF CHANCES IN <CHANCE> != 100, HOMUNCULUS CAN BE NOT CREATED!
|
||||
-->
|
||||
<homunculusCreation slotId="0" isEnabled="true" grade="0" event="false">
|
||||
<itemFees>
|
||||
<item id="57" count="1000000" />
|
||||
</itemFees>
|
||||
<hpFee count="100" byUse="10000" />
|
||||
<spFee count="10" byUse="5000000000" />
|
||||
<vpFee count="5" byUse="35000" />
|
||||
<time count="86400000" /> <!-- Client take time in minutes, server need to be in milliseconds ( * 1000 ) -->
|
||||
<chance>
|
||||
<homunculus id="1" creationChance="7.00" />
|
||||
<homunculus id="2" creationChance="2.99" />
|
||||
<homunculus id="3" creationChance="0.01" />
|
||||
<homunculus id="4" creationChance="7.00" />
|
||||
<homunculus id="5" creationChance="2.99" />
|
||||
<homunculus id="6" creationChance="0.01" />
|
||||
<homunculus id="7" creationChance="7.00" />
|
||||
<homunculus id="8" creationChance="2.99" />
|
||||
<homunculus id="9" creationChance="0.01" />
|
||||
<homunculus id="10" creationChance="7.00" />
|
||||
<homunculus id="11" creationChance="2.99" />
|
||||
<homunculus id="12" creationChance="0.01" />
|
||||
<homunculus id="13" creationChance="7.00" />
|
||||
<homunculus id="14" creationChance="2.99" />
|
||||
<homunculus id="15" creationChance="0.01" />
|
||||
<homunculus id="16" creationChance="7.00" />
|
||||
<homunculus id="17" creationChance="2.99" />
|
||||
<homunculus id="18" creationChance="0.01" />
|
||||
<homunculus id="19" creationChance="7.00" />
|
||||
<homunculus id="20" creationChance="2.99" />
|
||||
<homunculus id="21" creationChance="0.01" />
|
||||
<homunculus id="22" creationChance="7.00" />
|
||||
<homunculus id="23" creationChance="2.99" />
|
||||
<homunculus id="24" creationChance="0.01" />
|
||||
<homunculus id="25" creationChance="7.00" />
|
||||
<homunculus id="26" creationChance="2.99" />
|
||||
<homunculus id="27" creationChance="0.01" />
|
||||
<homunculus id="28" creationChance="7.00" />
|
||||
<homunculus id="29" creationChance="2.99" />
|
||||
<homunculus id="30" creationChance="0.01" />
|
||||
</chance>
|
||||
</homunculusCreation>
|
||||
<homunculusCreation slotId="1" isEnabled="true" grade="0" event="false">
|
||||
<itemFees>
|
||||
<item id="81815" count="1" />
|
||||
<item id="57" count="2000000" />
|
||||
</itemFees>
|
||||
<chance>
|
||||
<homunculus id="1" creationChance="7.00" />
|
||||
<homunculus id="2" creationChance="2.99" />
|
||||
<homunculus id="3" creationChance="0.01" />
|
||||
<homunculus id="4" creationChance="7.00" />
|
||||
<homunculus id="5" creationChance="2.99" />
|
||||
<homunculus id="6" creationChance="0.01" />
|
||||
<homunculus id="7" creationChance="7.00" />
|
||||
<homunculus id="8" creationChance="2.99" />
|
||||
<homunculus id="9" creationChance="0.01" />
|
||||
<homunculus id="10" creationChance="7.00" />
|
||||
<homunculus id="11" creationChance="2.99" />
|
||||
<homunculus id="12" creationChance="0.01" />
|
||||
<homunculus id="13" creationChance="7.00" />
|
||||
<homunculus id="14" creationChance="2.99" />
|
||||
<homunculus id="15" creationChance="0.01" />
|
||||
<homunculus id="16" creationChance="7.00" />
|
||||
<homunculus id="17" creationChance="2.99" />
|
||||
<homunculus id="18" creationChance="0.01" />
|
||||
<homunculus id="19" creationChance="7.00" />
|
||||
<homunculus id="20" creationChance="2.99" />
|
||||
<homunculus id="21" creationChance="0.01" />
|
||||
<homunculus id="22" creationChance="7.00" />
|
||||
<homunculus id="23" creationChance="2.99" />
|
||||
<homunculus id="24" creationChance="0.01" />
|
||||
<homunculus id="25" creationChance="7.00" />
|
||||
<homunculus id="26" creationChance="2.99" />
|
||||
<homunculus id="27" creationChance="0.01" />
|
||||
<homunculus id="28" creationChance="7.00" />
|
||||
<homunculus id="29" creationChance="2.99" />
|
||||
<homunculus id="30" creationChance="0.01" />
|
||||
</chance>
|
||||
</homunculusCreation>
|
||||
</list>
|
33
L2J_Mobius_10.3_MasterClass/dist/game/data/HomunculusData.xml
vendored
Normal file
33
L2J_Mobius_10.3_MasterClass/dist/game/data/HomunculusData.xml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/HomunculusData.xsd">
|
||||
<homunculus id="1" type="0" basicSkillId="32999" basicSkillLevel="1" skillId1="33004" skillId2="33009" skillId3="33014" skillId4="33019" skillId5="33024" hpLevel1="816" atkLevel1="782" defLevel1="802" expToLevel2="35000" hpLevel2="979" atkLevel2="939" defLevel2="962" expToLevel3="87500" hpLevel3="1174" atkLevel3="1126" defLevel3="1154" expToLevel4="192500" hpLevel4="1410" atkLevel4="1351" defLevel4="1385" expToLevel5="350000" hpLevel5="1691" atkLevel5="1621" defLevel5="1662" expToLevel6="560000" critRate="30" /> <!-- Basic Juju -->
|
||||
<homunculus id="2" type="1" basicSkillId="32999" basicSkillLevel="2" skillId1="33029" skillId2="33034" skillId3="33039" skillId4="33044" skillId5="33049" hpLevel1="979" atkLevel1="938" defLevel1="962" expToLevel2="40000" hpLevel2="1175" atkLevel2="1126" defLevel2="1154" expToLevel3="100000" hpLevel3="1409" atkLevel3="1350" defLevel3="1385" expToLevel4="220000" hpLevel4="1691" atkLevel4="1621" defLevel4="1662" expToLevel5="400000" hpLevel5="2029" atkLevel5="1945" defLevel5="1994" expToLevel6="640000" critRate="30" /> <!-- Water Juju -->
|
||||
<homunculus id="3" type="2" basicSkillId="32999" basicSkillLevel="3" skillId1="33054" skillId2="33059" skillId3="33064" skillId4="33069" skillId5="33074" hpLevel1="1174" atkLevel1="1125" defLevel1="1154" expToLevel2="45000" hpLevel2="1410" atkLevel2="1351" defLevel2="1384" expToLevel3="112500" hpLevel3="1690" atkLevel3="1620" defLevel3="1662" expToLevel4="247500" hpLevel4="2029" atkLevel4="1945" defLevel4="1994" expToLevel5="450000" hpLevel5="2434" atkLevel5="2334" defLevel5="2392" expToLevel6="720000" critRate="30" /> <!-- Luminous Juju -->
|
||||
<homunculus id="4" type="0" basicSkillId="33000" basicSkillLevel="1" skillId1="33005" skillId2="33010" skillId3="33015" skillId4="33020" skillId5="33025" hpLevel1="816" atkLevel1="1188" defLevel1="990" expToLevel2="35000" hpLevel2="979" atkLevel2="1426" defLevel2="1188" expToLevel3="87500" hpLevel3="1174" atkLevel3="1710" defLevel3="1425" expToLevel4="192500" hpLevel4="1410" atkLevel4="2052" defLevel4="1710" expToLevel5="350000" hpLevel5="1691" atkLevel5="2462" defLevel5="2052" expToLevel6="560000" critRate="15" /> <!-- Basic Tana -->
|
||||
<homunculus id="5" type="1" basicSkillId="33000" basicSkillLevel="2" skillId1="33030" skillId2="33035" skillId3="33040" skillId4="33045" skillId5="33050" hpLevel1="979" atkLevel1="1425" defLevel1="1188" expToLevel2="40000" hpLevel2="1175" atkLevel2="1710" defLevel2="1425" expToLevel3="100000" hpLevel3="1409" atkLevel3="2052" defLevel3="1710" expToLevel4="220000" hpLevel4="1691" atkLevel4="2462" defLevel4="2052" expToLevel5="400000" hpLevel5="2029" atkLevel5="2954" defLevel5="2462" expToLevel6="640000" critRate="15" /> <!-- Water Tana -->
|
||||
<homunculus id="6" type="2" basicSkillId="33000" basicSkillLevel="3" skillId1="33055" skillId2="33060" skillId3="33065" skillId4="33070" skillId5="33075" hpLevel1="1174" atkLevel1="1710" defLevel1="1425" expToLevel2="45000" hpLevel2="1410" atkLevel2="2052" defLevel2="1710" expToLevel3="112500" hpLevel3="1690" atkLevel3="2462" defLevel3="2052" expToLevel4="247500" hpLevel4="2029" atkLevel4="2954" defLevel4="2462" expToLevel5="450000" hpLevel5="2434" atkLevel5="3544" defLevel5="2954" expToLevel6="720000" critRate="15" /> <!-- Luminous Tana -->
|
||||
<homunculus id="7" type="0" basicSkillId="33001" basicSkillLevel="1" skillId1="33006" skillId2="33011" skillId3="33016" skillId4="33021" skillId5="33026" hpLevel1="1020" atkLevel1="792" defLevel1="1188" expToLevel2="35000" hpLevel2="1224" atkLevel2="950" defLevel2="1426" expToLevel3="87500" hpLevel3="1468" atkLevel3="1140" defLevel3="1710" expToLevel4="192500" hpLevel4="1762" atkLevel4="1368" defLevel4="2052" expToLevel5="350000" hpLevel5="2114" atkLevel5="1642" defLevel5="2462" expToLevel6="560000" critRate="15" /> <!-- Basic Pallo -->
|
||||
<homunculus id="8" type="1" basicSkillId="33001" basicSkillLevel="2" skillId1="33031" skillId2="33036" skillId3="33041" skillId4="33046" skillId5="33051" hpLevel1="1224" atkLevel1="950" defLevel1="1425" expToLevel2="40000" hpLevel2="1468" atkLevel2="1140" defLevel2="1710" expToLevel3="100000" hpLevel3="1761" atkLevel3="1368" defLevel3="2052" expToLevel4="220000" hpLevel4="2114" atkLevel4="1641" defLevel4="2462" expToLevel5="400000" hpLevel5="2536" atkLevel5="1969" defLevel5="2954" expToLevel6="640000" critRate="15" /> <!-- Water Pallo -->
|
||||
<homunculus id="9" type="2" basicSkillId="33001" basicSkillLevel="3" skillId1="33056" skillId2="33061" skillId3="33066" skillId4="33071" skillId5="33076" hpLevel1="1468" atkLevel1="1140" defLevel1="1710" expToLevel2="45000" hpLevel2="1761" atkLevel2="1368" defLevel2="2052" expToLevel3="112500" hpLevel3="2113" atkLevel3="1641" defLevel3="2462" expToLevel4="247500" hpLevel4="2536" atkLevel4="1969" defLevel4="2954" expToLevel5="450000" hpLevel5="3043" atkLevel5="2362" defLevel5="3544" expToLevel6="720000" critRate="15" /> <!-- Luminous Pallo -->
|
||||
<homunculus id="10" type="0" basicSkillId="33002" basicSkillLevel="1" skillId1="33007" skillId2="33012" skillId3="33017" skillId4="33022" skillId5="33027" hpLevel1="1224" atkLevel1="990" defLevel1="792" expToLevel2="35000" hpLevel2="1469" atkLevel2="1188" defLevel2="950" expToLevel3="87500" hpLevel3="1762" atkLevel3="1425" defLevel3="1140" expToLevel4="192500" hpLevel4="2114" atkLevel4="1710" defLevel4="1368" expToLevel5="350000" hpLevel5="2537" atkLevel5="2052" defLevel5="1642" expToLevel6="560000" critRate="15" /> <!-- Basic Ayri -->
|
||||
<homunculus id="11" type="1" basicSkillId="33002" basicSkillLevel="2" skillId1="33032" skillId2="33037" skillId3="33042" skillId4="33047" skillId5="33052" hpLevel1="1468" atkLevel1="1188" defLevel1="950" expToLevel2="40000" hpLevel2="1762" atkLevel2="1425" defLevel2="1140" expToLevel3="100000" hpLevel3="2113" atkLevel3="1710" defLevel3="1368" expToLevel4="220000" hpLevel4="2537" atkLevel4="2052" defLevel4="1641" expToLevel5="400000" hpLevel5="3044" atkLevel5="2462" defLevel5="1969" expToLevel6="640000" critRate="15" /> <!-- Water Ayri -->
|
||||
<homunculus id="12" type="2" basicSkillId="33002" basicSkillLevel="3" skillId1="33057" skillId2="33062" skillId3="33067" skillId4="33072" skillId5="33077" hpLevel1="1761" atkLevel1="1425" defLevel1="1140" expToLevel2="45000" hpLevel2="2114" atkLevel2="1710" defLevel2="1368" expToLevel3="112500" hpLevel3="2535" atkLevel3="2052" defLevel3="1641" expToLevel4="247500" hpLevel4="3044" atkLevel4="2462" defLevel4="1969" expToLevel5="450000" hpLevel5="3652" atkLevel5="2954" defLevel5="2362" expToLevel6="720000" critRate="15" /> <!-- Luminous Ayri -->
|
||||
<homunculus id="13" type="0" basicSkillId="33003" basicSkillLevel="1" skillId1="33008" skillId2="33013" skillId3="33018" skillId4="33023" skillId5="33028" hpLevel1="816" atkLevel1="1188" defLevel1="990" expToLevel2="35000" hpLevel2="979" atkLevel2="1426" defLevel2="1188" expToLevel3="87500" hpLevel3="1174" atkLevel3="1710" defLevel3="1425" expToLevel4="192500" hpLevel4="1410" atkLevel4="2052" defLevel4="1710" expToLevel5="350000" hpLevel5="1691" atkLevel5="2462" defLevel5="2052" expToLevel6="560000" critRate="15" /> <!-- Basic Churing -->
|
||||
<homunculus id="14" type="1" basicSkillId="33003" basicSkillLevel="2" skillId1="33033" skillId2="33038" skillId3="33043" skillId4="33048" skillId5="33053" hpLevel1="979" atkLevel1="1425" defLevel1="1188" expToLevel2="40000" hpLevel2="1175" atkLevel2="1710" defLevel2="1425" expToLevel3="100000" hpLevel3="1409" atkLevel3="2052" defLevel3="1710" expToLevel4="220000" hpLevel4="1691" atkLevel4="2462" defLevel4="2052" expToLevel5="400000" hpLevel5="2029" atkLevel5="2954" defLevel5="2462" expToLevel6="640000" critRate="15" /> <!-- Water Churing -->
|
||||
<homunculus id="15" type="2" basicSkillId="33003" basicSkillLevel="3" skillId1="33058" skillId2="33063" skillId3="33068" skillId4="33073" skillId5="33078" hpLevel1="1174" atkLevel1="1710" defLevel1="1425" expToLevel2="45000" hpLevel2="1410" atkLevel2="2052" defLevel2="1710" expToLevel3="112500" hpLevel3="1690" atkLevel3="2462" defLevel3="2052" expToLevel4="247500" hpLevel4="2029" atkLevel4="2954" defLevel4="2462" expToLevel5="450000" hpLevel5="2434" atkLevel5="3544" defLevel5="2954" expToLevel6="720000" critRate="15" /> <!-- Luminous Churing -->
|
||||
<homunculus id="16" type="0" basicSkillId="33930" basicSkillLevel="1" skillId1="33935" skillId2="33940" skillId3="33945" skillId4="33950" skillId5="33955" hpLevel1="816" atkLevel1="1188" defLevel1="990" expToLevel2="35000" hpLevel2="979" atkLevel2="1426" defLevel2="1188" expToLevel3="87500" hpLevel3="1174" atkLevel3="1710" defLevel3="1425" expToLevel4="192500" hpLevel4="1410" atkLevel4="2052" defLevel4="1710" expToLevel5="350000" hpLevel5="1691" atkLevel5="2462" defLevel5="2052" expToLevel6="560000" critRate="30" /> <!-- Basic Cow -->
|
||||
<homunculus id="17" type="1" basicSkillId="33930" basicSkillLevel="2" skillId1="33960" skillId2="33965" skillId3="33970" skillId4="33975" skillId5="33980" hpLevel1="979" atkLevel1="1425" defLevel1="1188" expToLevel2="40000" hpLevel2="1175" atkLevel2="1710" defLevel2="1425" expToLevel3="100000" hpLevel3="1409" atkLevel3="2052" defLevel3="1710" expToLevel4="220000" hpLevel4="1691" atkLevel4="2462" defLevel4="2052" expToLevel5="400000" hpLevel5="2029" atkLevel5="2954" defLevel5="2462" expToLevel6="640000" critRate="30" /> <!-- Earth Cow -->
|
||||
<homunculus id="18" type="2" basicSkillId="33930" basicSkillLevel="3" skillId1="33985" skillId2="33990" skillId3="33995" skillId4="34000" skillId5="34005" hpLevel1="1174" atkLevel1="1710" defLevel1="1425" expToLevel2="45000" hpLevel2="1410" atkLevel2="2052" defLevel2="1710" expToLevel3="112500" hpLevel3="1690" atkLevel3="2462" defLevel3="2052" expToLevel4="247500" hpLevel4="2029" atkLevel4="2954" defLevel4="2462" expToLevel5="450000" hpLevel5="2434" atkLevel5="3544" defLevel5="2954" expToLevel6="720000" critRate="30" /> <!-- Luminous Cow -->
|
||||
<homunculus id="19" type="0" basicSkillId="33931" basicSkillLevel="1" skillId1="33936" skillId2="33941" skillId3="33946" skillId4="33951" skillId5="33956" hpLevel1="816" atkLevel1="1188" defLevel1="990" expToLevel2="35000" hpLevel2="979" atkLevel2="1426" defLevel2="1188" expToLevel3="87500" hpLevel3="1174" atkLevel3="1710" defLevel3="1425" expToLevel4="192500" hpLevel4="1410" atkLevel4="2052" defLevel4="1710" expToLevel5="350000" hpLevel5="1691" atkLevel5="2462" defLevel5="2052" expToLevel6="560000" critRate="15" /> <!-- Basic Chorong -->
|
||||
<homunculus id="20" type="1" basicSkillId="33931" basicSkillLevel="2" skillId1="33961" skillId2="33966" skillId3="33971" skillId4="33976" skillId5="33981" hpLevel1="979" atkLevel1="1425" defLevel1="1188" expToLevel2="40000" hpLevel2="1175" atkLevel2="1710" defLevel2="1425" expToLevel3="100000" hpLevel3="1409" atkLevel3="2052" defLevel3="1710" expToLevel4="220000" hpLevel4="1691" atkLevel4="2462" defLevel4="2052" expToLevel5="400000" hpLevel5="2029" atkLevel5="2954" defLevel5="2462" expToLevel6="640000" critRate="15" /> <!-- Earth Chorong -->
|
||||
<homunculus id="21" type="2" basicSkillId="33931" basicSkillLevel="3" skillId1="33986" skillId2="33991" skillId3="33996" skillId4="34001" skillId5="34006" hpLevel1="1174" atkLevel1="1710" defLevel1="1425" expToLevel2="45000" hpLevel2="1410" atkLevel2="2052" defLevel2="1710" expToLevel3="112500" hpLevel3="1690" atkLevel3="2462" defLevel3="2052" expToLevel4="247500" hpLevel4="2029" atkLevel4="2954" defLevel4="2462" expToLevel5="450000" hpLevel5="2434" atkLevel5="3544" defLevel5="2954" expToLevel6="720000" critRate="15" /> <!-- Luminous Chorong -->
|
||||
<homunculus id="22" type="0" basicSkillId="33932" basicSkillLevel="1" skillId1="33937" skillId2="33942" skillId3="33947" skillId4="33952" skillId5="33957" hpLevel1="816" atkLevel1="1188" defLevel1="990" expToLevel2="35000" hpLevel2="979" atkLevel2="1426" defLevel2="1188" expToLevel3="87500" hpLevel3="1174" atkLevel3="1710" defLevel3="1425" expToLevel4="192500" hpLevel4="1410" atkLevel4="2052" defLevel4="1710" expToLevel5="350000" hpLevel5="1691" atkLevel5="2462" defLevel5="2052" expToLevel6="560000" critRate="15" /> <!-- Basic Nymph -->
|
||||
<homunculus id="23" type="1" basicSkillId="33932" basicSkillLevel="2" skillId1="33962" skillId2="33967" skillId3="33972" skillId4="33977" skillId5="33982" hpLevel1="979" atkLevel1="1425" defLevel1="1188" expToLevel2="40000" hpLevel2="1175" atkLevel2="1710" defLevel2="1425" expToLevel3="100000" hpLevel3="1409" atkLevel3="2052" defLevel3="1710" expToLevel4="220000" hpLevel4="1691" atkLevel4="2462" defLevel4="2052" expToLevel5="400000" hpLevel5="2029" atkLevel5="2954" defLevel5="2462" expToLevel6="640000" critRate="15" /> <!-- Earth Nymph -->
|
||||
<homunculus id="24" type="2" basicSkillId="33932" basicSkillLevel="3" skillId1="33987" skillId2="33992" skillId3="33997" skillId4="34002" skillId5="34007" hpLevel1="1174" atkLevel1="1710" defLevel1="1425" expToLevel2="45000" hpLevel2="1410" atkLevel2="2052" defLevel2="1710" expToLevel3="112500" hpLevel3="1690" atkLevel3="2462" defLevel3="2052" expToLevel4="247500" hpLevel4="2029" atkLevel4="2954" defLevel4="2462" expToLevel5="450000" hpLevel5="2434" atkLevel5="3544" defLevel5="2954" expToLevel6="720000" critRate="15" /> <!-- Luminous Nymph -->
|
||||
<homunculus id="25" type="0" basicSkillId="33933" basicSkillLevel="1" skillId1="33938" skillId2="33943" skillId3="33948" skillId4="33953" skillId5="33958" hpLevel1="816" atkLevel1="1188" defLevel1="990" expToLevel2="35000" hpLevel2="979" atkLevel2="1426" defLevel2="1188" expToLevel3="87500" hpLevel3="1174" atkLevel3="1710" defLevel3="1425" expToLevel4="192500" hpLevel4="1410" atkLevel4="2052" defLevel4="1710" expToLevel5="350000" hpLevel5="1691" atkLevel5="2462" defLevel5="2052" expToLevel6="560000" critRate="15" /> <!-- Basic Oculus -->
|
||||
<homunculus id="26" type="1" basicSkillId="33933" basicSkillLevel="2" skillId1="33963" skillId2="33968" skillId3="33973" skillId4="33978" skillId5="33983" hpLevel1="979" atkLevel1="1425" defLevel1="1188" expToLevel2="40000" hpLevel2="1175" atkLevel2="1710" defLevel2="1425" expToLevel3="100000" hpLevel3="1409" atkLevel3="2052" defLevel3="1710" expToLevel4="220000" hpLevel4="1691" atkLevel4="2462" defLevel4="2052" expToLevel5="400000" hpLevel5="2029" atkLevel5="2954" defLevel5="2462" expToLevel6="640000" critRate="15" /> <!-- Earth Oculus -->
|
||||
<homunculus id="27" type="2" basicSkillId="33933" basicSkillLevel="3" skillId1="33988" skillId2="33993" skillId3="33998" skillId4="34003" skillId5="34008" hpLevel1="1174" atkLevel1="1710" defLevel1="1425" expToLevel2="45000" hpLevel2="1410" atkLevel2="2052" defLevel2="1710" expToLevel3="112500" hpLevel3="1690" atkLevel3="2462" defLevel3="2052" expToLevel4="247500" hpLevel4="2029" atkLevel4="2954" defLevel4="2462" expToLevel5="450000" hpLevel5="2434" atkLevel5="3544" defLevel5="2954" expToLevel6="720000" critRate="15" /> <!-- Luminous Oculus -->
|
||||
<homunculus id="28" type="0" basicSkillId="33934" basicSkillLevel="1" skillId1="33939" skillId2="33944" skillId3="33949" skillId4="33954" skillId5="33959" hpLevel1="816" atkLevel1="1188" defLevel1="990" expToLevel2="35000" hpLevel2="979" atkLevel2="1426" defLevel2="1188" expToLevel3="87500" hpLevel3="1174" atkLevel3="1710" defLevel3="1425" expToLevel4="192500" hpLevel4="1410" atkLevel4="2052" defLevel4="1710" expToLevel5="350000" hpLevel5="1691" atkLevel5="2462" defLevel5="2052" expToLevel6="560000" critRate="15" /> <!-- Basic Fofo -->
|
||||
<homunculus id="29" type="1" basicSkillId="33934" basicSkillLevel="2" skillId1="33964" skillId2="33969" skillId3="33974" skillId4="33979" skillId5="33984" hpLevel1="979" atkLevel1="1425" defLevel1="1188" expToLevel2="40000" hpLevel2="1175" atkLevel2="1710" defLevel2="1425" expToLevel3="100000" hpLevel3="1409" atkLevel3="2052" defLevel3="1710" expToLevel4="220000" hpLevel4="1691" atkLevel4="2462" defLevel4="2052" expToLevel5="400000" hpLevel5="2029" atkLevel5="2954" defLevel5="2462" expToLevel6="640000" critRate="15" /> <!-- Earth Fofo -->
|
||||
<homunculus id="30" type="2" basicSkillId="33934" basicSkillLevel="3" skillId1="33989" skillId2="33994" skillId3="33999" skillId4="34004" skillId5="34009" hpLevel1="1174" atkLevel1="1710" defLevel1="1425" expToLevel2="45000" hpLevel2="1410" atkLevel2="2052" defLevel2="1710" expToLevel3="112500" hpLevel3="1690" atkLevel3="2462" defLevel3="2052" expToLevel4="247500" hpLevel4="2029" atkLevel4="2954" defLevel4="2462" expToLevel5="450000" hpLevel5="2434" atkLevel5="3544" defLevel5="2954" expToLevel6="720000" critRate="15" /> <!-- Luminous Fofo -->
|
||||
</list>
|
150
L2J_Mobius_10.3_MasterClass/dist/game/data/HomunculusSlotData.xml
vendored
Normal file
150
L2J_Mobius_10.3_MasterClass/dist/game/data/HomunculusSlotData.xml
vendored
Normal file
@@ -0,0 +1,150 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/HomunculusSlotData.xsd">
|
||||
<!-- https://l2central.info/main/articles/247.html?lang=ru
|
||||
=================================================================
|
||||
Slot Cost
|
||||
=================================================================
|
||||
01 -
|
||||
02 -
|
||||
03 -
|
||||
04 0 090 000 000 Aden + Gemstone: R - 084 pcs.
|
||||
05 0 090 000 000 Aden + Gemstone: R - 084 pcs.
|
||||
06 0 090 000 000 Aden + Gemstone: R - 084 pcs.
|
||||
07 0 700 000 000 Aden + Gemstone: R - 250 pcs.
|
||||
08 0 700 000 000 Aden + Gemstone: R - 250 pcs.
|
||||
09 2 700 000 000 Aden + Gemstone: R - 250 pcs.
|
||||
10 Einhasad's Golden Coin - 180 pcs. + Gemstone: R - 165 pcs.
|
||||
11 Einhasad's Golden Coin - 180 pcs. + Gemstone: R - 165 pcs.
|
||||
12 Einhasad's Golden Coin - 180 pcs. + Gemstone: R - 165 pcs.
|
||||
13 Einhasad's Golden Coin - 360 pcs. + Gemstone: R - 330 pcs.
|
||||
14 Einhasad's Golden Coin - 360 pcs. + Gemstone: R - 330 pcs.
|
||||
15 Einhasad's Golden Coin - 360 pcs. + Gemstone: R - 330 pcs.
|
||||
16 Einhasad's Golden Coin - 750 pcs. + Gemstone: R - 420 pcs.
|
||||
17 Einhasad's Golden Coin - 750 pcs. + Gemstone: R - 420 pcs.
|
||||
18 Einhasad's Golden Coin - 750 pcs. + Gemstone: R - 420 pcs.
|
||||
=================================================================
|
||||
Slots after 09 is disabled on client side. For enable it, paste it in file - HomunSlot.dat
|
||||
homun_slot_begin slotid=4 costitems={{57;90000000};{19440;84}} homun_slot_end
|
||||
homun_slot_begin slotid=5 costitems={{57;90000000};{19440;84}} homun_slot_end
|
||||
homun_slot_begin slotid=6 costitems={{57;90000000};{19440;84}} homun_slot_end
|
||||
homun_slot_begin slotid=7 costitems={{57;2700000000};{19440;250}} homun_slot_end
|
||||
homun_slot_begin slotid=8 costitems={{57;2700000000};{19440;250}} homun_slot_end
|
||||
homun_slot_begin slotid=9 costitems={{57;2700000000};{19440;250}} homun_slot_end
|
||||
homun_slot_begin slotid=10 costitems={{48472;180};{19440;165}} homun_slot_end
|
||||
homun_slot_begin slotid=11 costitems={{48472;180};{19440;165}} homun_slot_end
|
||||
homun_slot_begin slotid=12 costitems={{48472;180};{19440;165}} homun_slot_end
|
||||
homun_slot_begin slotid=13 costitems={{48472;360};{19440;330}} homun_slot_end
|
||||
homun_slot_begin slotid=14 costitems={{48472;360};{19440;330}} homun_slot_end
|
||||
homun_slot_begin slotid=15 costitems={{48472;360};{19440;330}} homun_slot_end
|
||||
homun_slot_begin slotid=16 costitems={{48472;750};{19440;420}} homun_slot_end
|
||||
homun_slot_begin slotid=17 costitems={{48472;750};{19440;420}} homun_slot_end
|
||||
homun_slot_begin slotid=18 costitems={{48472;750};{19440;420}} homun_slot_end
|
||||
-->
|
||||
<homunculusSlot slotId="1" isEnabled="True">
|
||||
<fee>
|
||||
<item id="0" count="0" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="2" isEnabled="True">
|
||||
<fee>
|
||||
<item id="0" count="0" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="3" isEnabled="True">
|
||||
<fee>
|
||||
<item id="0" count="0" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="4" isEnabled="True">
|
||||
<fee>
|
||||
<item id="57" count="90000000" />
|
||||
<item id="19440" count="84" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="5" isEnabled="True">
|
||||
<fee>
|
||||
<item id="57" count="90000000" />
|
||||
<item id="19440" count="84" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="6" isEnabled="True">
|
||||
<fee>
|
||||
<item id="57" count="90000000" />
|
||||
<item id="19440" count="84" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="7" isEnabled="True">
|
||||
<fee>
|
||||
<item id="57" count="2700000000" />
|
||||
<item id="19440" count="250" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="8" isEnabled="True">
|
||||
<fee>
|
||||
<item id="57" count="2700000000" />
|
||||
<item id="19440" count="250" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="9" isEnabled="True">
|
||||
<fee>
|
||||
<item id="57" count="2700000000" />
|
||||
<item id="19440" count="250" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<!--
|
||||
<homunculusSlot slotId="10" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="165" />
|
||||
<item id="19440" count="250" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="11" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="165" />
|
||||
<item id="19440" count="250" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="12" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="165" />
|
||||
<item id="19440" count="250" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="13" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="360" />
|
||||
<item id="19440" count="330" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="14" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="360" />
|
||||
<item id="19440" count="330" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="15" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="360" />
|
||||
<item id="19440" count="330" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="16" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="750" />
|
||||
<item id="19440" count="420" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="17" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="750" />
|
||||
<item id="19440" count="420" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
<homunculusSlot slotId="18" isEnabled="False">
|
||||
<fee>
|
||||
<item id="48472" count="750" />
|
||||
<item id="19440" count="420" />
|
||||
</fee>
|
||||
</homunculusSlot>
|
||||
-->
|
||||
</list>
|
328
L2J_Mobius_10.3_MasterClass/dist/game/data/InstanceNames.xml
vendored
Normal file
328
L2J_Mobius_10.3_MasterClass/dist/game/data/InstanceNames.xml
vendored
Normal file
@@ -0,0 +1,328 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/InstanceNames.xsd">
|
||||
<instance id="1" name="Party Duel Zone" />
|
||||
<instance id="2" name="Dark Square" />
|
||||
<instance id="3" name="Demon Prince's Tower of Infinity" />
|
||||
<instance id="4" name="Ranku's Tower of Infinity" />
|
||||
<instance id="5" name="Tully's Workshop (1st Floor)" />
|
||||
<instance id="6" name="Tully's Workshop (3rd Floor)" />
|
||||
<instance id="7" name="Tully's Workshop (5th Floor)" />
|
||||
<instance id="8" name="Tully's Workshop (7th Floor)" />
|
||||
<instance id="9" name="Dark Cloud Mansion" />
|
||||
<instance id="10" name="Crystal Cave" />
|
||||
<instance id="11" name="Nornil's Garden" />
|
||||
<instance id="12" name="Nornil's Garden (Quest)" />
|
||||
<instance id="13" name="Castle Dungeon" />
|
||||
<instance id="14" name="Castle Dungeon" />
|
||||
<instance id="15" name="Castle Dungeon" />
|
||||
<instance id="16" name="Castle Dungeon" />
|
||||
<instance id="17" name="Castle Dungeon" />
|
||||
<instance id="18" name="Castle Dungeon" />
|
||||
<instance id="19" name="Castle Dungeon" />
|
||||
<instance id="20" name="Castle Dungeon" />
|
||||
<instance id="21" name="Castle Dungeon" />
|
||||
<instance id="22" name="Monster Dungeon" />
|
||||
<instance id="23" name="Monster Dungeon" />
|
||||
<instance id="24" name="Monster Dungeon" />
|
||||
<instance id="25" name="Monster Dungeon" />
|
||||
<instance id="26" name="Monster Dungeon" />
|
||||
<instance id="27" name="Monster Dungeon" />
|
||||
<instance id="28" name="Monster Dungeon" />
|
||||
<instance id="29" name="Monster Dungeon" />
|
||||
<instance id="30" name="Monster Dungeon" />
|
||||
<instance id="31" name="Monster Dungeon" />
|
||||
<instance id="32" name="Monster Dungeon" />
|
||||
<instance id="33" name="Monster Dungeon" />
|
||||
<instance id="34" name="Monster Dungeon" />
|
||||
<instance id="35" name="Monster Dungeon" />
|
||||
<instance id="36" name="Monster Dungeon" />
|
||||
<instance id="37" name="Monster Dungeon" />
|
||||
<instance id="38" name="Monster Dungeon" />
|
||||
<instance id="39" name="Monster Dungeon" />
|
||||
<instance id="40" name="Monster Dungeon" />
|
||||
<instance id="41" name="Monster Dungeon" />
|
||||
<instance id="42" name="Monster Dungeon" />
|
||||
<instance id="43" name="Pailaka (Forgotten Temple)" />
|
||||
<instance id="44" name="Pailaka (Devil's Isle)" />
|
||||
<instance id="45" name="Pailaka (Varka Silenos Barracks)" />
|
||||
<instance id="46" name="Rim Kamaloka" />
|
||||
<instance id="47" name="Rim Kamaloka" />
|
||||
<instance id="48" name="Rim Kamaloka" />
|
||||
<instance id="49" name="Rim Kamaloka" />
|
||||
<instance id="50" name="Rim Kamaloka" />
|
||||
<instance id="51" name="Rim Kamaloka" />
|
||||
<instance id="52" name="Rim Kamaloka" />
|
||||
<instance id="53" name="Rim Kamaloka" />
|
||||
<instance id="54" name="Rim Kamaloka" />
|
||||
<instance id="55" name="Rim Kamaloka" />
|
||||
<instance id="56" name="Rim Kamaloka" />
|
||||
<instance id="57" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="58" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="59" name="Near Kamaloka" />
|
||||
<instance id="60" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="61" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="62" name="Near Kamaloka" />
|
||||
<instance id="63" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="64" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="65" name="Near Kamaloka" />
|
||||
<instance id="66" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="67" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="68" name="Near Kamaloka" />
|
||||
<instance id="69" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="70" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="71" name="Near Kamaloka" />
|
||||
<instance id="72" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="73" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="74" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="75" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="76" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="77" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="78" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="79" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="80" name="Pailaka (Rune Castle)" />
|
||||
<instance id="81" name="Pailaka (Rune Castle)" />
|
||||
<instance id="82" name="Pailaka (Rune Castle)" />
|
||||
<instance id="83" name="Pailaka (Rune Castle)" />
|
||||
<instance id="84" name="Pailaka (Rune Castle)" />
|
||||
<instance id="85" name="Pailaka (Rune Castle)" />
|
||||
<instance id="86" name="Pailaka (Rune Castle)" />
|
||||
<instance id="87" name="Pailaka (Rune Castle)" />
|
||||
<instance id="88" name="Pailaka (Rune Castle)" />
|
||||
<instance id="89" name="Pailaka (Rune Castle)" />
|
||||
<instance id="90" name="Pailaka (Rune Castle)" />
|
||||
<instance id="91" name="Pailaka (Rune Castle)" />
|
||||
<instance id="92" name="Pailaka (Rune Castle)" />
|
||||
<instance id="93" name="Pailaka (Rune Castle)" />
|
||||
<instance id="94" name="Pailaka (Rune Castle)" />
|
||||
<instance id="95" name="Pailaka (Rune Castle)" />
|
||||
<instance id="96" name="Pailaka (Rune Castle)" />
|
||||
<instance id="97" name="Pailaka (Rune Castle)" />
|
||||
<instance id="98" name="Pailaka (Rune Castle)" />
|
||||
<instance id="99" name="Pailaka (Rune Castle)" />
|
||||
<instance id="100" name="Pailaka (Rune Castle)" />
|
||||
<instance id="101" name="Pailaka (Rune Castle)" />
|
||||
<instance id="102" name="Pailaka (Rune Castle)" />
|
||||
<instance id="103" name="Pailaka (Rune Castle)" />
|
||||
<instance id="104" name="Pailaka (Rune Castle)" />
|
||||
<instance id="105" name="Pailaka (Rune Castle)" />
|
||||
<instance id="106" name="Pailaka (Rune Castle)" />
|
||||
<instance id="107" name="Pailaka (Rune Castle)" />
|
||||
<instance id="108" name="Pailaka (Rune Castle)" />
|
||||
<instance id="109" name="Pailaka (Rune Castle)" />
|
||||
<instance id="110" name="Seed of Destruction" />
|
||||
<instance id="111" name="Sanctum of the Lords of Dawn" />
|
||||
<instance id="112" name="Disciple's Necropolis (Past)" />
|
||||
<instance id="113" name="Sanctum of the Dawn" />
|
||||
<instance id="114" name="Pirate Captain's Cavern (Nightmare)" />
|
||||
<instance id="115" name="Seed of Infinity (Hall of Suffering)" />
|
||||
<instance id="116" name="Seed of Infinity (Hall of Suffering)" />
|
||||
<instance id="117" name="Keucereus' Fortress (Secret Hall)" />
|
||||
<instance id="118" name="Keucereus' Fortress (Secret Hall)" />
|
||||
<instance id="119" name="Seed of Infinity (Hall of Erosion)" />
|
||||
<instance id="120" name="Seed of Infinity (Hall of Erosion)" />
|
||||
<instance id="121" name="Seed of Infinity (Heart of Infinity)" />
|
||||
<instance id="122" name="Seed of Infinity (Heart of Infinity)" />
|
||||
<instance id="123" name="Seed of Destruction (Dragonkin Servant)" />
|
||||
<instance id="124" name="Seed of Destruction (Dragonkin Sentinel)" />
|
||||
<instance id="125" name="Seed of Destruction (Dragonkin Warrior)" />
|
||||
<instance id="126" name="Seed of Destruction (Dragonkin Crusher)" />
|
||||
<instance id="127" name="Delusion Chamber (Eastern Seal)" />
|
||||
<instance id="128" name="Delusion Chamber (Western Seal)" />
|
||||
<instance id="129" name="Delusion Chamber (Southern Seal)" />
|
||||
<instance id="130" name="Delusion Chamber (Northern Seal)" />
|
||||
<instance id="131" name="Delusion Chamber (Great Seal)" />
|
||||
<instance id="132" name="Delusion Chamber (Towr of Seal)" />
|
||||
<instance id="133" name="Pirate Captain's Cavern (Daydream)" />
|
||||
<instance id="134" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="135" name="Pirate Captain's Cavern (Distant Daydream)" />
|
||||
<instance id="136" name="Last Imperial Tomb" />
|
||||
<instance id="137" name="Ice Queen's Castle" />
|
||||
<instance id="138" name="Mithril Mine" />
|
||||
<instance id="139" name="Ice Queen's Castle" />
|
||||
<instance id="140" name="Jinia Guild's Hideout" />
|
||||
<instance id="141" name="Jinia Guild's Hideout" />
|
||||
<instance id="142" name="Tower of Infinity (5th Floor)" />
|
||||
<instance id="143" name="Tower of Infinity (10th Floor)" />
|
||||
<instance id="144" name="Ice Queen's Castle (Epic)" />
|
||||
<instance id="145" name="Jinia Guild's Hideout" />
|
||||
<instance id="146" name="Jinia Guild's Hideout" />
|
||||
<instance id="147" name="Olympiad" />
|
||||
<instance id="148" name="Olympiad" />
|
||||
<instance id="149" name="Olympiad" />
|
||||
<instance id="150" name="Olympiad" />
|
||||
<instance id="151" name="Monastery of Silence" />
|
||||
<instance id="152" name="Monastery of Silence" />
|
||||
<instance id="153" name="Monastery of Silence" />
|
||||
<instance id="154" name="Monastery of Silence" />
|
||||
<instance id="155" name="Monastery of Silence" />
|
||||
<instance id="156" name="Library of Sages" />
|
||||
<instance id="157" name="Underground Library of Sages" />
|
||||
<instance id="158" name="Elcadia's Cabin" />
|
||||
<instance id="159" name="Spezion's Cavern" />
|
||||
<instance id="160" name="Teredor's Cavern" />
|
||||
<instance id="161" name="Kimerian's Cavern" />
|
||||
<instance id="162" name="Kimerian's Cavern (Epic)" />
|
||||
<instance id="163" name="Emerald Square" />
|
||||
<instance id="164" name="Steam Corridor" />
|
||||
<instance id="165" name="Coral Garden" />
|
||||
<instance id="166" name="Crystal Prison (Baylor) - Lv. 105" />
|
||||
<instance id="167" name="Crystal Prison (Balok)" />
|
||||
<instance id="168" name="Coral Garden Hall" />
|
||||
<instance id="169" name="Istina's Cavern" />
|
||||
<instance id="170" name="Istina's Cavern (Epic)" />
|
||||
<instance id="171" name="Seed of Annihilation (Nursery)" />
|
||||
<instance id="172" name="Lachik Dwelling Warzone" />
|
||||
<instance id="173" name="Lachik Dwelling Warzone" />
|
||||
<instance id="174" name="Lachik Dwelling Warzone (Epic)" />
|
||||
<instance id="175" name="Lachik Dwelling Warzone (Epic)" />
|
||||
<instance id="176" name="Underground Military Compound" />
|
||||
<instance id="177" name="Closed Underground Compound" />
|
||||
<instance id="178" name="Labyrinth of Belis" />
|
||||
<instance id="179" name="Fortuna" />
|
||||
<instance id="180" name="Octavis' Cavern" />
|
||||
<instance id="181" name="Octavis' Cavern (Epic)" />
|
||||
<instance id="182" name="Museum Dungeon" />
|
||||
<instance id="183" name="Antharas' Nest (Balthus Knights)" />
|
||||
<instance id="184" name="Valakas' Warzone" />
|
||||
<instance id="185" name="Evil Incubator" />
|
||||
<instance id="186" name="Orchid Hall" />
|
||||
<instance id="187" name="Ellia Hall" />
|
||||
<instance id="188" name="Laurell Hall" />
|
||||
<instance id="189" name="Orchid Hall" />
|
||||
<instance id="190" name="Ellia Hall" />
|
||||
<instance id="191" name="Laurell Hall" />
|
||||
<instance id="192" name="Tainted Dimension" />
|
||||
<instance id="193" name="Altar of Shillien" />
|
||||
<instance id="194" name="Altar of Shillien" />
|
||||
<instance id="195" name="Harnak Underground Ruins" />
|
||||
<instance id="196" name="Spezion's Cavern (Epic)" />
|
||||
<instance id="197" name="Elcadia's Cabin" />
|
||||
<instance id="198" name="Legacy of the Cruma Tower" />
|
||||
<instance id="199" name="Rim Kamaloka" />
|
||||
<instance id="200" name="Memory of Disaster" />
|
||||
<instance id="201" name="Harnak Underground Ruins" />
|
||||
<instance id="202" name="Kimerian" />
|
||||
<instance id="203" name="Kimerian (Epic)" />
|
||||
<instance id="204" name="Evolved Agathion's Place" />
|
||||
<instance id="205" name="Kartia's Labyrinth (Dimension Attacker)" />
|
||||
<instance id="206" name="Kartia's Labyrinth (Dimension Attacker)" />
|
||||
<instance id="207" name="Kartia's Labyrinth (Dimension Attacker)" />
|
||||
<instance id="208" name="Kartia's Labyrinth" />
|
||||
<instance id="209" name="Kartia's Labyrinth" />
|
||||
<instance id="210" name="Kartia's Labyrinth" />
|
||||
<instance id="211" name="Advent of Delusion" />
|
||||
<instance id="212" name="Verdof's Room (Devil's Isle)" />
|
||||
<instance id="213" name="Verdof's Room (Devil's Isle)" />
|
||||
<instance id="214" name="Verdof's Room (Devil's Isle)" />
|
||||
<instance id="215" name="Verdof's Room (Devil's Isle)" />
|
||||
<instance id="216" name="Verdof's Room (Devil's Isle)" />
|
||||
<instance id="217" name="Eva's Hidden Space" />
|
||||
<instance id="218" name="Tauti's Cavern" />
|
||||
<instance id="219" name="Tauti's Cavern (Epic)" />
|
||||
<instance id="220" name="Arena 1" />
|
||||
<instance id="221" name="Arena 2" />
|
||||
<instance id="222" name="Arena 3" />
|
||||
<instance id="223" name="Arena 4" />
|
||||
<instance id="224" name="Battle Tournament Stadium 1" />
|
||||
<instance id="225" name="Battle Tournament Stadium 2" />
|
||||
<instance id="226" name="Battle Tournament Stadium 3" />
|
||||
<instance id="227" name="Battle Tournament Stadium 4" />
|
||||
<instance id="228" name="Ancient Kartia's Labyrinth - Secret of Two Races" />
|
||||
<instance id="229" name="Ancient Kartia's Labyrinth - Secret of Two Races" />
|
||||
<instance id="230" name="Ancient Kartia's Labyrinth - Secret of Two Races" />
|
||||
<instance id="231" name="Nornil's Garden" />
|
||||
<instance id="232" name="Fortress of the Dead" />
|
||||
<instance id="233" name="Fortress of the Dead" />
|
||||
<instance id="234" name="Devastated Castle" />
|
||||
<instance id="235" name="Devastated Castle" />
|
||||
<instance id="236" name="Fortress of Resistance" />
|
||||
<instance id="237" name="Fortress of Resistance" />
|
||||
<instance id="238" name="Bronze Key Guild's Request Zone" />
|
||||
<instance id="239" name="Black Anvil Guild's Request Zone" />
|
||||
<instance id="240" name="Golden Wheel's Zone" />
|
||||
<instance id="241" name="Talking Island (Past)" />
|
||||
<instance id="242" name="Bronze Key Guild's Request Zone" />
|
||||
<instance id="243" name="Black Anvil Guild's Request Zone" />
|
||||
<instance id="244" name="Golden Wheel's Zone" />
|
||||
<instance id="245" name="Nornil's Garden" />
|
||||
<instance id="246" name="Verdof's Room (Devil's Isle)" />
|
||||
<instance id="247" name="Prelude to Lindvior" />
|
||||
<instance id="248" name="Prelude to Lindvior" />
|
||||
<instance id="249" name="Seed of Infinity" />
|
||||
<instance id="250" name="Dimensional Warp" />
|
||||
<instance id="251" name="Faeron Training Grounds" />
|
||||
<instance id="252" name="Faeron Training Grounds" />
|
||||
<instance id="253" name="Karaphon's Habitat" />
|
||||
<instance id="254" name="Fortress of the Dead" />
|
||||
<instance id="255" name="Chamber of Prophecies" />
|
||||
<instance id="256" name="Infernal Kamaloka" />
|
||||
<instance id="257" name="Lunatic Kamaloka" />
|
||||
<instance id="258" name="Nightmare Kamaloka - Lv. 105" />
|
||||
<instance id="259" name="Command Post" />
|
||||
<instance id="260" name="Ashen Shadow Camp - Lv. 105" />
|
||||
<instance id="261" name="Mystic Tavern" /> <!-- Mystic Tavern (Tauti) -->
|
||||
<instance id="262" name="Mystic Tavern" /> <!-- Mystic Tavern (Kelbim) -->
|
||||
<instance id="263" name="Mystic Tavern" /> <!-- Mystic Tavern (Freya) -->
|
||||
<instance id="264" name="Dimensional Rift" />
|
||||
<instance id="265" name="Outer Messiah's Castle" />
|
||||
<instance id="266" name="Inner Messiah's Castle" />
|
||||
<instance id="267" name="Mystic Tavern" /> <!-- Mystic Tavern (Kain) -->
|
||||
<instance id="268" name="Throne of Heroes" />
|
||||
<instance id="269" name="Hatchling Nest" />
|
||||
<instance id="270" name="Hatchling Cage" />
|
||||
<instance id="271" name="Antharas' Nest" />
|
||||
<instance id="272" name="Abelius' Power" />
|
||||
<instance id="273" name="Sapyros' Power" />
|
||||
<instance id="274" name="Ashagen's Power" />
|
||||
<instance id="275" name="Cranigg's Power" />
|
||||
<instance id="276" name="Naviarope's Power" />
|
||||
<instance id="277" name="Leister's Power" />
|
||||
<instance id="278" name="Soltkreig's Power" />
|
||||
<instance id="279" name="Lakcis' Power" />
|
||||
<instance id="280" name="Faeron Village" />
|
||||
<instance id="281" name="Eva's Hidden Space" />
|
||||
<instance id="282" name="Nornil's Garden" />
|
||||
<instance id="283" name="Fallen Emperor's Throne" />
|
||||
<instance id="284" name="Hall of Etina" />
|
||||
<instance id="285" name="Hall of Etina (Party)" />
|
||||
<instance id="286" name="Hall of Etina" />
|
||||
<instance id="287" name="Frintezza - Last Imperial Tomb (Epic)" />
|
||||
<instance id="288" name="Ice Queen's Castle (Epic)" />
|
||||
<instance id="289" name="Merkios' Altar" />
|
||||
<instance id="290" name="Lurin's Fortress" />
|
||||
<instance id="291" name="Krofin's Nest" />
|
||||
<instance id="292" name="Hall of Etina (Solo)" />
|
||||
<instance id="293" name="Hall of Etina (Solo)" />
|
||||
<instance id="294" name="Eva's Hidden Space" />
|
||||
<instance id="295" name="Rim Kamaloka" />
|
||||
<instance id="296" name="Rim Kamaloka" />
|
||||
<instance id="297" name="Rim Kamaloka" />
|
||||
<instance id="298" name="Kastia's Labyrinth" />
|
||||
<instance id="299" name="Kastia's Labyrinth" />
|
||||
<instance id="300" name="Kastia's Labyrinth" />
|
||||
<instance id="301" name="Tauti's Cavern" />
|
||||
<instance id="302" name="Frintezza - Last Imperial Tomb" />
|
||||
<instance id="303" name="Octavis' Cavern" />
|
||||
<instance id="304" name="Antharas' Nest" />
|
||||
<instance id="305" name="Kastia's Labyrinth" />
|
||||
<instance id="306" name="Kastia's Labyrinth" />
|
||||
<instance id="307" name="Throne of Heroes - Goldberg" />
|
||||
<instance id="308" name="Throne of Heroes - Mary Reed" />
|
||||
<instance id="309" name="Throne of Heroes - Tauti" />
|
||||
<instance id="310" name="Spirit Forest - Lv. 110" />
|
||||
<instance id="311" name="Ashen Shadow Camp - Lv. 110" />
|
||||
<instance id="312" name="Crystal Prison (Baylor) - Lv. 110" />
|
||||
<instance id="313" name="Nightmare Kamaloka - Lv. 110" />
|
||||
<instance id="314" name="Spirit Forest - Lv. 105" />
|
||||
<instance id="315" name="Krofin's Nest - Lv. 110" />
|
||||
<instance id="1001" name="Session Zone - Storm Isle" />
|
||||
<instance id="1006" name="Session Zone - Primeval Isle" />
|
||||
<instance id="1007" name="Session Zone - Isle of Souls" />
|
||||
<instance id="1008" name="Session Zone - Tower of Insolence (Lower Floor)" />
|
||||
<instance id="1009" name="Session Zone - Tower of Insolence (Middle Floor)" />
|
||||
<instance id="1011" name="Session Zone - Abandoned Coal Mines" />
|
||||
<instance id="1012" name="Session Zone - Imperial Tomb" />
|
||||
<instance id="1013" name="Session Zone - Corroded Fields" />
|
||||
<instance id="1014" name="Session Zone - Otherworldly Atelia Refinery" />
|
||||
<instance id="1020" name="World Session Zone - Tower of Insolence" />
|
||||
</list>
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user