diff options
author | shennetsind <notind@gmail.com> | 2013-05-17 11:08:38 -0700 |
---|---|---|
committer | shennetsind <notind@gmail.com> | 2013-05-17 11:08:38 -0700 |
commit | 080f7a22740225df70a488849587b462a5d6b1a3 (patch) | |
tree | 0c1dc751af9f06e1ce3729d271de301f78a4e611 /npc/warps/other/arena.txt | |
parent | 754af15505f32237f8063e51ae9a1cb90788dff4 (diff) | |
parent | 25e848f1a0f9317d63106cae048a1ef838411cb2 (diff) | |
download | hercules-080f7a22740225df70a488849587b462a5d6b1a3.tar.gz hercules-080f7a22740225df70a488849587b462a5d6b1a3.tar.bz2 hercules-080f7a22740225df70a488849587b462a5d6b1a3.tar.xz hercules-080f7a22740225df70a488849587b462a5d6b1a3.zip |
Merge pull request #1 from Earisu/master
updating, with earisu's
Diffstat (limited to 'npc/warps/other/arena.txt')
-rw-r--r-- | npc/warps/other/arena.txt | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/npc/warps/other/arena.txt b/npc/warps/other/arena.txt new file mode 100644 index 000000000..19a5fdc6a --- /dev/null +++ b/npc/warps/other/arena.txt @@ -0,0 +1,69 @@ +//===== Hercules Script ====================================== +//= Arena Warps +//===== By: ================================================== +//= SinSloth +//===== Current Version: ===================================== +//= 1.3 +//===== Description: ========================================= +//= Warp Points related to Izlude Arena && Control Panel +//===== Additional Comments: ================================= +//= 1.0 First version, done by SinSloth. [MasterOfMuppets] +//= 1.1 updated welcome_arena warp coords (was 128,126) [Lupus] +//= 1.2 Made some updates due to Izlude Battle Arena release. [SinSloth] +//= 1.3 Moved welcome_arena & bye_arena to pre-re [Streusel] +//============================================================ + +arena_room,84,103,0 warp arn_room_11_1 1,1,arena_room,63,130 +arena_room,63,126,0 warp arn_room_11_2 1,1,arena_room,87,100 +arena_room,76,87,0 warp arn_room_9_1 1,1,arena_room,46,87 +arena_room,49,87,0 warp arn_room_9_2 1,1,arena_room,78,87 +arena_room,84,71,0 warp arn_room_7_1 1,1,arena_room,60,50 +arena_room,63,53,0 warp arn_room_7_2 1,1,arena_room,86,74 +arena_room,115,71,0 warp arn_room_5_1 1,1,arena_room,139,50 +arena_room,136,53,0 warp arn_room_5_2 1,1,arena_room,113,74 +arena_room,123,88,0 warp arn_room_3_1 1,1,arena_room,153,87 +arena_room,150,87,0 warp arn_room_3_2 1,1,arena_room,120,87 +prt_are_in,54,13,0 warp toarn_room 1,1,arena_room,100,77 + +sec_in02,79,180,3 script #arenacontrol 81,{ + +DLGTEMP: + input @input_arena; + if (@input_arena < 0 || @input_arena > 2000) goto DLGTEMP; //CHECK + if (@input_arena == 0) + { + mes "Error!"; + close; + } + else if (@input_arena == 1357) + { + mes "Opening Control Panel"; + mes "' A - R - E - N - A '"; + next; + mes "Please select a"; + mes "state for the arena."; + next; + switch( select( "Open.","Closed.") ) + { + case 1: + mes "Currently"; + mes "opening arena."; + misceffect EF_ENHANCE; //CHECK + enablenpc "welcome_arena"; + next; + break; + case 2: + mes "Currently"; + mes "closing arena."; + misceffect EF_EXIT; //CHECK + disablenpc "welcome_arena"; + next; + break; + } + } + else + { + mes "Closing control panel."; + close; + } +} |