diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-10 13:13:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-10 13:13:58 -0300 |
commit | 3428c42f3acbd3e6661d92d988c1cdefaa42264f (patch) | |
tree | ad1fe716734d411e16116ab74d6809420e82b384 /npc/005-1-1 | |
parent | 9cdccc4bc94f87e8fa2f4647a9ddd807fff4ab51 (diff) | |
download | serverdata-3428c42f3acbd3e6661d92d988c1cdefaa42264f.tar.gz serverdata-3428c42f3acbd3e6661d92d988c1cdefaa42264f.tar.bz2 serverdata-3428c42f3acbd3e6661d92d988c1cdefaa42264f.tar.xz serverdata-3428c42f3acbd3e6661d92d988c1cdefaa42264f.zip |
Replace ~= with compare() in several places.
Make notes about how EXP on PVP shall work.
And later, that will give place to an honor system :3
But that's priority 2 out of a maximum of 7, so, only notes for now.
Diffstat (limited to 'npc/005-1-1')
-rw-r--r-- | npc/005-1-1/main.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/005-1-1/main.txt b/npc/005-1-1/main.txt index d940ccd54..f7d1ab672 100644 --- a/npc/005-1-1/main.txt +++ b/npc/005-1-1/main.txt @@ -171,7 +171,7 @@ OnInteract: htidelete(.@hti); // Continue the cycle - if (getmap() ~= "MRGO*" || getmap() ~= "005-1-1") + if (compare(getmap(), "MRGO") || compare(getmap(), "005-1-1")) addtimer(400, "Nylo#Marggo::OnInteract"); end; |