diff options
author | Haru <haru@dotalux.com> | 2013-11-10 05:09:37 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-11-10 05:09:37 +0100 |
commit | f7f10cf7bb600b6871ed37f493fef18110dc182b (patch) | |
tree | 8675372615de5b48093f5093f0e0e890834971f0 /npc/custom/battleground/bg_flavius_02.txt | |
parent | b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25 (diff) | |
download | hercules-f7f10cf7bb600b6871ed37f493fef18110dc182b.tar.gz hercules-f7f10cf7bb600b6871ed37f493fef18110dc182b.tar.bz2 hercules-f7f10cf7bb600b6871ed37f493fef18110dc182b.tar.xz hercules-f7f10cf7bb600b6871ed37f493fef18110dc182b.zip |
Follow-up to 857bdc4f98be6cd1e185a24565d6b6b54752b9b4
- Consolidated case in remaining variables, labels, constants.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/custom/battleground/bg_flavius_02.txt')
-rw-r--r-- | npc/custom/battleground/bg_flavius_02.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/custom/battleground/bg_flavius_02.txt b/npc/custom/battleground/bg_flavius_02.txt index 3e5215faa..1a66d39c5 100644 --- a/npc/custom/battleground/bg_flavius_02.txt +++ b/npc/custom/battleground/bg_flavius_02.txt @@ -278,7 +278,7 @@ bat_b02,390,13,5 script Guillaume Vintenar#fl2 4_M_KY_HEAD,{ mes "Let's enjoy our glorious victory!"; mes "" + strcharinfo(0) + ", its a sign reflecting victory"; close2; - set .@Reward, 9; + set .@reward, 9; } else { // @@ -287,11 +287,11 @@ bat_b02,390,13,5 script Guillaume Vintenar#fl2 4_M_KY_HEAD,{ mes "This is a reward for your great dedication by Guillaume Marollo!"; mes "Just take this defeat a lesson, and later you would definitely learn."; close2; - set .@Reward, 3; + set .@reward, 3; } setquest 2070; - getitem 7829, .@Reward; + getitem 7829, .@reward; bg_leave; warp "bat_room",155,150; end; @@ -309,7 +309,7 @@ bat_b02,10,293,5 script Croix Vintenar#fl2 4_M_CRU_HEAD,{ mes "Let's enjoy our glorious victory!"; mes "" + strcharinfo(0) + ", its a sign reflecting victory"; close2; - set .@Reward, 9; + set .@reward, 9; } else { // @@ -318,11 +318,11 @@ bat_b02,10,293,5 script Croix Vintenar#fl2 4_M_CRU_HEAD,{ mes "Even though we didn't win, we did our best."; mes "This is a Royal gift from Croix, and please don't forget this battle. We can win the next."; close2; - set .@Reward, 3; + set .@reward, 3; } setquest 2070; - getitem 7829, .@Reward; + getitem 7829, .@reward; bg_leave; warp "bat_room",155,150; end; |