I need help editing data35 for skip to boss

09/03/2013 19:04 Cross Rose#16
Quote:
Originally Posted by powermaxon View Post
You want to kill Hell BOSS and Extra BOSS in one time?How Crazy you are!
Killing the boss twice is always good for getting items. I think the main problem from this plan is that if you kill the first boss, it'll end the run instead of warping you to the Luto version of the boss. I still have to wait 2 hours to test this out though. Hate it when I find something interesting during work.
09/03/2013 20:22 Parampaa#17
Quote:
Originally Posted by jamwan View Post
1) extract data-35.kom
2) find the map you want to edit and open it with ernilo's lua editor
3) find an existing edited map that send you to a boss stage after the first stage.
4) compare and experiment.

which map are you exactly talking about again? we don't like to spoon feed too much here so base your editing on this one:
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,
Great mini tutorial, thank you.
09/04/2013 03:15 jamwan#18
Quote:
Originally Posted by Cross Rose View Post
Killing the boss twice is always good for getting items. I think the main problem from this plan is that if you kill the first boss, it'll end the run instead of warping you to the Luto version of the boss. I still have to wait 2 hours to test this out though. Hate it when I find something interesting during work.
i think the henir trick would do that since you're supposed to only get to fight 4 bosses in henir(or was it 5?) but you get to fight all once you edit.
hint:
_SUB_STAGE = open next substage once the clear condition is met
_STAGE = open next stage once the clear condition is met
_GAME = open game stats screen, sends you back to town once the clear condition is met.
try it ^_^ Y
09/04/2013 05:34 Cross Rose#19
Quote:
Originally Posted by jamwan View Post
i think the henir trick would do that since you're supposed to only get to fight 4 bosses in henir(or was it 5?) but you get to fight all once you edit.
hint:
_SUB_STAGE = open next substage once the clear condition is met
_STAGE = open next stage once the clear condition is met
_GAME = open game stats screen, sends you back to town once the clear condition is met.
try it ^_^ Y
I totally forgot to check this thread after I got home, but I noticed the _GAME and _STAGE difference and well it worked out after a few trial and error runs. Still, thanks a lot since this info reassures it.
Oh, any chance I could get some hints as to where I can find the files for monster levels and positions? Having them die everywhere is somewhat annoying so I was thinking about just putting them on the same spot. I'll keep searching the files before going to bed anyway.
09/04/2013 07:04 jamwan#20
they have this pos thingy below their name but i can't seem to change since they always spawn where they originally should, ill try experimenting again later.
09/04/2013 07:37 Cross Rose#21
Quote:
Originally Posted by jamwan View Post
they have this pos thingy below their name buy i can't seem to change since they always spawn where they originally should, ill try experimenting again later.
So it really was that. I tried it myself right after I managed the double hell mode boss, but as you said, they still spawned on their original spot. Either it's server-side or some other file must be edited.
Found monster levels in the dungeon data but that didn't do anything too. I'll check the files during my breaks, working sucks when you find something interesting to do...haha...
09/04/2013 10:23 TheTakashi#22
It gives me an error when I put "{}" near NPC_ID =
I use ElswordLuaEditor V.2
09/04/2013 10:40 jamwan#23
did you put it like this?
NPC_ID = {},
with the comma?
09/04/2013 16:55 Cross Rose#24
It seems that the position numbers in the dungeon files do nothing at all eve after edited. So it must really be either server-side or another file that holds the positions.
09/05/2013 10:15 TheTakashi#25
Quote:
Originally Posted by jamwan View Post
did you put it like this?
NPC_ID = {},
with the comma?
Yes, i put it with the comma.
Code:
     SUB_STAGE1 = {
      START_LINE_SET = 1,
      MAIN_LINE_SET = 2,
      END_LINE_SET = -1,
      GO_TYPE = GO_TYPE.GT_RIGHT,
      CLEAR_COND0 = {
        CLEAR_CONDITION.CC_KILL_NPC_TYPE,
        NPC_ID = { [B][COLOR="Red"]< When I try to put this }[/COLOR][/B]
          NPC_UNIT_ID.NUI_VELDER_DWELLING_GATE
        },
        NEXT_STAGE0 = {
          CLEAR_TYPE.CT_STAGE,
          1,
          0,
          100
09/05/2013 13:48 jamwan#26
Quote:
Originally Posted by TheTakashi View Post
Yes, i put it with the comma.
Code:
     SUB_STAGE1 = {
      START_LINE_SET = 1,
      MAIN_LINE_SET = 2,
      END_LINE_SET = -1,
      GO_TYPE = GO_TYPE.GT_RIGHT,
      CLEAR_COND0 = {
        CLEAR_CONDITION.CC_KILL_NPC_TYPE,
        NPC_ID = { [B][COLOR="Red"]< When I try to put this }[/COLOR][/B]
          NPC_UNIT_ID.NUI_VELDER_DWELLING_GATE
        },
        NEXT_STAGE0 = {
          CLEAR_TYPE.CT_STAGE,
          1,
          0,
          100
make it look like this:
Code:
SUB_STAGE1 = {
      START_LINE_SET = 1,
      MAIN_LINE_SET = 2,
      END_LINE_SET = -1,
      GO_TYPE = GO_TYPE.GT_RIGHT,
      CLEAR_COND0 = {
        CLEAR_CONDITION.CC_KILL_NPC_TYPE,
        NPC_ID = {},
        NEXT_STAGE0 = {
          CLEAR_TYPE.CT_STAGE,
          1,
          0,
          100
09/05/2013 14:31 powermaxon#27
Quote:
Originally Posted by TheTakashi View Post
Yes, i put it with the comma.
Code:
     SUB_STAGE1 = {
      START_LINE_SET = 1,
      MAIN_LINE_SET = 2,
      END_LINE_SET = -1,
      GO_TYPE = GO_TYPE.GT_RIGHT,
      CLEAR_COND0 = {
        CLEAR_CONDITION.CC_KILL_NPC_TYPE,
        NPC_ID = { [B][COLOR="Red"]< When I try to put this }[/COLOR][/B]
          NPC_UNIT_ID.NUI_VELDER_DWELLING_GATE
        },
        NEXT_STAGE0 = {
          CLEAR_TYPE.CT_STAGE,
          1,
          0,
          100
[Only registered and activated users can see links. Click Here To Register...]
Don't forget the comma and it is Repeated。
condition1 : {}
condition2 : { NPC_UNIT_ID.NUI_VELDER_DWELLING_GATE },
09/06/2013 00:09 teddyniggua#28
how to i make an auto clear and a teleport to boss
n a bypasser gamekille.r is currently down so pleaze
help
09/06/2013 05:41 jamwan#29
Quote:
Originally Posted by teddyniggua View Post
how to i make an auto clear and a teleport to boss
n a bypasser gamekille.r is currently down so pleaze
help
did you read the first post?
if you haven't then go read it.
09/06/2013 12:53 TheTakashi#30
Can someone put Dungeon_Velder_Dwelling_Gate.lua modified that leads to the boss? So that I can compare them