[Help] tp to ultimas room?

Newbie Spellweaver
Joined
Jul 30, 2008
Messages
98
Reaction score
0
how do i manage to get a tper into the ultimas room? i added a npc but cant speak to him and not sure if its the right npc i added, help :S
 
Re: tp to ultimas room?

i think you cannot do that in 1299.

but in 150x, you can create a .spt file into ebenezer folder. and you can make a script.

explanation [this works in only 150x version] :

1-create a new folder, name it "npcsay" , put it in ebenezer folder.
2-learn your NPC's bytype code from sql
3-open a notepad. script it. (script as ko scripting language) and save it in npcsay folder as npcsay_bytype.spt

bytype is your bytype code. for example if bytype:150 then my file gets:
npcsay_150.spt

dont try for 1299.
 
Yes you can make own npc in 1299
Here is an example:
Make an NPC that using "bytype 77" its for EVENT 7001
This one below check so you all 7 diffrent fragments b4 he tp whole party to Ultima, all diffrent "SAY" is up to you to add in tbl's.
Just make one 31.evt and put it in /Ebenezer/Map/
EVENT 7001 ; bytype 77
E SELECT_MSG 21510 5700 5700 5700 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1;
END

EVENT 5700 ; Check fragments
E RUN_EVENT 5701
E RUN_EVENT 5702
E RUN_EVENT 5703
E RUN_EVENT 5704
E RUN_EVENT 5705
E RUN_EVENT 5706
E RUN_EVENT 5707
E RUN_EVENT 5708
END

EVENT 5701 ;
A HOWMUCH_ITEM 389160000 0 0
E SAY -1 -1 5701 -1 -1 -1 -1 -1 -1 -1; No fragment
E RETURN
END

EVENT 5702 ;
A HOWMUCH_ITEM 389161000 0 0
E SAY -1 -1 5702 -1 -1 -1 -1 -1 -1 -1; No fragment
E RETURN
END

EVENT 5703 ;
A HOWMUCH_ITEM 389162000 0 0
E SAY -1 -1 5703 -1 -1 -1 -1 -1 -1 -1; No fragment
E RETURN
END

EVENT 5704 ;
A HOWMUCH_ITEM 389163000 0 0
E SAY -1 -1 5704 -1 -1 -1 -1 -1 -1 -1
E RETURN
END

EVENT 5705 ;
A HOWMUCH_ITEM 389164000 0 0
E SAY -1 -1 5705 -1 -1 -1 -1 -1 -1 -1; No fragments
E RETURN
END

EVENT 5706 ;
A HOWMUCH_ITEM 389165000 0 0
E SAY -1 -1 5706 -1 -1 -1 -1 -1 -1 -1; No fragments
E RETURN
END

EVENT 5707 ;
A HOWMUCH_ITEM 389166000 0 0
E SAY -1 -1 5707 -1 -1 -1 -1 -1 -1 -1; No fragments
E RETURN
END

EVENT 5708 ; Teleport
E ROB_ITEM 389160000 1
E ROB_ITEM 389161000 1
E ROB_ITEM 389162000 1
E ROB_ITEM 389163000 1
E ROB_ITEM 389164000 1
E ROB_ITEM 389165000 1
E ROB_ITEM 389166000 1
E ZONE_CHANGE_PARTY 31 924 183
END
 
Back