Why not make one for Hamel :))
ist es so schwer?..Quote:
clue:
(example from altera plain
CLEAR_COND0 = { <----- clear condition header
CLEAR_CONDITION.CC_KILL_ALL_ACTIVE_NPC, <----- clear condition type
NEXT_STAGE0 = { <----- next stage header
CLEAR_TYPE.CT_SUB_STAGE, <----- clear stage type
0, <----- stage number
2, <----- sub stage number
100 <----- appearance chance
you get to enter 57 stages all including the secret boss' in henir.
-stage0 -
CLEAR_COND0 = {
CLEAR_CONDITION.CC_KILL_ALL_ACTIVE_NPC,
NEXT_STAGE0 = {
CLEAR_TYPE.CT_SUB_STAGE,
0,
2,
100
the codes above indicates that after killing all the mobs on the stage a sub stage of the map opens for you then a new code will start.
-stage0 -
CLEAR_COND0 = {
CLEAR_CONDITION.CC_KILL_NPC_TYPE,
NPC_ID = {1},
NEXT_STAGE0 = {
CLEAR_TYPE.CT_STAGE,
1,
0,
100
this code now takes you to stage1 after you kill the NPC with the ID 1 make it blank {},
and it is considered null thus, the condition is done since you dont have to kill anything. this is the same code used for the stage 1 then boss thingy.
now head to the henir.lua open it with the lua editor from sir ernilos and do the magic
last tip:
stage0
1,
0,
100,
stage1
2,
0,
100
.......etc
stage55
56,
0,
100