Age | Commit message (Collapse) | Author | Files | Lines |
|
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Battlegrounds and WoE scripts folders
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Merchants scripts folders
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Jobs scripts folders
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Guides scripts folders
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Mobs scripts folders
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Warps scripts folders
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Mapflag scripts folder
Signed-off-by: Haru <haru@dotalux.com>
|
|
Now including GPL-compliant license/copyright info
Signed-off-by: Haru <haru@dotalux.com>
|
|
|
|
script
Signed-off-by: Haru <haru@dotalux.com>
|
|
|
|
Always use the prefix form of increment/decrement operators
where posible.
Signed-off-by: Haru <haru@dotalux.com>
|
|
|
|
|
|
|
|
- getitemname can return "null"
- getmapusers can return -1
and fix the bad ... misleading global function example
|
|
- Follow-up to 3bd77ffc0daca508352834add828766490075aee
- The names were too generic (not namespaced), and were easily clashing
with custom (and potential future official) constants or variables.
- Constants are now prefixed with a 'GETTIME_' namespace:
- GETTIME_SECOND
- GETTIME_MINUTE
- GETTIME_HOUR
- GETTIME_WEEKDAY
- GETTIME_DAYOFMONTH
- GETTIME_MONTH
- GETTIME_YEAR
- GETTIME_DAYOFYEAR
- Fixed some excessive (and some times incorrect) parentheses in
various scripts using gettime().
- Updated documentation.
Signed-off-by: Haru <haru@dotalux.com>
|
|
- The commands queueadd, queueremove, queueopt, queuedel and qiclear
now all return true (success) or false (failure). - Taken/extended
from AnnieRuru's PR #847.
- The constants HQO_OnDeath, HQO_OnLogOut, HQO_OnMapChange were renamed
to QUEUEOPT_DEATH, QUEUEOPT_LOGOUT, QUEUEOPT_MAPCHANGE respectively.
- The name of the variable @QMapChangeTo$ used during the
QUEUEOPT_MAPCHANGE event has been renamed to @Queue_Destination_Map$.
Signed-off-by: Haru <haru@dotalux.com>
|
|
Fixed invalid zeny deduction.
|
|
out)
|
|
constant for gettime( <type> )
constant for Weekday and Month.
|
|
|
|
Changed NPC id->constant in eden_iro.txt
Fixed case warning errors on may_hats.txt and mushroom_event.txt
|
|
|
|
Fixed a bug in Lv4 Weapon Quest dialog
|
|
Fix quests/first_class/tu_merchant.txt
|
|
Fix quest log linking in first_class/tu_sword.txt
|
|
Dialog with rolled rock/paper/scissors didn't appear because of variable typo.
An ancient one. Discovered by Aafemt.
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
|
|
Added missing Energy Crystal Book item_db.
Removed wrong equipments list for exchange.
Based on http://irowiki.org/wiki/Eden_Group_Crystal_Synthesis
|
|
invalid information.
|
|
Also applied several minor whitespace fixes.
Signed-off-by: Haru <haru@dotalux.com>
|
|
|
|
|
|
|
|
|
|
that was blocking players who had level 10 increase weight limit to continue the quest
|
|
Ancient Golden Decoration which is upper headgear.
|
|
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
The plugin is used by the Travis CI build, and it makes more sense to be
present here, so that it can be kept up to date when the HPM is
updated, to avoid build failures.
Signed-off-by: Haru <haru@dotalux.com>
|
|
|
|
- Replaced leftover sprite IDs with constants
- Corrected some NPC facing directions (in modulo 8)
- Follow-up to 7b50fce0f62961b0228e6919562efcfe33e7fbca
|
|
- Replaced leftover sprite IDs with constants
- Corrected some NPC facing directions (in modulo 8)
|
|
Always results "0" in dialog.
An ancient one. Discovered by Aafemt.
|
|
|
|
|
|
Enable the NPC to inform users the Auction not available due to the
feature isn't enabled by server.
|
|
Returns a number with commas based on precision of digits and custom
separator.
-- callfunc "F_InsertComma",<number>{,<precision>,<separator>}
Examples:
callfunc("F_InsertComma",7777777{,<precision>,<separator>}) // returns
"7,777,777"
callfunc("F_InsertComma",1000000000,3,","}) // returns
"1,000,000,000"
callfunc("F_InsertComma",1000000000,3,"_"}) // returns
"1_000_000_000"
callfunc("F_InsertComma",1000000000,4) // returns "10,0000,0000"
|