diff options
author | Asheraf <acheraf1998@gmail.com> | 2016-08-29 17:40:13 +0100 |
---|---|---|
committer | hemagx <ibrahem.h.basyone@gmail.com> | 2016-09-02 04:56:00 +0200 |
commit | 0f1d0507eb95cf07ce7eb66d89ad9853938612e6 (patch) | |
tree | 57780b1ecc7c5ae125be1c89406f8db1e00a581b /npc/other/hugel_bingo.txt | |
parent | 0f1d03f505fdc03533122db8ba19fa55f64f11b7 (diff) | |
download | hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.gz hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.bz2 hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.xz hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.zip |
change *strcharinfo to use constants
Diffstat (limited to 'npc/other/hugel_bingo.txt')
-rw-r--r-- | npc/other/hugel_bingo.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/other/hugel_bingo.txt b/npc/other/hugel_bingo.txt index 50a9374f6..965405807 100644 --- a/npc/other/hugel_bingo.txt +++ b/npc/other/hugel_bingo.txt @@ -487,7 +487,7 @@ OnTouch: if ($@hu_bingoa == 5) { $@hu_bingoa = 6; donpcevent "start2#bingo::OnStop"; - $@bingowinner$ = strcharinfo(0); + $@bingowinner$ = strcharinfo(PC_NAME); donpcevent "win1a#bingo::OnWin"; close; @@ -669,7 +669,7 @@ OnInit: end; OnTouch: - if ($@bingowinner$ != strcharinfo(0)) end; + if ($@bingowinner$ != strcharinfo(PC_NAME)) end; specialeffect EF_SUI_EXPLOSION; soundeffect "tming_success.wav",1; if ($@bingoresult == 16) getitem 7515,50; |