summaryrefslogtreecommitdiff
path: root/src/map/script-fun.cpp
AgeCommit message (Collapse)AuthorFilesLines
2015-04-13Merge pull request #50 from mekolat/healWushin1-30/+12
remove deprecated percentheal and itemheal
2015-04-13Merge pull request #41 from wushin/pvp-script-persistanceWushin1-0/+33
Make killer & killable script builtins
2015-04-13Merge pull request #47 from mekolat/killmonsterallWushin1-20/+0
remove deprecated killmonsterall
2015-04-13Merge pull request #39 from mekolat/getnpclocationWushin1-0/+92
add npc-related builtins
2015-04-13Merge pull request #46 from mekolat/cmdothernpcWushin1-10/+0
remove deprecated cmdothernpc
2015-04-13Merge pull request #27 from wushin/get-item-idWushin1-0/+26
Script Builtin getitemlink
2015-04-07emulate @alivemekolat1-5/+12
2015-04-06add 3rd param to healmekolat1-3/+8
2015-04-06remove deprecated itemhealmekolat1-15/+0
2015-04-06remove deprecated percenthealmekolat1-15/+0
2015-04-05remove deprecated killmonsterallmekolat1-20/+0
2015-04-05remove deprecated cmdothernpcmekolat1-10/+0
2015-04-04allow to specify npcmekolat1-6/+42
2015-04-04add strnpcinfomekolat1-0/+30
2015-04-04make pvp use channelsmekolat1-6/+6
2015-04-04add getpvpflag builtinmekolat1-2/+3
2015-04-04Remove killer/killablewushin1-0/+32
Death Clears default pvp Add Player Togglable PvP Flag Add Timer to PvP Flag (Anti-Spam) Add getpvpflag builtin
2015-03-29Update script-fun.cppmeko1-1/+1
2015-03-29add support for manaplus emotesmekolat1-2/+2
2015-03-28add getnpcx and getnpcymekolat1-0/+26
2015-02-28Script Builtin getitemlinkwushin1-0/+26
* getitemlink("ItemName"); * returns [@@ItemId|Item Jname@@]
2015-02-28add freeloop builtinmekolat1-0/+20
2015-01-23Use generated config for mapBen Longbons1-1/+6
2015-01-22Have I mentioned that I hate ADL?Ben Longbons1-0/+1
2015-01-03Switch MATCH to separate begin/end macrosBen Longbons1-41/+81
The for loop trick turned out to be very prone to infinite loops at runtime. It's better to force compiler errors even if it's ugly.
2015-01-03Merge remote-tracking branch 'origin/hotfix'Ben Longbons1-12/+12
Conflicts: src/map/chrif.cpp
2014-11-19Magically allow "break" within WITH_VARBen Longbons1-12/+12
2014-11-19Script Builtin iscollisionwushin1-0/+19
- Checks map.gat, X, Y for collision
2014-11-19Script Builtin npcareawarpwushin1-0/+64
- Warps an Npc like npcwarp but uses an area argument - Can Check for collision - npcareawarp x0, y0, x1, y1, [0|1], "NPCNAME";
2014-11-04Perform divorces asynchronously to avoid crashesBen Longbons1-4/+0
2014-10-26Fix header rankingBen Longbons1-2/+3
2014-10-15Split protocol generation headersBen Longbons1-0/+2
2014-10-13Convert container lookups to use Option<Borrowed<T>>Ben Longbons1-84/+54
2014-10-08Split script.cppBen Longbons1-0/+3003