diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-01-23 02:07:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-23 02:07:31 -0300 |
commit | f520c4404d28608fe6dc991f07f21670538a5a20 (patch) | |
tree | aa7e89824fc616d86d21c0e3609c48b55b66137d | |
parent | 790e9c80f391a3cb394ec77c911b3d112ae28bc0 (diff) | |
download | serverdata-f520c4404d28608fe6dc991f07f21670538a5a20.tar.gz serverdata-f520c4404d28608fe6dc991f07f21670538a5a20.tar.bz2 serverdata-f520c4404d28608fe6dc991f07f21670538a5a20.tar.xz serverdata-f520c4404d28608fe6dc991f07f21670538a5a20.zip |
Syntax Equivoc
-rw-r--r-- | npc/functions/hub.txt | 4 | ||||
-rw-r--r-- | npc/functions/mobpoint.txt | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 3c5fd8425..7263037f7 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -249,7 +249,9 @@ function script HUB_SkillInvoke { - +// When you kill a player, some special care is needed +// Only a few maps will give you experience for PK: Tulimshar's Guards Arena, +// Frostia Imperial PVP Arena, Call Of Dusty, Arena Quirino Voraz. // HUB_PvP ( ) - killedrid must be set function script HUB_PvP { // Update global PK count diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt index 6b3fb9d93..11bb40f57 100644 --- a/npc/functions/mobpoint.txt +++ b/npc/functions/mobpoint.txt @@ -65,7 +65,8 @@ OnNPCKillEvent: // Only a few maps will give you experience for PK: Tulimshar's Guards Arena, // Frostia Imperial PVP Arena, Call Of Dusty, Arena Quirino Voraz. OnPCKillEvent: - HUB_PvP(); + // call functions + callfunc "HUB_PvP"; end; } |