diff options
Diffstat (limited to 'src/map/scriptdefines.h')
-rw-r--r-- | src/map/scriptdefines.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/map/scriptdefines.h b/src/map/scriptdefines.h new file mode 100644 index 0000000..56f32b6 --- /dev/null +++ b/src/map/scriptdefines.h @@ -0,0 +1,34 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#ifndef EVOL_MAP_SCRIPTDEFINES +#define EVOL_MAP_SCRIPTDEFINES + +#define getDataReturn(def) \ + if (!st->rid) \ + { \ + script_pushint(st, def); \ + return true; \ + } \ + TBL_PC *sd = script->rid2sd(st); \ + if (!sd) \ + { \ + script_pushint(st, def); \ + return true; \ + } \ + struct SessionExt *data = session_get(sd->fd) + +#define getData() \ + if (!st->rid) \ + return true; \ + TBL_PC *sd = script->rid2sd(st); \ + if (!sd) \ + return true; \ + struct SessionExt *data = session_get(sd->fd) + +#define getSD() \ + TBL_PC *sd = script->rid2sd(st); \ + if (!sd) \ + return 1 + +#endif // EVOL_MAP_SCRIPTDEFINES |