blob: b951c0c73c8bc1f77072e9fc41b8f9627e360984 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 - 2015 Evol developers
#include "common/hercules.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "common/db.h"
#include "common/HPMi.h"
#include "common/malloc.h"
#include "common/mmo.h"
#include "common/socket.h"
#include "common/strlib.h"
#include "common/timer.h"
#include "map/pc.h"
#include "map/npc.h"
#include "map/script.h"
int eskill_check_condition_castend_post(int retVal,
TBL_PC* sd,
uint16 *skill_id,
uint16 *skill_lv)
{
if (retVal && sd)
{
struct linkdb_node **label_linkdb = strdb_get(npc->ev_label_db, "OnSkillInvoke");
if (label_linkdb == NULL)
return retVal;
struct linkdb_node *node = *label_linkdb;
while (node)
{
struct event_data* ev = node->data;
if (ev)
{
pc->setreg(sd, script->add_str("@skillId"), *skill_id);
pc->setreg(sd, script->add_str("@skillLv"), *skill_lv);
script->run(ev->nd->u.scr.script, ev->pos, sd->bl.id, ev->nd->bl.id);
}
node = node->next;
}
}
return retVal;
}
|