summaryrefslogtreecommitdiff
path: root/src/emap
AgeCommit message (Collapse)AuthorFilesLines
2017-04-20Drop support for client protocol version 10 (Aug 16 2015).Andrei Karas2-30/+5
2017-04-20Drop support for client protocol version 8 (May 1 2015).Andrei Karas2-30/+5
2017-04-20Drop support for client protocol version 7 (Mar 2 2015).Andrei Karas1-1/+1
2017-04-20Drop support for client protocol version 6 (Feb 17 2015).Andrei Karas1-10/+2
2017-04-19Drop support for client protocol version 4 (Jan 5 2015).Andrei Karas2-13/+1
2017-04-19Drop support for client protocol version 3 (Nov 28 2014).Andrei Karas2-13/+1
2017-04-19Drop support for client protocol version 2 (Nov 10 2014).Andrei Karas1-12/+0
2017-04-19Add script functions for manipulate item options.Andrei Karas3-0/+132
New functions: getitemoptionidbyindex getitemoptionvaluebyindex getitemoptionparambyindex setitemoptionbyindex
2017-04-11Add todo about item options for charm items.Andrei Karas1-1/+1
2017-04-04Fix compilation error on new clang.Andrei Karas1-1/+1
2017-04-04Send current player language in send_pc_info.Andrei Karas2-8/+14
Send send_pc_info if language was changed. Also change plugin version to 17.
2017-04-04Update for latest hercules changes.Andrei Karas1-1/+6
2017-01-30Return for buy/sell request from client for custom shops, item list from ↵Andrei Karas1-5/+15
cash shop.
2016-12-13Fix plugin after server update.Andrei Karas4-46/+51
2016-10-24Port some new code from hercules in replaced functions.Andrei Karas2-0/+5
2016-10-24Update skill array size after hercules update.Andrei Karas1-1/+1
2016-10-02Add support for spawn collision for mobs.Andrei Karas5-0/+77
2016-09-26Increase temp buffer size in craftconf.c for avoid possible overflow.Andrei Karas1-1/+1
2016-09-26Add/extend functions for manipulate quest variables and time.Andrei Karas3-3/+78
See evol script docs.
2016-09-26add support for clients with version >= 20 for quests packets with extended ↵Andrei Karas1-27/+74
info.
2016-09-12Dont send packet 0x9cb to old clients.Andrei Karas1-0/+23
2016-09-05add slide buildingumi3-0/+26
2016-09-04Add script command for close npc dialog only on client without affecting ↵Andrei Karas3-0/+9
server side. New script command: closeclientdialog
2016-09-04Fix hack with input string. Previous commit missing custom input function.Andrei Karas2-0/+2
2016-09-03Add support for MinRange in item_db.Andrei Karas6-0/+46
If weapon used on range smaller than MinRange, weapon not attacking.
2016-09-01Add hack for avoid npc_str buffer size limitation.Andrei Karas4-12/+105
Now for npc_str used global variable. And it cant be used in any functions except input related buildins.
2016-09-01Add into mob_db skill type attacks modifier.Andrei Karas5-4/+47
New group in mob_db: SkillAttacks Example: SkillAttacks: { SM_BASH: 5000 // mean SM_BASH skill do 50% of normal damage } Default value is 10000 mean 100%
2016-08-31Add into mob_db weapot type attacks modifier.Andrei Karas6-0/+221
New group in mob_db: WeaponAttacks Example: WeaponAttacks: { Bows: 5000 // mean bow attack do 50% of normal attack } Default value is 10000 mean 100%
2016-08-24Fix changing homunculus or mercenary direction.Andrei Karas1-1/+1
2016-08-20Send party settings packet after party info packet.Andrei Karas3-0/+12
This allow always know party settings without changing it.
2016-08-17Add function for convert label to int and int to label.Andrei Karas4-0/+19
New functions: getlabel - get label and return int tolabel - get int and return label
2016-08-13Add own pc_jobchange function. not change job exp and send new packet for ↵Andrei Karas3-0/+226
slots changes.
2016-08-10Add console command serverexit.Andrei Karas3-0/+45
It works in same way with gm command serverexit.
2016-08-10Add support for exit codes for git pull and building plugin code.Andrei Karas1-0/+1
2016-08-10Add support for exit codes for building plugin code.Andrei Karas1-0/+1
2016-08-10Add support for exit codes for git pull and rebuilding code.Andrei Karas1-0/+1
2016-08-10Add support for exit codes for git pull and building code.Andrei Karas1-0/+1
2016-08-10Add support for exit codes for rebuilding code.Andrei Karas1-0/+1
2016-08-10Add support for exit codes for building code.Andrei Karas1-0/+1
2016-08-10Add support for exit status code for pull and restart.Andrei Karas1-0/+1
2016-08-10Add gm command for send restart events to all servers.Andrei Karas5-1/+54
For now it support only one char and one map server. For support this actions need use hercules wrapper.
2016-08-08Add monster wall collision type.Andrei Karas1-39/+58
2016-08-06Not allow hit with bow and without ammo.Andrei Karas1-1/+1
2016-08-04Reduce memory usage in vectors.Andrei Karas4-7/+8
2016-07-31Fix memory leak on exit/item_db reload after adding vectors in item_db.Andrei Karas1-0/+2
2016-07-31Add into item_db.conf support for attribute AllowAmmo for bows.Andrei Karas6-0/+85
This allow limit any arrow/ammo for any bows/guns.
2016-07-31Use VECTOR for allowed cards array.Andrei Karas4-11/+23
2016-07-27Add homunculus exp packet (0xb22)Andrei Karas5-17/+89
2016-07-23Fix random issues with visible cards in some items.Andrei Karas1-6/+4
2016-07-21Add fail move response packet.Andrei Karas5-2/+97