Akinari Posted June 3, 2013 Group: Members Topic Count: 32 Topics Per Day: 0.01 Content Count: 247 Reputation: 207 Joined: 10/23/12 Last Seen: March 2, 2022 Share Posted June 3, 2013 (edited) Replies can be posted here: http://rathena.org/board/topic/91431-re-script-commands-additionsupdates/This topic serves the purpose of informing everyone of new and updated script commands. This topic will not include updates to the scripting system (commits posted here might contain some though). Command: addridBug Report or Suggestion - Topic #84892Revision Added/Updated - 6572a9fNotes - Added addrid command for management of attaching more RIDs. Command: party* commandsBug Report or Suggestion - Topic #82922Revision Added/Updated - r17414 & r17415Notes - Added party related script commands for party management. Command: countboundBug Report or Suggestion - Topic #70372Revision Added/Updated - r17351Notes - Counts number of bounded items on a character. Also builds a list using @bound_items. Command: getitembound and getitembound2Bug Report or Suggestion - Topic #70372Revision Added/Updated - r17351Notes - Gives a character a bounded item.Command: getequipisidentifyBug Report or Suggestion - N/ARevision Added/Updated - r17341Notes - Command removed because it was useless.Command: addmonsterdrop and delmonsterdropBug Report or Suggestion - N/ARevision Added/Updated - r17326Notes - Temporarily add or delete drops from mobs. Will be overwritten on server restart or mob db reload. Check script_commands.txt documentation for usage. Command: sc_start#Bug Report or Suggestion - bugreport:7664Revision Added/Updated - r17326Notes - sc_start in scripting now offers much more versatility. Check script_commands.txt documentation for more information. Command: recoveryBug Report or Suggestion -Topic #82374Revision Added/Updated - r17321Notes - Recovery command now allows for a multitude of healing options. Check script_commands.txt documentation for more information. Command: unitwalkBug Report or Suggestion - bugreport:7626Revision Added/Updated - r17311Notes - Command was updated from a non-working state. Undocumented changes can be looked up in GitHub commit history. Edited October 22, 2016 by Secrets Added commit log 7 Link to comment Share on other sites More sharing options...
Cydh Posted July 16, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 747 Joined: 06/16/12 Last Seen: February 21 Share Posted July 16, 2013 [updated] Implemented Party Script Commands commits: r17414 r17415 - revision for party_delmember 1 Link to comment Share on other sites More sharing options...
Cydh Posted November 11, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 747 Joined: 06/16/12 Last Seen: February 21 Share Posted November 11, 2013 bonus_script "<script code>",<duration>{,<flag>{,<type>{,<char_id>}}} This command will attach a script to a player for a given duration, in seconds. After that time, the script will automatically expire. The same bonus cannot be stacked. Note that the maximum number of 'bonus_script' commands that can run simultaneously for a player is 20 (MAX_PC_BONUS_SCRIPT in 'src/map/pc.h'). Flags: &1: Remove when dead. &2: Removable by Dispell. &4: Removable by Clearance. &8: Remove when logout. Types: 0: Buff 1: Debuff Example: // Apple gives you +5 Str bonus for 1 minute when it's consumed. 512,Apple,Apple,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bStr,5; }",60; },{},{} 5 Link to comment Share on other sites More sharing options...
Cydh Posted December 24, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 747 Joined: 06/16/12 Last Seen: February 21 Share Posted December 24, 2013 getgroupitem(group_id) commit: 51074a0 Gives item(s) to the attached player based on item group's contents. This is not working like 'getrandgroupitem' which only give 1 item for specified item group. Can use const data for 'group_id', see db/const.txt at 'Item Group ID' section The item(s) that will be gained depends on the probability and random group for each item group, see db/[pre-]re/item_group_db.txt for available item group. More info, about this script command and new item group structure, please read doc/item_group.txt updated 'grouprandomitem' commit: 51074a0 Added 1 optional param 'sub_group' to support new item group structure. groupranditem(group_num{,sub_group}) updated 'getrandgroupitem' commit: 51074a0 Added 1 optional param 'sub_group' to support new item group structure. getrandgroupitem(group_id{,quantity{,sub_group}}) 1 Link to comment Share on other sites More sharing options...
Euphy Posted January 4, 2014 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted January 4, 2014 EDIT: includes some additional changes in 834f3ba. Not technically script commands, but anyway~ With the intent of making npc/other/Global_Functions.txt more useful, I've added the following functions in 97687ca: "F_GetPlural": Returns the plural of a noun - only follows basic rules, with few exceptions! callfunc "F_GetPlural","<noun>"{,<0:normal/1:uppercase>} // Examples: callfunc("F_GetPlural","dog") // returns "dogs" callfunc("F_GetPlural","fox",1) // returns "FOXES" callfunc("F_GetPlural","knife") // returns "knives" "F_InsertPlural": Returns the plural of a noun if the given number is not 1. <format string> uses sprintf(), and MUST contain %d (arg0) and %s (arg1), in that order. callfunc "F_InsertPlural",<number>,"<noun>"{,<0:normal/1:uppercase>{,"<format string>"}} // Examples: callfunc("F_InsertPlural",1,"dog") // returns "1 dog" callfunc("F_InsertPlural",3,"fox",1) // returns "3 FOXES" callfunc("F_InsertPlural",5,"knife",0,"^FF0000%d^000000 %s") // returns "^FF00005^000000 knives" "F_InsertArticle": Returns 'a' or 'an' based on a word - only follows basic rules, without exceptions! callfunc "F_InsertArticle","<word>"{,<0:lowercase a/1:uppercase A>} // Examples: callfunc("F_InsertArticle","apple") // returns "an apple" callfunc("F_InsertArticle","dog",1) // returns "A dog" "F_InsertComma": Returns a number with commas between every three digits. callfunc "F_InsertComma",<number> // Examples: callfunc("F_InsertComma",7777777) // returns "7,777,777" "F_GetNumSuffix": Returns a number with a '-st', '-nd', '-rd', or '-th' suffix. callfunc "F_GetNumSuffix",<number> // Examples: callfunc("F_GetNumSuffix",1) // returns "1st" callfunc("F_GetNumSuffix",11) // returns "11th" callfunc("F_GetNumSuffix",32) // returns "32nd" 3 Link to comment Share on other sites More sharing options...
Euphy Posted January 12, 2014 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted January 12, 2014 isbegin_quest(<ID>) commit: a3dbbe2 Return the state of the quest: 0 = Quest not started (not in quest log) 1 = Quest has been given (state is either "inactive" or "active") 2 = Quest completed Not very significant, but an alternative to Checkquest(ID,HASQUEST) that's better in most situations. 1 Link to comment Share on other sites More sharing options...
Euphy Posted January 14, 2014 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted January 14, 2014 strcmp("<string>","<string>") commit: d569d28 This command compares two strings are returns a value: 1: string 1 > string 2 0: strings are equal -1: string 1 < string 2 Don't know how this wasn't in the emulator for so long - it should open up a lot more scripting possibilities. ^^ 1 Link to comment Share on other sites More sharing options...
Euphy Posted January 29, 2014 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted January 29, 2014 preg_match(<regex pattern>,<string>{,<offset>}) commit: 957f495 Searches a string for a match to the regular expression provided. The offset parameter indicates the index of the string to start searching. Returns offsets to captured substrings, or 0 if no match is found. This command is only available if the server is compiled with the regular expressions library enabled.For some examples, read the "F_GetArticle" function in 957f495#diff-1. Link to comment Share on other sites More sharing options...
Cydh Posted January 30, 2014 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 747 Joined: 06/16/12 Last Seen: February 21 Share Posted January 30, 2014 enable_command() commit: 0310870 Player can use atcommand while interacting with NPC disable_command() commit: 0310870 Player cannot use atcommand while interacting with NPC Link to comment Share on other sites More sharing options...
Cydh Posted May 23, 2014 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 747 Joined: 06/16/12 Last Seen: February 21 Share Posted May 23, 2014 updated instance_enter commit: 1f426bc, d068dff, 233d7acAdded 2 optional parameters 'x' and 'y'instance_enter("<instance name>"{,<x>,<y>}); cartdelitem <item id>,<amount>{,<account ID>} commit: 01c30bfDelete item from player's inventory storagedelitem <item id>,<amount>{,<account ID>} commit: 01c30bfDelete item from player's storage cartcountitem <item id> commit: 01c30bfCount item from player's inventory storagecountitem <item id> commit: 01c30bfCount item from player's storage Well, also the cartdelitem2, storagedelitem2, cartcountitem2, and storagecountitem2. 3 Link to comment Share on other sites More sharing options...
Akkarin Posted October 21, 2016 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: 8 hours ago Share Posted October 21, 2016 petheal commit: d20cbcaDeprecated 'petheal' script command has been removed. Please update your pets with the appropriate petskillsupport command. Link to comment Share on other sites More sharing options...
Recommended Posts