summaryrefslogtreecommitdiff
path: root/src/map/init.c
AgeCommit message (Collapse)AuthorFilesLines
2015-07-04Rename login/char/map dirs to elogin/echar/emap for avoid conflicts with ↵Andrei Karas1-243/+0
hercules.
2015-05-02add script function for check is unit walking.Andrei Karas1-0/+1
New script function: isunitwalking([unitid])
2015-05-01Add script command for send chat command to client.Andrei Karas1-0/+1
New script command: clientCommand chatcommand args
2015-04-30Remove checking for gm command in mail read packet.Andrei Karas1-0/+2
2015-04-16Apply WalkSpeed attribute from job_db.conf.Andrei Karas1-0/+2
2015-04-16Add to job_db.conf attribute for moving speed.Andrei Karas1-0/+3
New attribute: MoveSpeed
2015-04-10map: add support for own job names.Andrei Karas1-0/+1
2015-04-08Add to item_db.conf item attributes for equip/unequip effects.Andrei Karas1-0/+2
New attributes: UnequipEffect - send this effect to client if unequip item was success UnequipFailEffect - send this effect to client if unequip item was fail For equip events used same attributes like for use.
2015-04-08Add to item_db.conf item attributes for use effects.Andrei Karas1-0/+1
New attributes: useEffect - send this effect to client if use item was success useFailEffect - send this effect to client if use item was fail
2015-04-02map: check required item attributes also on use item.Andrei Karas1-1/+2
2015-04-02map: add post hook for checking is possible equip item.Andrei Karas1-0/+1
2015-03-25Add gm command for set player skill level. It also allow add/delete skills.Andrei Karas1-0/+2
New gm command: @setskill skill level
2015-03-07map: translate server to client text messages.Andrei Karas1-0/+3
2015-03-04Copy setmount script command from hercules and remove limits for class job.Andrei Karas1-0/+1
2015-02-28fix default map name memory leak on exit.Andrei Karas1-0/+1
2015-02-25Add packet for homunculus/mercenary direction.Andrei Karas1-0/+1
2015-02-25Add packet for homunculus/mercenary emote.Andrei Karas1-0/+1
2015-02-25Add packet for homunculus/mercenary talk.Andrei Karas1-0/+1
2015-02-24On each success skill invoke call event OnSkillInvoke.Andrei Karas1-0/+2
Alos set variables @skillId and @skillLv to skill id and skill level.
2015-02-22Allow change pet direction by packet from client.Andrei Karas1-0/+1
2015-02-22Allow move pet by packet from client.Andrei Karas1-0/+1
2015-02-21Fix heavy CPU usage while walking.Andrei Karas1-0/+1
After this commit and some changes in configuration it allow spawn more than 7k mobs in small area with small CPU usage.
2015-02-20Rename permission send_gm_flag into send_gm.Andrei Karas1-1/+1
2015-02-20Add show_client_version permission.Andrei Karas1-0/+1
Use show_client_version permission in online list.
2015-02-20Add support for online list packets.Andrei Karas1-0/+2
2015-02-20add packet to get state from client.Andrei Karas1-0/+1
2015-02-17add pet emote packet.Andrei Karas1-0/+1
2015-02-17add pet talk packet.Andrei Karas1-0/+1
Changed server version to 5.
2015-02-15map: add attribute for mobs for stand slaves alive after muster was deadAndrei Karas1-0/+2
New mob attribute: 0x8000
2015-01-31Read default map and position from config.Andrei Karas1-0/+4
2015-01-25map: update functions to new version.Andrei Karas1-1/+3
2015-01-17map: change exp table validation for only used classes.Andrei Karas1-0/+1
2015-01-10Add support for sending group id to client.Andrei Karas1-0/+2
Add permission send_gm_flag.
2015-01-10Revert "map: overload job/class related functions."Andrei Karas1-5/+0
This reverts commit 1d34b1d90999a9dda263c8235e5036d7b6179fa5.
2015-01-10map: overload job/class related functions.Andrei Karas1-0/+5
2015-01-02Reimpliment script function getareadropitem with additional parameter.Andrei Karas1-0/+1
getareadropitem map, x1, y1, x2, y2, item [, delFlag]
2015-01-02Add script command to call timer on players in area.Andrei Karas1-0/+1
New script command: areatimer map, x1, y1, x2, y2, tick, event
2015-01-01add script function for check is player dead or not.Andrei Karas1-1/+1
New script function: ispcdead()
2015-01-01Add script function for unequip item by id.Andrei Karas1-0/+1
New script function: unequipbyid ID
2015-01-01map: allow use npc with any id in allowed range.Andrei Karas1-0/+1
2014-12-31add script function what return current map name.Andrei Karas1-0/+2
New script function: getmapname
2014-12-24Impliment AllowPickup item_db.conf option.Andrei Karas1-0/+1
2014-12-23map: if got buy command for market npc, show market instead of buy shop.Andrei Karas1-0/+1
2014-12-19Allow move from sit state.Andrei Karas1-0/+2
2014-12-18Impliment FloorLifeTime in item_db.confAndrei Karas1-0/+2
2014-12-18Read paramater FloorLifeTime from item_db.Andrei Karas1-0/+1
2014-12-17Remove script function getnpcclass because it already in upstream.Andrei Karas1-1/+0
2014-12-17Allow "use" pet eggs.Andrei Karas1-0/+2
2014-12-07Remove script functions setpcsit/getpcsit.Andrei Karas1-2/+0
This functions duplicate upstream functions sit, stand, issit.
2014-12-07Remove script command getnpcdir because going to upstream.Andrei Karas1-1/+0
setnpcdir left for more optimal way to set npc direction.