Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-08-30 | Rename files for C++ conversion. Does not compile. | Ben Longbons | 1 | -8145/+0 | |
After updating, you can remove these files, as shown in 'git status': Untracked files: (use "git add <file>..." to include in what will be committed) src/map/magic-interpreter-lexer.c src/map/magic-interpreter-parser.c src/map/magic-interpreter-parser.h | |||||
2012-07-22 | Add option argument to getareausers to exclude the dead. | Ben Longbons | 1 | -2/+15 | |
2011-10-20 | Fix scripts with literal integers containing the high bit.v2011.12.25 | Ben Longbons | 1 | -1/+1 | |
2011-09-10 | Merge commit '2c863c0d99aa3df9ef2eb4ceb112c4d946520f0a' | Ben Longbons | 1 | -46/+46 | |
2011-09-10 | Merge commit '723fb5d3431b847526c433a13aa74485cfb564a3' | Ben Longbons | 1 | -81/+54 | |
2011-09-07 | Allow calling script functions with no arguments, and improve argument strings | Ben Longbons | 1 | -68/+67 | |
Only functions that are still in my fork were considered for argument strings. Note, scripts need modification across this change to avoid a nonfatal error message: "illegal number of parameters line %d : %s" | |||||
2011-05-01 | Add script functions for getting a player's x and y locations | Chuck Miller | 1 | -0/+32 | |
2011-04-03 | Fix some more compiler warnings | Ben Longbons | 1 | -46/+46 | |
2011-03-24 | Optimize common objects, and adjust other objects accordingly. | Ben Longbons | 1 | -76/+49 | |
Major changes still need to be made to each of the servers. | |||||
2011-03-16 | Use makefiles correctly and expand include dirs | Ben Longbons | 1 | -6/+6 | |
2011-03-03 | Optional - restore Japanese comments where there are already english ↵ | Ben Longbons | 1 | -0/+1 | |
comments, or where the code has changed | |||||
2011-03-03 | Recovery and conversion of Japanese comments that had been lost as "invalid ↵ | Ben Longbons | 1 | -238/+238 | |
UTF-8" | |||||
2011-02-27 | making buildin_getareadropitems last argument optional | Stefan Beller | 1 | -2/+3 | |
buildin_getareadropitem takes at last argument, if the items should be deleted. This is now optional Reviewed by: Jessica Tölke | |||||
2011-02-26 | Adding an option to scriptfunction getareadropitem. | Jessica Tölke | 1 | -4/+25 | |
Count items on the floor and optionally delete them. Reviewed by Stefan Beller | |||||
2011-01-03 | adding the *getunactivatedpoolskilllist function to the server | Stefan Beller | 1 | -9/+42 | |
This function is a simple copy of getskillpoollist. It was extended, so it checks if that skill is activated. If so, it wont be returned. reviewed by: fate | |||||
2010-08-29 | Expand script function "misceffect" and clean up documentation | remoitnane | 1 | -9/+35 | |
2010-08-08 | Add script support for retrieving seconds since Unix epoch | remoitnane | 1 | -6/+17 | |
2010-04-11 | Remove script_rid2sd assignment on an otherwise unused variable | Freeyorp | 1 | -3/+0 | |
This is unused and gave false alarms about rid not being attached when it didn't need one. | |||||
2010-04-11 | Fix npcwarp | Freeyorp | 1 | -0/+2 | |
2010-04-04 | Allow modification of opt2 from scripts | Freeyorp | 1 | -239/+282 | |
2010-04-04 | Add npcwarp script function to allow an NPC to warp to a new position on its ↵ | No Name | 1 | -0/+38 | |
map. This patch models its behavior partly on that of movenpc and the atcommand npcmove. | |||||
2010-01-19 | fixed a few memory leaks | Helmut Grohne | 1 | -3/+1 | |
2010-01-19 | fixed a few buffer overruns | Helmut Grohne | 1 | -3/+4 | |
strncpy does not always terminate strings. Unterminated strings (without a length) are bad. So better terminate them. | |||||
2009-12-26 | Used the "indent" C formatting program from GNU to do some clean ups | Chuck Miller | 1 | -4857/+5929 | |
The command options used was: -nbad -bap -sc -bl -blf -bli0 -cli4 -cbi0 -di5 -nbc -bls -ip2 -nut -ts4 -bap -i4 -sob -npsl | |||||
2009-10-15 | Merge remote branch 'taw/master' | Jared Adams | 1 | -1/+1 | |
2009-10-10 | Better logging, initial job experience gathering, naming fixes to the skill ↵ | Fate | 1 | -2/+2 | |
script commands | |||||
2009-09-30 | Merge branch 'master' of git://gitorious.org/tmw-eathena/mainline | MadCamel | 1 | -2/+108 | |
2009-09-26 | Initial support for skill pools (available via at commands and | Fate | 1 | -4/+3 | |
untested scripting commands.) These changes also affect the format of the skill_db.txt file. | |||||
2009-09-20 | Initial support for skill pools | Fate | 1 | -0/+107 | |
2009-09-16 | Found and replaced more calls to rand() | MadCamel | 1 | -1/+1 | |
2009-07-15 | Add a function that unequips a particular type of equipment from a player | Freeyorp | 1 | -1/+25 | |
2009-07-07 | Fixes to socket system to make it cope better with fd depletion. | Dennis Friis | 1 | -6/+6 | |
Also added timeout for fullconnect, secured map server from stateless connections. | |||||
2009-06-22 | Addes the fakenpcname script function | Chuck Miller | 1 | -1/+29 | |
It pretty much follows the documentation listed below Minus the fact the sprite id is not optional http://www.valholl.ca/ref/eAthenaScriptCommands.html#fakenpcname | |||||
2009-06-06 | Fix 2nd parameter being truly optional on misceffect. Document it too. | Dennis Friis | 1 | -4/+5 | |
The name parameter can now be omitted safely. | |||||
2009-06-06 | Add support for optional charname target to script function misceffect. | Dennis Friis | 1 | -2/+10 | |
misceffect int number - shows effect on NPC misceffect int number, string taget - shows effect on named target | |||||
2009-05-30 | Added documentation for several eAthena extensions. Moved OnPCKillEvent ↵ | Fate | 1 | -2/+1 | |
magic label to OnPCKilledEvent, added complementary OnPCKillEvent that is the same, except invoked on a killer RID context. | |||||
2009-05-16 | Added sc_check command to determine whether a given status change is active | Fate | 1 | -0/+18 | |
2009-05-15 | builtin_menu: allocate memory for terminator byte | Fate | 1 | -1/+1 | |
2009-05-14 | Merge branch 'master' of git@gitorious.org:tmw-eathena/mainline | Fate | 1 | -5/+8 | |
2009-05-13 | Fixed all compiler warnings and several small bugs in the process | MadCamel | 1 | -3/+6 | |
2009-05-13 | menu command: skip all options after (and including) the first option with a ↵ | Fate | 1 | -8/+20 | |
blank line | |||||
2009-05-13 | Cleans up the net code for effects | Chuck Miller | 1 | -2/+2 | |
Removes the 0x1f3 packet since its the same as 0x19b packet, and our client doesn't handle 0x1f3. | |||||
2009-05-12 | Add a script function to see if the player is dead | Jared Adams | 1 | -2/+15 | |
2009-05-03 | Changed all times to use UTC | MadCamel | 1 | -3/+3 | |
2009-04-22 | Added 'shop' command to trigger a nearby shop | MadCamel | 1 | -1/+22 | |
2009-03-16 | Only resume script after divorce if need to | Jared Adams | 1 | -1/+4 | |
2009-03-16 | Now possible to divorce when partner is offline | MadCamel | 1 | -0/+3 | |
2009-03-14 | Fix some storage-related code | Jared Adams | 1 | -3/+12 | |
You can't end NPC scripts with openstorage, which will now wait for the user. | |||||
2009-03-11 | FIx a bug dealing with storage and scripting | Jared Adams | 1 | -0/+1 | |
Also remove some depug printing statements that were accidentally commited | |||||
2009-03-08 | Remove pet and vending systems | Jared Adams | 1 | -262/+12 | |