mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-28 13:27:15 +00:00
Added Events
+1
@@ -1,6 +1,7 @@
|
||||
The Perl API consists of many exported classes and some general functions.
|
||||
* [Perl General Functions](Perl-Quest)
|
||||
* [Perl Constants](Perl-Constants)
|
||||
* [Perl Events](Perl-Events)
|
||||
* [Client](Perl-Client)
|
||||
* [Corpse](Perl-Corpse)
|
||||
* [Door](Perl-door)
|
||||
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
EVENT_AGGRO_SAY
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
data|int|
|
||||
text|int|
|
||||
langid|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_AGGRO_SAY {
|
||||
quest::say($data); # returns int
|
||||
quest::say($text); # returns int
|
||||
quest::say($langid); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_CAST
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
spell_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_CAST {
|
||||
quest::say($spell_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_CAST_BEGIN
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
spell_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_CAST_BEGIN {
|
||||
quest::say($spell_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_CAST_ON
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
spell_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_CAST_ON {
|
||||
quest::say($spell_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_CLICK_DOOR
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
doorid|int|
|
||||
version|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_CLICK_DOOR {
|
||||
quest::say($doorid); # returns int
|
||||
quest::say($version); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_CLICK_OBJECT
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
objectid|int|
|
||||
clicker_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_CLICK_OBJECT {
|
||||
quest::say($objectid); # returns int
|
||||
quest::say($clicker_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_COMBAT
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
combat_state|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_COMBAT {
|
||||
quest::say($combat_state); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_COMBINE_FAILURE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
recipe_id|int|
|
||||
recipe_name|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_COMBINE_FAILURE {
|
||||
quest::say($recipe_id); # returns int
|
||||
quest::say($recipe_name); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_COMBINE_SUCCESS
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
recipe_id|int|
|
||||
recipe_name|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_COMBINE_SUCCESS {
|
||||
quest::say($recipe_id); # returns int
|
||||
quest::say($recipe_name); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
EVENT_COMMAND
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
text|int|
|
||||
data|int|
|
||||
langid|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_COMMAND {
|
||||
quest::say($text); # returns int
|
||||
quest::say($data); # returns int
|
||||
quest::say($langid); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
+12
-1
@@ -9,6 +9,7 @@ killer_skill|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_DEATH {
|
||||
<<<<<<< HEAD
|
||||
quest::say($killer_id); #returns int
|
||||
quest::say($killer_damage); #returns int
|
||||
quest::say($killer_spell); #returns int
|
||||
@@ -16,4 +17,14 @@ sub EVENT_DEATH {
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T21:55:40-08:00
|
||||
Generated On 2018-01-15T21:55:40-08:00
|
||||
=======
|
||||
quest::say($killer_id); # returns int
|
||||
quest::say($killer_damage); # returns int
|
||||
quest::say($killer_spell); # returns int
|
||||
quest::say($killer_skill); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
>>>>>>> Added Events
|
||||
|
||||
Executable
+19
@@ -0,0 +1,19 @@
|
||||
EVENT_DEATH_COMPLETE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
killer_id|int|
|
||||
killer_damage|int|
|
||||
killer_spell|int|
|
||||
killer_skill|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_DEATH_COMPLETE {
|
||||
quest::say($killer_id); # returns int
|
||||
quest::say($killer_damage); # returns int
|
||||
quest::say($killer_spell); # returns int
|
||||
quest::say($killer_skill); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
EVENT_DEATH_ZONE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
killer_id|int|
|
||||
killer_damage|int|
|
||||
killer_spell|int|
|
||||
killer_skill|int|
|
||||
killed_npc_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_DEATH_ZONE {
|
||||
quest::say($killer_id); # returns int
|
||||
quest::say($killer_damage); # returns int
|
||||
quest::say($killer_spell); # returns int
|
||||
quest::say($killer_skill); # returns int
|
||||
quest::say($killed_npc_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_DISCOVER_ITEM
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
itemid|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_DISCOVER_ITEM {
|
||||
quest::say($itemid); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
EVENT_DROP_ITEM
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
quantity|int|
|
||||
itemname|int|
|
||||
itemid|int|
|
||||
spell_id|int|
|
||||
slotid|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_DROP_ITEM {
|
||||
quest::say($quantity); # returns int
|
||||
quest::say($itemname); # returns int
|
||||
quest::say($itemid); # returns int
|
||||
quest::say($spell_id); # returns int
|
||||
quest::say($slotid); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
EVENT_ENVIRONMENTAL_DAMAGE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
env_damage|int|
|
||||
env_damage_type|int|
|
||||
env_final_damage|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_ENVIRONMENTAL_DAMAGE {
|
||||
quest::say($env_damage); # returns int
|
||||
quest::say($env_damage_type); # returns int
|
||||
quest::say($env_final_damage); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_FISH_SUCCESS
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
fished_item|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_FISH_SUCCESS {
|
||||
quest::say($fished_item); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_FORAGE_SUCCESS
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
foraged_item|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_FORAGE_SUCCESS {
|
||||
quest::say($foraged_item); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_GROUP_CHANGE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
grouped|int|
|
||||
raided|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_GROUP_CHANGE {
|
||||
quest::say($grouped); # returns int
|
||||
quest::say($raided); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_HATE_LIST
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
hate_state|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_HATE_LIST {
|
||||
quest::say($hate_state); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+19
@@ -0,0 +1,19 @@
|
||||
EVENT_HP
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
hpevent|int|
|
||||
inchpevent|int|
|
||||
hpevent|int|
|
||||
inchpevent|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_HP {
|
||||
quest::say($hpevent); # returns int
|
||||
quest::say($inchpevent); # returns int
|
||||
quest::say($hpevent); # returns int
|
||||
quest::say($inchpevent); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+19
@@ -0,0 +1,19 @@
|
||||
EVENT_ITEM_CLICK
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
itemid|int|
|
||||
itemname|int|
|
||||
slotid|int|
|
||||
spell_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_ITEM_CLICK {
|
||||
quest::say($itemid); # returns int
|
||||
quest::say($itemname); # returns int
|
||||
quest::say($slotid); # returns int
|
||||
quest::say($spell_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+19
@@ -0,0 +1,19 @@
|
||||
EVENT_ITEM_CLICK_CAST
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
itemid|int|
|
||||
itemname|int|
|
||||
slotid|int|
|
||||
spell_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_ITEM_CLICK_CAST {
|
||||
quest::say($itemid); # returns int
|
||||
quest::say($itemname); # returns int
|
||||
quest::say($slotid); # returns int
|
||||
quest::say($spell_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_ITEM_ENTER_ZONE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
itemid|int|
|
||||
itemname|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_ITEM_ENTER_ZONE {
|
||||
quest::say($itemid); # returns int
|
||||
quest::say($itemname); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
EVENT_LOOT
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
looted_id|int|
|
||||
looted_charges|int|
|
||||
corpse|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_LOOT {
|
||||
quest::say($looted_id); # returns int
|
||||
quest::say($looted_charges); # returns int
|
||||
quest::say($corpse); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_NPC_SLAY
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
killed|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_NPC_SLAY {
|
||||
quest::say($killed); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_PLAYER_PICKUP
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
picked_up_id|int|
|
||||
picked_up_entity_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_PLAYER_PICKUP {
|
||||
quest::say($picked_up_id); # returns int
|
||||
quest::say($picked_up_entity_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_POPUP_RESPONSE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
popupid|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_POPUP_RESPONSE {
|
||||
quest::say($popupid); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
EVENT_PROXIMITY_SAY
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
data|int|
|
||||
text|int|
|
||||
langid|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_PROXIMITY_SAY {
|
||||
quest::say($data); # returns int
|
||||
quest::say($text); # returns int
|
||||
quest::say($langid); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_RESPAWN
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
option|int|
|
||||
resurrect|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_RESPAWN {
|
||||
quest::say($option); # returns int
|
||||
quest::say($resurrect); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
EVENT_SAY
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
data|int|
|
||||
text|int|
|
||||
langid|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_SAY {
|
||||
quest::say($data); # returns int
|
||||
quest::say($text); # returns int
|
||||
quest::say($langid); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_SCALE_CALC
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
itemid|int|
|
||||
itemname|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_SCALE_CALC {
|
||||
quest::say($itemid); # returns int
|
||||
quest::say($itemname); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_SIGNAL
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
signal|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_SIGNAL {
|
||||
quest::say($signal); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_SPAWN_ZONE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
spawned_entity_id|int|
|
||||
spawned_npc_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_SPAWN_ZONE {
|
||||
quest::say($spawned_entity_id); # returns int
|
||||
quest::say($spawned_npc_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_SPELL_BUFF_TIC_CLIENT
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
caster_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_SPELL_BUFF_TIC_CLIENT {
|
||||
quest::say($caster_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_SPELL_BUFF_TIC_NPC
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
caster_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_SPELL_BUFF_TIC_NPC {
|
||||
quest::say($caster_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_SPELL_EFFECT_CLIENT
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
caster_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_SPELL_EFFECT_CLIENT {
|
||||
quest::say($caster_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_SPELL_EFFECT_NPC
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
caster_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_SPELL_EFFECT_NPC {
|
||||
quest::say($caster_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_TASK_ACCEPTED
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
task_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_TASK_ACCEPTED {
|
||||
quest::say($task_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
EVENT_TASK_COMPLETE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
donecount|int|
|
||||
activity_id|int|
|
||||
task_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_TASK_COMPLETE {
|
||||
quest::say($donecount); # returns int
|
||||
quest::say($activity_id); # returns int
|
||||
quest::say($task_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_TASK_FAIL
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
task_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_TASK_FAIL {
|
||||
quest::say($task_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+15
@@ -0,0 +1,15 @@
|
||||
EVENT_TASK_STAGE_COMPLETE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
task_id|int|
|
||||
activity_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_TASK_STAGE_COMPLETE {
|
||||
quest::say($task_id); # returns int
|
||||
quest::say($activity_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+17
@@ -0,0 +1,17 @@
|
||||
EVENT_TASK_UPDATE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
donecount|int|
|
||||
activity_id|int|
|
||||
task_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_TASK_UPDATE {
|
||||
quest::say($donecount); # returns int
|
||||
quest::say($activity_id); # returns int
|
||||
quest::say($task_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_TIMER
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
timer|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_TIMER {
|
||||
quest::say($timer); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+19
@@ -0,0 +1,19 @@
|
||||
EVENT_TRADE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
copper|int|
|
||||
silver|int|
|
||||
gold|int|
|
||||
platinum|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_TRADE {
|
||||
quest::say($copper); # returns int
|
||||
quest::say($silver); # returns int
|
||||
quest::say($gold); # returns int
|
||||
quest::say($platinum); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_WAYPOINT_ARRIVE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
wp|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_WAYPOINT_ARRIVE {
|
||||
quest::say($wp); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_WAYPOINT_DEPART
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
wp|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_WAYPOINT_DEPART {
|
||||
quest::say($wp); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
EVENT_ZONE
|
||||
### Arguments
|
||||
**Name**|**Type**|**Description**
|
||||
:-----|:-----|:-----
|
||||
target_zone_id|int|
|
||||
### Example
|
||||
```perl
|
||||
sub EVENT_ZONE {
|
||||
quest::say($target_zone_id); # returns int
|
||||
}
|
||||
```
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
+55
-1
@@ -1,3 +1,4 @@
|
||||
<<<<<<< HEAD
|
||||
* [[EVENT_AGGRO_SAY|Perl-Event-EVENT_AGGRO_SAY]]
|
||||
* [[EVENT_CAST|Perl-Event-EVENT_CAST]]
|
||||
* [[EVENT_CAST_BEGIN|Perl-Event-EVENT_CAST_BEGIN]]
|
||||
@@ -48,4 +49,57 @@
|
||||
* [[EVENT_ZONE|Perl-Event-EVENT_ZONE]]
|
||||
|
||||
|
||||
Generated On 2018-01-15T21:58:03-08:00
|
||||
Generated On 2018-01-15T21:58:03-08:00
|
||||
=======
|
||||
* [[EVENT_AGGRO_SAY|Perl-EVENT_AGGRO_SAY]]
|
||||
* [[EVENT_CAST|Perl-EVENT_CAST]]
|
||||
* [[EVENT_CAST_BEGIN|Perl-EVENT_CAST_BEGIN]]
|
||||
* [[EVENT_CAST_ON|Perl-EVENT_CAST_ON]]
|
||||
* [[EVENT_CLICK_DOOR|Perl-EVENT_CLICK_DOOR]]
|
||||
* [[EVENT_CLICK_OBJECT|Perl-EVENT_CLICK_OBJECT]]
|
||||
* [[EVENT_COMBAT|Perl-EVENT_COMBAT]]
|
||||
* [[EVENT_COMBINE_FAILURE|Perl-EVENT_COMBINE_FAILURE]]
|
||||
* [[EVENT_COMBINE_SUCCESS|Perl-EVENT_COMBINE_SUCCESS]]
|
||||
* [[EVENT_COMMAND|Perl-EVENT_COMMAND]]
|
||||
* [[EVENT_DEATH|Perl-EVENT_DEATH]]
|
||||
* [[EVENT_DEATH_COMPLETE|Perl-EVENT_DEATH_COMPLETE]]
|
||||
* [[EVENT_DEATH_ZONE|Perl-EVENT_DEATH_ZONE]]
|
||||
* [[EVENT_DISCOVER_ITEM|Perl-EVENT_DISCOVER_ITEM]]
|
||||
* [[EVENT_DROP_ITEM|Perl-EVENT_DROP_ITEM]]
|
||||
* [[EVENT_ENVIRONMENTAL_DAMAGE|Perl-EVENT_ENVIRONMENTAL_DAMAGE]]
|
||||
* [[EVENT_FISH_SUCCESS|Perl-EVENT_FISH_SUCCESS]]
|
||||
* [[EVENT_FORAGE_SUCCESS|Perl-EVENT_FORAGE_SUCCESS]]
|
||||
* [[EVENT_GROUP_CHANGE|Perl-EVENT_GROUP_CHANGE]]
|
||||
* [[EVENT_HATE_LIST|Perl-EVENT_HATE_LIST]]
|
||||
* [[EVENT_HP|Perl-EVENT_HP]]
|
||||
* [[EVENT_ITEM_CLICK|Perl-EVENT_ITEM_CLICK]]
|
||||
* [[EVENT_ITEM_CLICK_CAST|Perl-EVENT_ITEM_CLICK_CAST]]
|
||||
* [[EVENT_ITEM_ENTER_ZONE|Perl-EVENT_ITEM_ENTER_ZONE]]
|
||||
* [[EVENT_LOOT|Perl-EVENT_LOOT]]
|
||||
* [[EVENT_NPC_SLAY|Perl-EVENT_NPC_SLAY]]
|
||||
* [[EVENT_PLAYER_PICKUP|Perl-EVENT_PLAYER_PICKUP]]
|
||||
* [[EVENT_POPUP_RESPONSE|Perl-EVENT_POPUP_RESPONSE]]
|
||||
* [[EVENT_PROXIMITY_SAY|Perl-EVENT_PROXIMITY_SAY]]
|
||||
* [[EVENT_RESPAWN|Perl-EVENT_RESPAWN]]
|
||||
* [[EVENT_SAY|Perl-EVENT_SAY]]
|
||||
* [[EVENT_SCALE_CALC|Perl-EVENT_SCALE_CALC]]
|
||||
* [[EVENT_SIGNAL|Perl-EVENT_SIGNAL]]
|
||||
* [[EVENT_SPAWN_ZONE|Perl-EVENT_SPAWN_ZONE]]
|
||||
* [[EVENT_SPELL_BUFF_TIC_CLIENT|Perl-EVENT_SPELL_BUFF_TIC_CLIENT]]
|
||||
* [[EVENT_SPELL_BUFF_TIC_NPC|Perl-EVENT_SPELL_BUFF_TIC_NPC]]
|
||||
* [[EVENT_SPELL_EFFECT_CLIENT|Perl-EVENT_SPELL_EFFECT_CLIENT]]
|
||||
* [[EVENT_SPELL_EFFECT_NPC|Perl-EVENT_SPELL_EFFECT_NPC]]
|
||||
* [[EVENT_TASK_ACCEPTED|Perl-EVENT_TASK_ACCEPTED]]
|
||||
* [[EVENT_TASK_COMPLETE|Perl-EVENT_TASK_COMPLETE]]
|
||||
* [[EVENT_TASK_FAIL|Perl-EVENT_TASK_FAIL]]
|
||||
* [[EVENT_TASK_STAGE_COMPLETE|Perl-EVENT_TASK_STAGE_COMPLETE]]
|
||||
* [[EVENT_TASK_UPDATE|Perl-EVENT_TASK_UPDATE]]
|
||||
* [[EVENT_TIMER|Perl-EVENT_TIMER]]
|
||||
* [[EVENT_TRADE|Perl-EVENT_TRADE]]
|
||||
* [[EVENT_WAYPOINT_ARRIVE|Perl-EVENT_WAYPOINT_ARRIVE]]
|
||||
* [[EVENT_WAYPOINT_DEPART|Perl-EVENT_WAYPOINT_DEPART]]
|
||||
* [[EVENT_ZONE|Perl-EVENT_ZONE]]
|
||||
|
||||
|
||||
Generated On 2018-01-15T22:01:49-08:00
|
||||
>>>>>>> Added Events
|
||||
|
||||
Reference in New Issue
Block a user