Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-06-21 | Add constant MAX_SLOTS into script constants. | Andrei Karas | 1 | -0/+1 | |
2016-05-02 | Update function hook prototypes for support new hercules. | Andrei Karas | 1 | -9/+27 | |
2016-03-30 | Split script.c into buildins and other script functions. | Andrei Karas | 1 | -66/+0 | |
2016-03-14 | Add ClientVersion constant parameter into code.release2016-03-15 | Andrei Karas | 1 | -0/+1 | |
2016-03-14 | Disable completly buildin hercules translation support. | Andrei Karas | 1 | -0/+1 | |
2016-03-14 | Fix npc assertions on maps with always visible npcs after reload scripts. | Andrei Karas | 1 | -0/+1 | |
Clean npc info stored in plugin data if scripts was reloaded. | |||||
2016-02-22 | Copy setlook script command into plugin. Add support for send changed slot. | Andrei Karas | 1 | -0/+1 | |
2016-01-30 | Remove script command countitemcolor. Now it same with countitem. | Andrei Karas | 1 | -1/+0 | |
2016-01-24 | Add script function for get return code from craft entry. | Andrei Karas | 1 | -0/+1 | |
New script function: getcraftcode ENTRY | |||||
2016-01-24 | Add script command for use craft. | Andrei Karas | 1 | -0/+1 | |
New script command: usecraft CRAFT Where CRAFT - craft id created by initcraft. | |||||
2016-01-23 | Add script function for find craft entry from db based on craft variable. | Andrei Karas | 1 | -0/+1 | |
New script command: findcraftentry CRAFTVAR, FLAG Where: CRAFTVAR - variable get from initcraft function. FLAG - flag related to npc. It allow search craft entries only with this flag. | |||||
2016-01-17 | Add script command for show emotes. | Andrei Karas | 1 | -0/+1 | |
Copy from hercules with removing emote id check. Script command: emotion e[, flag, name] | |||||
2016-01-16 | Add script command for show link to item with cards by inventory index. | Andrei Karas | 1 | -0/+1 | |
New script command: getinvindexlink n | |||||
2016-01-12 | Add script command for validate craft object after some time it was created. | Andrei Karas | 1 | -0/+1 | |
New script command: validatecraft id | |||||
2016-01-12 | Add script command for get item amount from one craft slot. | Andrei Karas | 1 | -0/+1 | |
New script command: getcraftslotamount id, slot | |||||
2016-01-12 | Add script command for get item id from one craft slot. | Andrei Karas | 1 | -0/+1 | |
New script command: getcraftslotid id, slot | |||||
2016-01-12 | Add script command for delete craftobject. | Andrei Karas | 1 | -0/+1 | |
New script command: deletecraft id | |||||
2016-01-11 | Add script command for dump craft object to server console. | Andrei Karas | 1 | -0/+1 | |
New script command: dumpcraft id | |||||
2016-01-11 | Add script command for convert craft string into craft object. | Andrei Karas | 1 | -0/+1 | |
New script command: initcraft var$ Return value: craft object id. | |||||
2016-01-08 | Add script command for request craft inventory. | Andrei Karas | 1 | -0/+1 | |
New script command: requestcraft VAR$[, size] Example: @requestcraft .@var$, 9; | |||||
2015-10-26 | Add script command setskin. For set npc dialog skin on client. | Andrei Karas | 1 | -0/+1 | |
2015-10-17 | Add support for insert cards script. | Andrei Karas | 1 | -0/+1 | |
2015-10-16 | Add script function delcells for delete cells/wall. | Andrei Karas | 1 | -0/+1 | |
2015-10-16 | Add script function and packet to set group of cells to given mask (gat value) | Andrei Karas | 1 | -0/+1 | |
New script function: setcells "map name", x1, y1, x2, y2, mask, "wall name" | |||||
2015-10-13 | Add support for take (pickup) script for items taked from ground by player. | Andrei Karas | 1 | -0/+1 | |
2015-10-01 | Rename some functions in same way like it named in server. | Andrei Karas | 1 | -4/+4 | |
2015-09-29 | Add script command checknpccell. It works same like checkcell, but for ↵ | Andrei Karas | 1 | -0/+1 | |
current npc. | |||||
2015-09-28 | Add chatjoin script command for join chat room. | Andrei Karas | 1 | -0/+1 | |
Format: chatjoin chat [,user [,password]] | |||||
2015-09-28 | Update copyright year. | Andrei Karas | 1 | -1/+1 | |
2015-09-28 | Add support for team id for battleground players. | Andrei Karas | 1 | -0/+1 | |
New script function: setbgteam bgid, num It set for 'bgid' team id to 'num'. | |||||
2015-09-27 | Hook set/get npc string variables. | Andrei Karas | 1 | -0/+2 | |
2015-09-27 | Add .lang variable to npc for storing language. | Andrei Karas | 1 | -0/+3 | |
Also add hooks to set/get vars. | |||||
2015-09-25 | Add script commands npcsit and npcstand. | Andrei Karas | 1 | -0/+3 | |
New script commands: npcsit [npcid]; npcstand [npcid]; | |||||
2015-09-18 | Add script function for check is parameter string or not. | Andrei Karas | 1 | -0/+1 | |
New script function: isstr Example: isstr(10) - will return 0 isstr("test") - will return 1 | |||||
2015-08-22 | Add script command successrefindex for success item refine by index. | Andrei Karas | 1 | -0/+1 | |
New script command: successrefindex index, num; index - inventory index num - how many levels to up. Example: successrefindex .@index, 3; | |||||
2015-08-22 | Add script function downrefindex for downgrade refine level. | Andrei Karas | 1 | -0/+1 | |
New script function: downrefindex index, number index - inventory index number - number of levels to downgrade. Example: downrefindex .@index, 1; | |||||
2015-08-21 | Add script function failedrefindex and some macro. | Andrei Karas | 1 | -0/+1 | |
New function: failedrefindex index index - inventory item index Example: failedrefindex .@itemid; | |||||
2015-08-21 | Add script functions requestItemIndex and requestItemsIndex. | Andrei Karas | 1 | -0/+2 | |
This functions request from player inventory indexes for items. Example: requestItemIndex @item; requestItemsIndex @item$, num; | |||||
2015-07-04 | Rename login/char/map dirs to elogin/echar/emap for avoid conflicts with ↵ | Andrei Karas | 1 | -0/+46 | |
hercules. |