Common Scenario Directives
Please pay special attention: when editing scripts, you must use half-size punctuations!!! Meanwhile, in scenarios and all configuration tables, please avoid using strings that contain special characters. Otherwise, there might be errors when scripts are injected.
目录
- 1 Scenario Event
- 2 Scenario Event Trigger
- 3 Script Directive List
- 4 Global Save Directive
- 5 Built-in Directive List
- 6 Preset Fields of Scripts and Their Meanings
- 7 Format of Script Directive of Results in Scenario Event
- 8 Format of Conditional Expression Group
- 9 Game Data Calculation Expression System
- 10 Embedded Query Directive in Scenario Event
- 11 Directive Field of Global Save Query
- 12 Built-in Global Variable Field
- 13 Built-in Custom Variable Field
- 14 初始设定表内置字段说明
- 15 对话框及一些通用UI中支持的字体颜色指定代码
- 16 人物角色位置指令格式
- 17 游戏内全局位置指令格式
- 18 特定战斗中的单位限制指令格式
- 19 大地图单位控制指令表
- 20 单位队伍默认运动指令格式
- 21 物品列表信息格式
- 22 天气效果信息格式
- 23 镜头滤镜效果信息格式
- 24 人物表中具有特殊含义的TAG
- 25 地点表中具有特殊含义的TAG
- 26 阵营表中具有特殊含义的TAG
- 27 物品表中具有特殊含义的TAG
- 28 地图表中探索地图信息字段中特殊字段说明
- 29 副本信息表中TAG特殊字段说明
- 30 物品道具词条信息格式
- 31 物品掉落信息格式
- 32 特效对象事件脚本指令格式
Scenario Event
A scenario event is a basic element used to realize scenario scripts in the game. All scenario events in the game are called by emitters or executors and put into the directive queue. These scenario events will be run by the GameWorldManager one by one according to the in-game time. An integrate scenario event consists of the following parts:
1. Scenario Event ID: a unique label of a scenario event;
2. Directive Content: directives that will be executed after a scenario event is triggered;
3. Result: return a result according to the last directive, check conditions and jump to another possible line.
Scenario Event Trigger
Currently, all stories and events are established according to the mechanics of the scenario event trigger. The mechanics of a trigger is: event ports are set at different positions in advanced, and when the program accesses a position, it will call the port and import the current environment variables. The program will then traverse all defined triggers in the port event and return the trigger with the highest priority or all triggers that meet the conditions (to return one or all triggers is decided by the type of a port). Finally, a scenario event is executed. Triggers’ calling events is not executed immediately. Relevant events are put into the execution queue and get carried out procedurally until all events in the queue are executed.
Following is the list of scenario events defined in the game (port types in bold indicate that they execute all trigger events that meet the conditions instead of executing the one of the highest priority):
Port Type | Explanation | Object Type | Object ID |
---|---|---|---|
passive | Triggered passively;
usually used on triggers in the map editor or triggers that use the TRIGGER directive to execute directly. |
||
talk | Triggered when interacting with NPC. | ||
first_in | Triggered when the player enters the game for the first time. | ||
encounter | Triggered when interacting with units on the sandbox map. | Control ID of the target Unit. | |
before_enter_map | Triggered when entering the target map (if any mission trigger responds, the action of entering the map will be interrupted). | Target map ID. | |
enter_map | Triggered when entering a map. | Target map ID. | |
before_leave_map | Triggered when leaving the target map (if any mission trigger responds, the action of entering will be interrupted). | Target map ID. | |
leave_map | Triggered when leaving a map. | Current map ID. | |
enter_place | Triggered when entering the target location. | Target location ID. | |
reach_place | Triggered before entering a location on the world map (if any trigger responds, the action of entering the locaction will be interrupted) | Target location ID. | |
leave_place | Triggered when leaving the current location. | Current location ID. | |
before_leave_place | Triggered before leaving the current location (if any trigger responds, the action of leaving the location will be interrupted). | Current location ID. | |
enter_building | Triggered when entering the target building | Target building ID. | |
reach_building | Triggered before entering the target building (if any trigger responds, the action of entering the building will be interrupted). | Target building ID. | |
leave_building | Triggered when leaving the target building. | Target building ID. | |
before_leave_building | Triggered when leaving the target building (if any trigger responds, the action of leaving the building will be interrupted). | Target building ID. | |
battle_start | Triggered at the start of a battle. | ||
battle_over | Triggered at the end of a battle. | ||
set_lord | Triggered when AI appoints player as the ruler of a city. | ||
job_cmd | Triggered when the player is given a working order. | ||
see_warband | Triggered when encountering another squad and battle. | ||
curplace_inwar | Triggered when the location where the player is currently settling in is attacked. | ||
quest_done | Triggered when all conditions of a mission are met (mission incomplete). | 任务ID | |
on_end_work | Triggered when completing a mission of a location. | ||
occupy_place | Triggered when the player occupied a location. | Target location ID. | |
new_day | Triggered when starting a new day. | The target number of days. | |
reward_follower | Triggered when the player rewards their followers. | ||
reward_player | Triggered when the player is rewarded. | ||
dip_event | Triggered when the player’s faction meets diplomatic affairs. | Affair types:
1: Ransom Hostage 2: Friendly 3: Declare War 4: Alliance 5: Alliance Dismissed 6: Armistice. |
Target Faction ID. |
dip_ret_success | Triggered when the player’s diplomatic request is met. | Same as above. | Same as above. |
dip_ret_fail | The diplomatic request is not met. | Same as above. | Same as above. |
player_failed | Triggered when the player failed in a skirmish. | ||
reinforce_request | Triggered when reinforcement related to player happens. | ||
is_fall | Triggered when a faction collapsed. | Faction ID. | |
is_to_fall | Triggered when a faction loses all bases and is about to collapse. | Same as above. | |
before_cash_present | Triggered before being rewarded (action of rewarding is interrupted). | ||
before_present | Triggered before sending a gift (action of sending the gift is interrupted). | ||
on_present | Triggered when sending a gift. | ||
encounter_role | Triggered before the common dialogue that happens when the player encounters a character. | Target Character ID. | |
helped_camp | Triggered when the player encounters a conflict between two sides and helped one side. | The faction of the leadrole of target’s squad. | |
on_place_rep_up | Triggered when area tribute increased; the latest tribute value is stored in arg_int_val1. | ||
on_place_rep_down | Triggered when area tribute decreased; the latest tribute value is stored in arg_int_val1. | ||
team_dismiss | Triggered when a squad is dismissed. | Squad Type:
0: character squad 1: squad created by scripts 2: caravan 3: dummy 4: peasant. |
|
team_into_place | Triggered when a squad enters a location. | Squad Type: same as above. | Target location ID. |
Script Directive List
Script directives in the game usually follow the format of directive type*parameter 1#parameter2#...#parameter N, and uses line break to separate multiple lines of directives.
Currently, supported script directives are:
Directive | Instruction |
---|---|
(null) | Character Text Box
Function: show a dialogue with the typewriter effect and character painting. Format: *Character ID(@position of character painting)#paragraph 1#paragraph 2#paragraph 3#...#paragraph N. Annotation: When certain paragraph needs to be bound with audios, add <voice:audio ID> in the front of the paragraph to show the according to the audio file for the words. The audio will be turned off when you skip the paragraph. You can separate multiple paragraphs by “|” so that one of these paragraphs will be returned randomly. When the paragraph begins with “inner:...”, a special piece of information is used; The built-in special information IDs and meanings are as follow: inner:set_player_job: object’s words when they give orders to player inner:set_player_lord: text when the player is appointed as a ruler inner:self_introduce: self-introduction of a character inner:cur_doing: the content of what the current character has been doing inner:cur_team_intent: intension of the current squad *position of character painting: can be both L or R; set to be L by default—L stands for the left side of the text box, R for the right side. |
EVENT | Jump-to Event
Function: Jump to and execute another specific scenario event ID. Format: EVENT*scenario event ID#jump to the index value of the target event's subcommand line (starts from 0). |
SUB_EVENT | Jump-to Subevent
Function: jump to and execute another specific subevent and is able to jump back via the SUB_EVENT_RETURN directive. Format: SUB_EVENT*scenario event ID. |
SUB_EVENT_RETURN | Return to Subevent
Function: jump back to the last subevent from the current subevent. Format: SUB_EVENT_RETURN* |
SELECT | Dialogue Selection List Box
Function: Based on the text box, after the dialogue content is printed, a selection list box pops up, lets the player choose an option, and returns the result (the according [%result_code%] of the result command in the event). Format: SELECT*character ID#dialogue content#1:option 1*condition group 1;2:option 2*condition group 2;…:N:option N*condition group N (only when a set of conditions are met or the group is empty will the option shows up; otherwise, it will be hidden). Annotation: when the KEY of an option begins with "+", the text box will not disappear after the player selects an option. |
SELECT_TALK | Plugin Dialogue Option
Function: a selection list box that can present new options via a trigger list. Format: SELECT_TALK*character ID#dialogue content#[ADDON_SELECT];[fixed option(e.g., 0: cancel)]#filter tag (separated by "|"; set to be "any" by default) Annotation: the first two parameters are the same as SELECT; the fourth parameter is the trigger type (set to be "any" by default if nothing is filled in), but certain options (whose trigger type is SELECT and meet conditions) will be selected from the trigger and be added as new options; the text shown is bound in the trigger, and the content of the triggered event is decided by the trigger event ID. Please note: when using this directive, you need to add "[%result_code%][>]99:EVENTPOJO_EVENT* " to the result In the trigger list, you can add a prefix "SUB_EVENT." to a trigger event ID to mark it as a subevent. |
CMD_SELECT | System Selection List Box
Function: a text box with a "confirm" button pops up. Format: CMD_SELECT*select text info#option group (same as SELECT directive). |
CONFIRM | Text Confirmation Box
Function: a text box with a "confirm" button pops up. Format: CONFIRM*text to confirm |
TOAST | Message on Screen
Function: a message pops up on the screen, which disappears after a short while. Format: TOAST*message content |
BB | Character Icon Pop-up
Function: a character text box pops up at the specific position, without disturbing the current game. The player does not need to perform actions. The text box will disappear in a while. Format: BB*character ID#dialogue content#extra existing time (counts by second; based on the original existing time of the dialogue, which is measured by the length of text). |
GAME_MSG | In-game News
Function: show a text in the UI message box, which can be reviewed in the News Log. Format: GAME_MSG*news content#new type (0: Normal; 1: Warning; 2: System). |
INPUT | Input Text Box
Function: a text box pops up, and you can restore what you input in the queriable variable ([%input_str%]). Format: INPUT*notice text#Len number limit of digit#default text. |
DELAY | Delay
Function: delay the current situation for a while (counts by seconds in the real world; the player cannot perform any action during the delay). Format: DELAY*waiting time (second).) |
SCREEN | Fullscreen Subtitle
Function: show a subtitle in fullscreen (default background colour is black; transparency is adjustable). Format: SCREEN*subtitle#resource name of background image#transparency (optional; default: 1). |
BLACK_SCREEN | Screen Curtain
Function: cover the UI layer of the screen with a black curtain. Only UI objects like fullscreen subtitles can be shown on the curtain. Format: BLACK_SCREEN*turn on or not(0: Disabled; 1:Enabled). |
SHAKE_SCREEN | Screen Shake
Function: execute a screen shake effect. Format: SHAKE_SCREEN*Time(second)#intensity (e.g., SHAKE_SCREEN*0.3#3). |
SET_WEATHER | Set Weather
Function: Set and replace the current weather in the game. Format: SET_WEATHER*weather effect directive. Annotation: Format of weather effect directives: weather effect ID1, intensity|weather effect ID2, intensity|…weather effect IDN, intensity. E.g., 雪,60|雾,20 Intensity Range:0~100; when the intensity is 0, the weather effect is disabled For weather effect ID, please refer to 天气效果信息格式 |
BATTLE | Start Battle
Function: start a skirmish or a battle defined in a specific battle table. Format: BATTLE*battle ID (if you do not fill in a specific battle ID or fill in “ENCOUNTER”, you start a skirmish)#BGM (optional; if there is a BGM in a particular battle). |
BATTLE_WITH | Fight with Specific Unit
Function: start a custom fight with a specific target. Format: BATTLE_WITH*target character info (optional)#minion info of the target (optional)#battle map info (optional)#battle location info (optional)#battlefield weather (optional)#BGM (optional). |
BATTLE_WITH_TAGROLE | Fight with Target Character
Function: start a specific fight with the target character immediately. Format: BATTLE_WITH_TAGROLE*battle ID (battle ID is used to trigger scenario event only)#specific BGM (optional; if there is a BGM for a specific battle). |
CHANGE_BGM | Change Current BGM of the Game
Function: change the current BGM of the game based on the need of stories. Format: CHANGE_BGM*parameter 1#paramter 2 Parameter 1: AudioID of the target BGM (switch back to the default BGM of the current map if this is empty; when the remaining field of this ID is “MUTE”, which means no BGM is played currently). Parameter 2: validation type (0: invalidated when switching scenes; 1: always validated even when you save the game and come back unless you recall the CHANGE_BGM directive and define an empty AudioID). |
PLAY_SOUND | Sound Effect
Function: play a sound effect in the game. Format: PLAY_SOUND*sound effect ID#delay time(set 0 by default). |
PLAY_ROLE_VOICE | Play Character Voice-over
Function: play an audio file that is defined in “Voice” of the character’s tags. Format: PLAY_ROLE_VOICE*character ID, the setting of “Voice” of the relevant character’s tags. |
DUNGEON | [Unavailable] |
NUMSEL | Input Value Text Box
Function: a text box pops up, and you can restore what you input in the queriable variable ([%result_code%]). Format: NUMSEL*text of input box#min value#max value#default value#item price#price message(when the item price is 0, system does not show the price message. Otherwise, the message needs to follow the format of “{0} Utar(s) for each unit, {1} Utar(s) in total”). |
CHANGE_MONEY | Change Player’s Money in Hand
Function: change the amount of money the player is holding according to the change value (the value can go lower than 0). Format: CHANGE_MONEY*change value. |
ROLE_CHANGE_MONEY | Change a Specific Hero’s Money in Hand
Function: change the amount of money the player is holding according to the change value (the value can go lower than 0). Format: ROLE_CHANGE_MONEY*Hero ID#change value. |
GETITEMS | Player Gets Items or Resources
Function: player’s character gains a list of items (please note: money, exp, and resources in the game can all be gained this way, as long as you have the correct mapping IDs). Format: GETITEMS*item list info (e.g., GETITEMS*Tea of Merchant’s Guild, 3| Bread,1). |
AI_CAMP_GETITEMS | All Factions Get Items or Resources
Function: Same as the GETITEMS Directive. All factions get items or resources after calling the current directive. Format: AI_CAMP_GETITEMS*item list info. |
TRANSFER_ITEMS | Convert Item
Function: convert a specific item in the current item list into a new item proportionally. Format: TRANSFER_ITEMS*original item ID#new item ID#number of original item# number of new item#conversion time. E.g., “TRANSFER_ITEMS*小麦#小麦粉#1#1#10” means converting wheat(小麦) into wheat powder(小麦粉) at a 1:1 proportion. If during the conversion, the original item becomes insufficient, the conversion stops. |
GET_RND_ITEM | Select a Type of Item Randomly
Function: select a type of item randomly among several items. Format: GET_RND_ITEM*object item list (e.g., GET_RND_ITEMS*茶叶(Tea), 3|面包(Bread), 1|牛奶(Milk), 2. This means that you will get one type of the three.) |
REMOVE_ITEMS | Remove Specific Item or Resource
Function: remove a certain number of items from the item list of the player. Format: REMOVE_ITEMS*item list. |
REMOVE_SELECT_ITEMS | Remove the Selected Item
Function: remove a certain number of items after creating the UI Selection Item List according to the ITEMS_SELECTOR directive. Format: REMOVE_SELECT_ITEMS*maximum number of selected groups (choose object groups in the front from the selected targets)#number of removal(optional; set -1 by default. When the number is lower than 0 or higher than the number of the object’s stacks, remove the whole group. Otherwise, draw a specific number of all selected targets). |
REMOVE_PRESENT | Remove Specific Gift Item That Meet Requirement
Function: remove a gift item from the item list based on a specific gift tag. Format: REMOVE_PRESENT*gift description. For the format of gift description, please refer to the format of the tag of "Like" in the mission list. |
ITEMS_SELECTOR | Open Item Selection Text Box
Function: an item selection text box pops up. You can restore your choice in a queriable variable ([%last_seled_items%],[%last_seled_item_id%], etc). Format: ITEMS_SELECTOR*title of text box#number limit (no limit when below 0)#conditional expression filter. |
LOOT | Execute Drop Check
Function: execute a check according to the loot list (please refer to the: Format of Item Dropping Info). Format: LOOT*Loot list |
TEAM_GAINEXP | Player’s Squad Gains EXP
Function: members in the player’s squad gain average EXP. Format: TEAM_GAINEXP*exp gained (every unit gains the same amount of EXP). |
TEST_ADD_ROLE_EXP | Specific Hero Gains EXP
Function: a specific hero gains EXP. Format: TEST_ADD_ROLE_EXP*hero ID#exp. |
CHANGE_ROLE_LV | Change Character Level
Function: change the level of a specific character. Format: CHANGE_ROLE_LV*hero ID#expected level. |
PLAYER_GUARDS_LEVELUP | All Defending Heroes Level Up
Function: all heroes in a specific location increase their level by 1. Format: PLAYER_GUARDS_LEVELUP*location ID. |
PLAYER_TEAM_LEVELUP | All Heroes in Player’s Squad Level UP
Function: all heroes in the player’s squad level up directly. Format: PLAYER_TEAM_LEVELUP*. |
SETTRIGG | Set Trigger Switch
Function: turn on or turn off a trigger directly. Format: SETTRIGG*trigger ID#status value (0: On; 1: Off) |
TRIGGER | Execute Trigger
Function: execute a specific trigger directly. Format: TRIGGER*trigger ID |
SET_ES | Manually Set Scenario Event Status
Function: set the execution status of a scenario event manually (after the logics have been executed, the result will be marked with ResultCode of the current event). Format: SET_ES*scenario event ID*status value (-1: Unexecuted; other values are the ResultCode of this event). |
SETINTVAR | Set Custom Int Variable
Function: set a custom int variable (recorded by saves). Some variable fields will be connected the in-game logic parameter (for custom int variable that are defined inside the program, please see the“自定义变量参数表”) and can be queried via built-in query parameter ([%int_val:ID%]). Format: SETINTVAR*parameter ID#current int value |
CHANGEINTVAR | Change Custom Int Variable
Function: change the value of the current custom int variable. Format: CHANGEINTVAR*parameter ID#value change (can be a negative number)#[optional: forceZero] After filling in forceZero, the value will not go below zero. |
SET_TEMP_ID | Set Temporary ID Variable
Function: set a temporary ID, which will not be recorded in saves and needs to be accessed in a unique way. Format: SET_TEMP_ID*ID. |
SETSTRVAR | Set Custom String Variable
Function: set a string variable that can be recorded in saves. You can query this via built-in query parameter ([%str_val%]). Format: SETSTRVAR*Variable ID#string value. |
SETGAMETIMETAG | Tag a Custom Crucial Time Point
Function: tag and record the current in-game time point with an ID. You can use [%tag_gametime_elapse%] to load the time span since the time point you record. Please note: this directive is only used to transfer temporary variables in a series of stories, and the tag will not be stored in saves. Do not use this for scenes that need permanent data. Format: SETGAMETIMETAG*time point ID. |
SETGAMETIME | Tag a Custom In-game Time Point
Function: tag and record the current in-game time point with an ID. You can query the relevant info of this time point via query parameter (see[%gametime_elapse%] and [%gametime_elapse_by_day%], etc.). Format: SETGAMETIME*time point ID. |
SET_CUSTOM_CD | Set a Custom Cooldown Time
Function: set a custom cooldown timer and see whether the current cooldown is in use by checking if [%is_custom_cd:ID%] is 1 or not. Format: SET_CUSTOM_CD*custom ID#Cooldown time(≤0: the cooldown is disabled;>0: set a specific time (count by day)). |
GET_QUEST | Claim a Mission
Function: claim a specific mission. Format: GET_QUEST*mission ID. |
ADD_QS | Add Mission Subitem Counter
Function: add a subitem counter of missions manually. Format: ADD_QS*mission ID#subitem index (starts from 0)#number of counter. |
SETQUESTIEM | Set Value of Mission Subitem
Function: set the value of the subitem of missions. Format: SETQUESTIEM*mission ID#subitem index#value |
DONE_QUEST | Complete a Mission
Function: mark and complete a specific mission. Format: DONE_QUEST*mission ID#reward or not(1: Yes). |
SHOW_IMG | Show a Character Painting Frame
Function: [not suggested; recommend using the SHOW_CG direcitve]. Format: SHOW_IMG*name of image*preset special effect 0*duration (second). Format: SHOW_IMG*image resource name*preset special effect 0 *existing time (second). |
CLOSE_IMG | Disable Character Painting Frame
Function: disable the current character painting frame. Format: CLOSE_IMG*preset special effect 0. |
JOIN_ROLE | Force Character to Join
Function: force a character to join your squad. If your team is full, this character will be placed in the Manage panel. Format: JOIN_ROLE*character ID. |
QUIT_ROLE | Force Character to Leave
Function: force a character to leave your squad. Format: QUIT_ROLE*character ID. |
SET_PLACE | Change Location Status
Function: set the current status of a location. Format: SET_PLACE*location ID#status value (0: Normal; 1: Destroyed; -1: Hidden). |
SET_ROLEPOS | Set Character Position
Function: set a character’s position compulsorily (for character position info format, see the Character Position Directive). Format: SET_ROLEPOS*character ID#position info |
LEAVE_PLACE | [Unavailable] |
TELEPORT | Teleport Player to Specific Position
Function: teleport player’s squad to a specific position in the world. Format: TELEPORT*world position info. |
TELEPORT_TO_PLACE | Teleport Player to Specific Location
Function: teleport player’s squad to a specific location. Format: TELEPORT_TO_PLACE*location ID. |
TELEPORT_TO_ROLE | Teleport Player to Target Character
Function: teleport player’s squad to where the target character is currently staying (this only works when the target is in a squad or a location). Format: TELEPORT_TO_ROLE*character ID. |
MAP_CMD | Exclusive Directive Group for Unit Control on Sandbox Map
Function: control various units to execute specific directives on a sandbox map. Format: MAP_CMD*directive content Move to the target coordinate: MOVETO#target ID# X, Y of target coordinate X, Y#waiting for callback (1: No; 0: Yes). Chase a specific target: CHASE#object ID#target ID#waiting for callback (1: No; 0: Yes). Player enters a specific location: ENTER_PLACE#target location ID#method (0: Normal; 1: Stealth)#block enter_place events (0: No; 1: Yes). Show a battle mark: SHOW_BATTLE_MARK#X, Y of the target coordinate. Hide current battle mark: HIDE_BATTLE_MARK#1. |
RESTORE | Player’s Squad Get Recovered
Function: all units in the player’s squad are recovered. Format: RESTORE*parameter (<=0: squad fully recovered; >0: squad recovered by a specific point). |
TIME_ELAPSE | Time Acceleration
Function: use this directive to accelerate in-game time. During the acceleration, a time bar will show up. Format: TIME_ELAPSE*in-game time#time multiplier#frame message#can be canceled (0: Yes(default); 1: No)#show time bar (0: No(default); 1: Yes)#operation icon(icon name under Assets\BuildSource\Icons)#UI follows player’s squad (0: No; 1: Yes). |
WAIT_EXEC | Wait and Execute a Script Event
Function: show a timer and wait for some time (in-game). A scripted event will be executed when the timer ends. Format: WAIT_EXEC* in-game time#time multiplier#frame message#can be canceled (0: Yes(default); 1: No)#script event ID #operation icon(icon name under Assets\BuildSource\Icons)#UI follows player’s squad (0: No; 1: Yes). |
OPENSEIGE | Open Siege Management Panel
Function: show a siege management panel and operate reinforcement squads based on the preset (this should work with a proper directive triggering environment. E.g., city-entering trigger). Format: OPENSEIGE*panel mode(0: attack city; 1: defend city)#target location ID (optional; set to be the target location of the current environment variable by default). |
OCCUPY | Execute City Occupation
Function: execute city occupation check based on the current environment (this should work with a proper directive triggering environment. E.g., city-entering trigger). Format: OCCUPY*0. |
JOIN_WARBAND | Join Warband
Function: joined an existed warband(a group of fighting squads from two different sides) (use [$tagwb:id$] to obtain the Warband info of the current skirmish). Format: JOIN_WARBAND*warband ID. |
CHANGE_CAMP | Change Character Faction
Function: change the faction of a target character directly. Format: CHANGE_CAMP*faction ID#target character ID#recruiter ID(if this field is player then the character will join the player’s squad directly). |
CREATE_OWN_CAMP | Player Creates Their Faction
Function: player creates and activates their own faction. Player’s faction has a fixed default ID: Self-built Faction. This faction exists since the beginning of the game, but it is inactivated. Calling this directive will activate the player’s faction, making player and their followers join this faction. Format: CREATE_OWN_CAMP*name of self-built faction. |
SET_CAMP_ACTIVE | Change Faction Project Status
Function: change the project status of a faction. When a faction is inactive, it will not execute any strategy or faction behaviour. Format: SET_CAMP_ACTIVE*faction ID#status value (0: Inactive; 1: Active). |
SET_CAMP_RL | Change Faction Relationship
Function: change diplomatic relationship or friendliness between factions. Format: SET_CAMP_RL*faction A#faction B#relationship (-1: Remain the same; 0: Neutral; 1: Hostile; 2: Friendly)#friendliness value change#expected friendliness value (if this field exists). |
CHG_CAMP_REP | Change Player’s Prestige (Tribute) towards Faction
Function: change player’s prestige (Tribute) towards a faction. Format: CHG_CAMP_REP*target faction ID#value change#expected value (this works when the value is not empty). The faction refers to the player’s current faction if the faction ID is empty. |
CHG_PLACE_REP | Change Player’s Prestige (Friendliness) towards Faction
Faction: change the player’s prestige (Friendliness) towards a faction. Format: CHG_PLACE_REP*locationID#value change# expected value (this works when the value is not empty). |
FAME | Change Player’s Global Prestige
Function: change the player’s current global prestige. Format: FAME*value change. |
CHANGE_FAME | Change Character’s Global Prestige
Function: change a specific character’s current global prestige. Format: CHANGE_FAME*target character ID#value change. |
CHG_PERSON_FV | Change Favor between the Player and a Character
Function: change favor between the player and another character. Format: CHG_PERSON_FV*target character ID#value change#expected value (this works when the value is not empty). |
SET_ROLE_ACTIVE | Change Character Project Status
Function: change the project status of a character (not controlled by the player). When this character is inactive, they will not be refreshed in Taverns or execute AI actions like moving. Format: SET_ROLE_ACTIVE*character ID#status value (-1: Inactive; 0: Active). |
CHG_PROSP_BY_CAMP | Change Prosperity of All Bases of Faction
Function: change the prosperity of all bases of a specific faction proportionally. Format: CHG_PROSP_BY_CAMP*faction ID#percentage(>=100). |
CHG_PLACE_PROSPERITY | Change Location Prosperity
Function: change the Prosperity of a specific location by a fixed value. Format: CHG_PLACE_PROSPERITY*location ID#value change#expected value (this works when the value is not empty; cannot exceed the maximum Prosperity of the location). |
CHG_PLACE_PROSPERITY_BY_PCT | Change Location Prosperity by Percentage
Function: change the Prosperity of a specific location by percentage. Format: CHG_PLACE_PROSPERITY_BY_PCT*location ID#percentage change (>=100). |
CHG_PLACE_DEF | Change Location Defense
Function: change the Defense of a location by a fixed value. Format: CHG_PLACE_DEF*location ID#value change#expected value(this works when the value is not empty; cannot exceed the maximum Defense of the location). |
CHG_PLACE_DEF_BY_PCT | Change Location Defense by Percentage
Function: change the defense of a location by percentage. Format: CHG_PLACE_DEF_BY_PCT*location ID#percentage change. |
CHG_PLACE_SECURITY | Change Location Security
Function: change the security of a location by a fixed value. Format: CHG_PLACE_SECURITY*location ID#value change#expected value (0-100). |
PLACE_CUSTOM_INT | Custom Field Value of Location
Function: a custom int field value of a specific location. Format: PLACE_CUSTOM_INT*location ID#mark ID#int mark value. |
CHG_PLACE_CUSTOM_INT | Change Custom Field Value of Location
Function: change the custom int value of a specific location. Format: CHG_PLACE_CUSTOM_INT*location ID#field KEY#value change#target value. |
PLACE_ADD_BUILDING | Add Custom Facility
Function: add a custom facility to a location. Format: PLACE_ADD_BUILDING*location ID#facility ID (invalidated when the target location already has this facility).
|
PLACE_REMOVE_BUILDING | Remove Custom Facility from Location
Function: remove a specific custom facility from a location. Format: PLACE_REMOVE_BUILDING*location ID#facility ID. |
CREATE_CARAVAN | Create Caravan
Function: create a caravan in a specific location. Format: CREATE_CARAVAN*set-off city ID#destination city ID#TAG (TAG used to mark squad). |
CREATE_TEAM | Create Squad
Function: create a squad, which takes actions according to specific directives. Format: CREATE_TEAM*position on the map#faction#character list (characters included will leave their current squads or locations compulsorily)#minion card list (card ID#level, number |card ID2#level 2, number 2|.......)#directive method (see below)#directive parameter#squad TAG(used to search for specific squads). Currently, supported directive methods are: · 0: custom directive: the parameter of the custom directive is the directive for the squad (format: directive type 1, parameter 1; directive type 2, parameter 2;……; directive type N, parameter N) For detailed directive format, please see the Squad Preset Directive. · 1: premade directive of invading city: the parameter is the ID of the target city, invasion method (set 0 by default). · 2: premade directive of invading faction: the parameter is the ID of the target faction, priority of target (0: Distance first; 1: Defense first), invasion method (set 0 by default). |
DISMISS_TEAM | Dismiss Squad
Function: dismiss a specific squad. Format: DISMISS_TEAM*map unit identification ID |
TEAM_ORDER | Change Squad Directive
Function: change the current directive list of the squad. Format: TEAM_ORDER*map unit identification ID#new directive (for the detailed directive format, please see the Squad Preset Directive). |
INVASION_PLACE | Attack Location
Function: assign one location to attack another location. These two locations must belong to two opposite factions and have battle units inside. Format: INVASION_PLACE*attacker (location) ID#target location ID#attack method (set 0 by default). |
INVASION_CAMP | Attack Faction
Function: assign one faction to attack another faction immediately. Please note: these two factions must be hostile towards each other or both stand neutral. If the attacker does not have sufficient military power, the attack might not happen. Format: IVASION_CAMP*attacker (faction) ID#target faction ID#priority of target(0: Distance first; 1: Defense first)#invasion type (0: Occupation; 1:Raid)#number of bases involved (0: All; >0: bases that are close)#invasion intensity (0: Maintain strength; 1: All out (use all resources)). |
OPENSTORE | Open Trade Panel
Function: open the trade panel with a specific merchant. Format: OPENSTORE*merchant ID (execute an auto query based on the location and the current NPC if this ID is empty). |
RESET_STORE | Refresh Merchant’s Items
Function: refresh a merchant’s item based on the configuration. Format: RESET_STORE*merchant ID |
ADD_LOCAL_PRODUCT | Add Map Specialty
Function: add specialities to a specific map. Nearby merchants will refresh their speciality offerings after adding. Format: ADD_LOCAL_PRODUCT*specialty ID#map ID#central coordinate X#central coordinate Y. |
TRADE_PERMISSION | Set Trade Permission
Function: set trade permission for a location. Format: TRADE_PERMISSION*location ID*can trade or not (0: No; 1: Yes). |
TROOPS_ALLOC | Garrison Panel
Function: open the garrison panel of a location. Format: TROOPS_ALLOC*location ID (refer to the current location if the ID is empty). |
GETSKILL | Learn Skill
Function: add a new skill to a character. Format: GETSKILL*character ID#skill list (format of single skill: skillID, level(optional); use “|” to separate multiple skills). |
LEARN_SKILL | Consume Skill Point to Learn Skill
Function: select a character in a squad and make them learn a new skill. If they do not have enough skill point, they cannot learn the skill. Format: LEARN_SKILL*skill ID#skill point needed (can be empty; set 1 by default). |
REMOVESKILL | Forget Skill
Function: remove a skill from a specific target. Format: REMOVESKILL*character ID#skill list (use “|” to separate multiple skills) |
RESET_SP | Reset Skill Point
Function: reset the skill points of a character. Format: RESET_SP*character ID |
ADD_UNUSEDSP | Change Available Skill Point
Function: add a new skill point to a player and allocate the skill point. Format: ADD_UNUSEDSP*number of skill point. |
SET_SKILLPAGE | Activate or Remove Player’s Skill Page
Function: activate or remove a skill page of the player. Format: SET_SKILLPAGE*skill page ID table (separate with “,”)#status (1: Activate; 0: Remove)#target character ID (optional; set to be player by default). |
SHOW_TEAMINFO | Show Info of Current Squad
Function: show the information on the current squad that you encounter. Format: SHOW_TEAMINFO*1. |
SET_FLAG | Set Complete Mark
Function: set a mark to indicate accomplishment, which is usually used at the critical turning point of the story. Format: SET_FLAG*name of the mark#mark value. |
UPDATE_MARKS | Mark Update
Function: update marks on the map. Format: UPDATE_MARKS*1. |
SET_DUMMY | Set Dummy or Creep Status
Function: set the status of dummies or creeps on the map. When taking control of creeps, the dummy ID is the creep ID. Format: SET_DUMMY*dummy ID#status (0: Displayed; -1: Hidden). |
SET_CAMERA | Set Camera Mode on Sandbox Map
Function: control the camera mode on the sandbox map. Format: SET_CAMERA*camera mode#parameter and meanings of the parameters: 0: follows the player’s character. No parameter (default). 1: follows a specific target. The parameter is the particular map unit identification ID. 2: focuses on a position. The parameter is the coordinate (map ID: X, Y)#camera movement speed. |
SET_PLACE_CAMP | Set Faction-exclusive Location
Function: change the faction of a location. Format: SET_PLACE_CAMP*target location ID#target faction ID#occupy by invasion (1: Yes; 0: No). |
SET_MAP_CAMP | Set Faction-exclusive Map
Function: change the faction of all cities on a map. Format: SET_MAP_CAMP*target map ID#from faction ID#to faction ID#occupy by invasion or not (1: Yes; 0: No). |
TRY_RECRUIT_FREE_ROLE | Try Neutral Hero Recruitment
Function: try to execute a neutral hero recruitment check (Return 1: successful; return 0: Internal error; return 2: squad full). Format: TRY_RECRUIT_FREE_ROLE*character ID. |
CHK_RECRUIT_CAPTIVE | [Unavailable] |
RELEASE_CAP | [Unavailable] |
SEND_ENVOY | Send Diplomatic Envoy
Function: send a diplomatic envoy for specific diplomatic missions. Format: SEND_ENVOY*faction ID (refer to player’s faction when empty)#diplomatic behaviour (1: Ransom; 2:Friendly; 3: War; 4: Alliance; 5: Alliance broke; 6: Armistice)#target ID (when you ransomed a character, it is the character ID; otherwise it is the target faction ID)#additional parameter(usually it is the required amount of money)#envoy arrival (1: No waiting time; 0: Need to wait). |
DIP_DECIDE | Execute Diplomatic Event Check
Function: have a check on the current diplomatic event (used only in a specific trigger environment of the diplomatic event). Format: DIP_DECIDE*result code (1: Agreement; 0: Decline). |
EXPEL_ROLE | Expel Character
Function: expel a character out of a faction. Format: EXPEL_ROLE*faction ID#character ID. |
TRY_REWARD_ROLE | Try to Reward a Follower
Function: try to reward a follower. Format: TRY_REWARD_ROLE*character ID (refer to the current object if the ID is empty). |
ADD_GLOBAL_BUFF | BUFF Add Global Buff to Squad
Function: add a global buff to the current squad. Format: ADD_GLOBAL_BUFF*buffID#duration (in-game days)#number of stacks (set 1 by default)#upper limit of stacks (set -1 by default, no limit). |
RM_GLOBAL_BUFF | BUFF Remove Global Buff of Squad
Function: remove a global buff of the current squad. Format: RM_GLOBAL_BUFF*buffID |
RM_GLOBAL_BUFF_BYCLASS | BUFF Remove Global Buff of Squad by Buff Type
Function: remove a global buff of the current squad by buff type. Format: RM_GLOBAL_BUFF_BYCLASS*Global BUFF type. |
RM_ALL_GLOBAL_BUFF | BUFF Remove All Global Buffs of Squad
Function: remove all global buffs of the current squad. Format: RM_ALL_GLOBAL_BUFF*1. |
PLAYER_FAILED | Game Failed
Function: a common result of the player failing their game. Format: PLAYER_FAILED*1. |
LOSE_INVENTORY | Player Loses Common Items
Function: the player loses their items once (only goods and money). Format: LOSE_INVENTORY*proportion(the proportion is an int, which stands for percentage). |
SET_TAGROLE | Change Object Character of Current Script
Function: set a default object character of the environment variable of the current script. Format: SET_TAGROLE*character ID. |
SET_TAGPLACE | Change Object Location of Current Script
Function: set a default object location of the environment variable of the current script. Format: SET_TAGPLACE*location ID. |
SURRENDER | Faction Surrenders
Function: assign one faction to surrender to another faction (all bases are occupied; the degree of royalty will randomly decide whether followers will surrender). Format: SURRENDER*ID of the faction who surrender#ID of the surrender accepter |
GEN_RND_PLACE | Select Random Location to Query
Function: generate a random location, which can be queried via the [%last_rnd_place_XX%] directives. Format: GEN_RND_PLACE*faction ID (if this ID is empty, then the location will belong to player’s faction) |
HERO_UPGRADE | Hero Enhancement
Function: enhance an attribute permanently of a specific character. Format: HERO_UPGRADE*hero ID#attribute ID#value increase#limit of increase (must fill in a number; -1 means that there is no limit). |
HERO_SET_STATU | Set Character Attribute Field
Function: set a value of an attribute field for a specific character. Format: HERO_SET_STATU*character ID#attribute ID#new value(refer to player when character ID is emptyID). |
ADD_CAMP_BUFF | BUFF Add Faction Buff
Function: add a faction buff to a specific faction. Format: ADD_CAMP_BUFF*faction ID#buff ID#duration (in-game days; when this value is lower than 0, the buff becomes permanent unless it is removed compulsorily). |
RM_CAMP_BUFF | Remove Faction Buff
Function: remove a faction buff from a specific faction. Format: RM_CAMP_BUFF*faction ID#buff ID. |
RM_CAMP_BUFF_BYCLASS | Remove Faction Buff by Buff Type
Function: remove a faction buff from a specific faction by buff type. Format: RM_CAMP_BUFF_BYCLASS*factionID#faction BUFF type. |
RM_ALL_GLOBAL_BUFF | Remove All Faction Buffs
Function: remove all faction buffs from a specific faction. Format: RM_ALL_GLOBAL_BUFF*faction ID. |
ADD_CAMP_EXTRA_STATU | Add Faction Attribute Field Value
Function: add a dynamic attribute field to a faction. Format: ADD_CAMP_EXTRA_STATU*faction ID# dynamic attribute field list (see the format of initial faction attribute in the “阵营表”(excel file)). |
RESET_CAMP_EXTRA_STATU | Reset Faction Attribute Field Value
Function: reset all values in the dynamic attribute field in a faction. Format: RESET_CAMP_EXTRA_STATU*faction ID. |
WEAPON_DURABILITY_DOWN | Weapon Durability Decrease
Function: reduce the durability of the current weapon. When the durability is below 0, the weapon is destroyed. If the weapon’s durability is -1 (does not have durability), nothing happens with this directive. Format: WEAPON_DURABILITY_DOWN*value. |
ITEM_DURABILITY_DOWN | Specific Item Durability Decrease
Function: reduce the durability of an item (with the right tag and meets the level condition(>= the required level) ) in the player’s bag by [value] points. If the item does not have sufficient durability, then it will be destroyed. Format: ITEM_DURABILITY_DOWN*weapon tag#weapon level filter#value. |
SET_SYNTH_STATE | Set Status of Recipe
Function: set the status of a specific recipe. Format: SET_SYNTH_STATE*recipe ID#new status (0: Not learned; 1: Learned) |
OPEN_SYNTH_DLG | Open Item Crafting Dialog
Function: open the dialogue UI of item crafting. Format: OPEN_SYNTH_DLG*if locked (0: Do not lock the main category; 1: Lock display category)#catagory page shown by default (can be set empty by default; use “,” to separate pages; show the first page by default; this field can show hidden categories when the main category is locked)#story key to execute after closing the crafting dialogue (can be empty). |
OPEN_CARD_SYNTH_DLG | Open Card Crafting Dialog
Function: open the dialogue UI of card crafting. Format: OPEN_CARD_SYNTH_DLG*1. |
PLAY_EFT | Play Special Effect
Function: play a special effect on the current map. Format: PLAY_EFT*special effect path (relative to Asset directory. E.g., Assets\BuildSource\battle_effects\SkillEffects\psLightingHit1.prefab)#map coordinate#initial rotation degree (can be the rotation vector of the three directions or a spinning degree of the Y-axis)#scale proportion (can use the percentage vector of the X, Y, and Z-axis, or the overall scale proportion)#duration (count by second; the effect will be removed after exceeding this duration)#delay (set 0 by default). |
PLAY_MU_EFT | Unit Following Special Effect on Map
Function: play a special effect that follows a unit on a specific map. Format: PLAY_MU_EFT*special effect path (relative to Asset directory. E.g., Assets\BuildSource\battle_effects\HitEffects\psHealEft1.prefab)#map unit ID#object range (0: hero only; 1: all units)#initial rotation degree (can be the rotation vector of the three directions, or a spinning degree of the Y-axis))# scale proportion (can use the percentage vector of the X, Y, and Z-axis, or the overall scale proportion)#duration (count by second; the effect will be removed after exceeding this duration)#delay (set 0 by default). |
OPEN_MAPAREA_SELECTOR | Open Map Area Selector Panel
Function: open a UI panel of area selector on the current sandbox map. You can select a location for the current object in the predefined area on this panel, and then a result is returned. If the result_code returns 1, the location setting succeeded; if 0, the setting failed. The location info is recorded in [$last_selpos$]. Format: OPEN_MAPAREA_SELECTOR*area identification ID# shown model#exclusion mode (0: Non-exclusive; 1: Custom chest excluded)#notice info. |
OPEN_FREEAREA_SELECTOR | Open Free Map Area Selector Panel
Function: same as OPEN_MAPAREA_SELECTOR, but is no longer limited regarding provided map areas. Format: OPEN_FREEAREA_SELECTOR*width (int)#height(integet)#shown model#exclusion mode (0: Non-exclusive; 1: Custom chest excluded)#notice info. |
PLACE_SELECTOR | Open Location Selector Panel
Function: open a suggested location selector panel. Selected result will be stored in [$tagplace$], its number stored in [%result_code%].If [%result_code%] is 9999, player cancels the selection. Format: PLACE_SELECTOR*notice info#selection condition (transmitted to [%tagplace%] as a judgmental parameter). |
SET_LORD | Set City Ruler
Function: set a city ruler for a specific location. Format: SET_LORD*character ID#location ID. |
ADD_CUSTOM_CHEST | Add a Custom Chest
Function: add a custom chest on the world map according to the setting info (this “chest” can be any interactive object on the world map, such as materials, ruins, and soldier recruitment point). Format: ADD_CUSTOM_CHEST*chest ID#ID in the according 宝箱表(Chest Table)#position info#initial status (>0: How many times you can open the chest; -1: Chest Opened)#default direction (0-360). |
SET_CHEST | Set Chest Status
Function: set the status of a controllable chest on a map. Format: SET_CHEST*map ID#chest ID#status (>0: How many times you can open the chest; <=0: Chest Opened). |
SET_CURCHEST | Set Current Chest Status
Function: set the status of the target chest in the current script. Format: SET_CURCHEST*statu (same as SET_CHEST). |
CLOSE_SYSTEM_UI | Turn Off System UI
Function: turn of the current system UI. Format: CLOSE_SYSTEM_UI*. |
CLOSE_ITEM_PANEL | Close Bag UI
Function: close the current UI panel of the player’s bag (if it exists). Format: CLOSE_ITEM_PANEL*. |
ROLES_SELECTOR | Turn Off Character Selector UI
Function: turn off the current system UI of the character selector. Format: ROLES_SELECTOR*title of selection list box#number limit of options (<0: No limit)#option range (0: Global non-template character; 1: Player squad character; 2: Character in the Character Table)#conditional expression#parameter (the parameter is the character list when the selection range is the specific Character Table). E.g., ROLES_SELECTOR*select character in the target faction #1#0#[$tagrole:campid$][=][$player:campid$]&[$tagrole:campid$][<>][$null$]# ROLES_SELECTOR*one of the several target objects #1#2##character 1|character 2|character 3|character 4. The result of selection is stored in [%last_seled_roles%]. If there is only one result, it will also be stored in [%tagrole%]. |
ASK_ABOUT_SOMEBODY_SELECTOR | Ask-about Character Selector
Function: the character who you ask whereabout of is currently not involved in the logic calculation. The character selection list box pops up, and the result is stored in [%arg_str_val1%]. When the result [%result_code%] is 9999, player cancels the selection. Format: ASK_ABOUT_SOMEBODY_SELECTOR#character you ask about. |
CARD_SELECTOR | Card Selector
Function: show the panel of current card list for the player to select. Format: CARD_SELECTOR*title of selection list box#number limit of selection (<0: No limit)#selection range (0: Card in the player squad; 2: Specific unit list) #parameter (optional; the parameter is the unit list when the selection range is the specific Unit Table). |
ASSEMBLE_ARMY | Gather Troops
Function: gather all troops and followers of a faction. Format: ASSEMBLE_ARMY#Gatherer ID#follower ID (can be empty; use “|” to separate; can use [%last_seled_roles%], the result of ROLES_SELECTOR). If the follower ID is empty, all characters under the faction are selected by default. |
RELEASE_ALL_ASSEMBLE_ARMY | Dismiss All Gathered Troops
Function: dismiss all troops that have been gathered or gathering. Format: RELEASE_ALL_ASSEMBLE_ARMY#gatherer ID. |
SET_ROLE_IN_PROJECT | Character Starts to Execute Project
Function: a character starts to execute a specific project. Format: SET_ROLE_IN_PROJECT*character ID#project ID. |
SET_ROLE_FINISH_PROJECT | Character Ends Current Project
Function: a specific character ends their current project compulsorily. Format: SET_ROLE_FINISH_PROJECT*character ID1, character ID2,... |
ROLE_PROJECT_ADMIN | Open Personal Project Panel
Function: open the personal project execution panel. Format: ROLE_PROJECT_ADMIN*project ID#location to bind (optional; set to be the current location by default). |
GROUP_PROJECT_ADMIN | Open Group Project Panel
Function: open the group project execution panel. Format: GROUP_PROJECT_ADMIN*project label#title#project binding type#project-bound object parameter (optional; set to be the current object by default). Currently, supported project binding types are: Place: location building construction; object parameter is the location ID; refer to the current location if the ID empty world: custom building construction; object parameter format: custom area control ID; belong to which base (when this field is empty, the building does not belong to any city). |
SET_REVIVE_POS | Set Respawn Position
Function: set a new respawn position. Format: SET_REVIVE_POS*world map position (map ID:x,y). |
SET_SILENCE_MODE | Set Silence Mode
Function: enable or disable message silence mode. Format: SET_SILENCE_MODE*silence mode (0: Disabled; 1: Do not show TOAST box and deliver messages only; TOAST info of obtaining items is shown in the message; 2: Do not show TOAST and messages). |
START_RAID_PLACE | [Abolished] |
ADD_CUSTOM_PLACE | Add Custom Location
Function: add a custom location on a specific spot on the world map. Format: ADD_CUSTOM_PLACE*custom location ID (globally unique)#belong to the city (can be empty; the location does not belong to any city when this field is empty#location info template ID#location info#default faction of the location. |
SET_PLACE_NAME | Change Location Name
Function: change the name of a specific location. Format: SET_PLACE_NAME*location ID#custom name. |
OPEN_PLACE_BUILD_UI | Open Location Building Construction Panel
Function: open the location building construction panel. Format: OPEN_PLACE_BUILD_UI*location ID#script executed after successful construction (optional)# script executed after construction is cancelled (optional). |
ADD_CARD | Add New Card
Function: add a premade card. Format: ADD_CARD*card ID#recruit for free (1: Free; 0: With a cost; set 0 by default). |
ADD_CARD_PIECE | Add Card with Specific Durability
Function: add a premade card, whose durability is a specific number (lower than the durability limit). Format: ADD_CARD_PIECE*card ID#maximum durability#recruit for free (1: Free; 0: With a cost; set 0 by default). |
SET_OBS_AREA | Set Obstacle Area Status
Function: set the status of an obstacle area on a map. Format: SET_OBS_AREA*control ID#status (0: Enabled; -1: Disabled). |
EXPLORE_AREA | Explore Area
Function: explore an area of the current map (dispel the war fog). Format: EXPLORE_AREA*X coordinare,Y coordinate#exploration radius |
EXPLORE_MAP | Explore the Whole Map
Function: explore the whole map (dispel the war fog of the entire map). Format: EXPLORE_MAP*map ID. |
ADD_INTVAL_WATCHER | Add Custom Variable Monitor Field
Function: add a custom variable monitor field to supervise the current value of the variable field on a specific area. Format: ADD_INTVAL_WATCHER*variable monitor info. (Format: field Key1,displayed name1,enumerated value 1a=enumerated name1a|enumerated value 1b=enumerated name1b|...|enumerated value 1N=enumerated name 1N, visibility status in battles([optional,set 0 by default] 0: No; 1: Yes);...; monitor field info N). |
REMOVE_INTVAL_WATCHER | Remove Custom Variable Monitor Field
Function: remove a specific custom variable monitor filed. Format: REMOVE_INTVAL_WATCHER*field KEY. |
CLEAR_ALL_INTVAL_WATCHERS | All Variable Monitor Field
Function: exact all variable monitor fields. Format: CLEAR_ALL_INTVAL_WATCHERS*. |
SET_TIMER | Set Event Timer
Function: set an event timer, and a specific event will be executed when the timer ends. Format: SET_TIMER*timerID (when the ID has been taken, the other timer info will be covered)#time parameter (<0: the timer is closed; when the timer type is Preset, this parameter is the number of days since the beginning of the game; when the timer type is Countdown, the parameter is the number of days)#timer type (0: Preset (triggered when time is reached); 1: Countdown)#Event ID when time reached#compulsory update (1: Compulsory update; 0: Non-compulsory update(will not change the current data of existing timer); set 1 if this field is empty). |
REMOVE_TIMER | Remove Event Timer
Function: remove an event timer. Format: REMOVE_TIMER*timer ID. |
CHANGE_TIMER_TIME | Change Event Timer
Function: increase/decrease the time of a timer. Format: CHANGE_TIMER_TIME*timer ID#time (count by day; can be a negative or decimal number. |
ADD_TIMER_WATCHER | Add Monitor Field of Custom Event Timer
Function: add a monitor filed of a custom event timer (same as custom variable monitor UI). Format: ADD_TIMER_WATCHER*timer monitor info (format: timer ID1,displayed time format1,scale parameter1([optional;set 1 by default] coefficient of the scaling of time parameter), visibility in battles ([optional; set 0 by default]; 0: No; 1: Yes)|...|timer ID N, displayed time format N, scale parameter N. |
REMOVE_TIMER_WATCHER | Remove Monitor Field of Custom Event Timer
Function: remove the monitor field of a custom event timer. Format: REMOVE_TIMER_WATCHER*field KEY. |
CLEAR_ALL_TIMER_WATCHERS | Clear All Monitor Fields of Custom Event Timer
Function: clear all monitor fields of custom event timer. Format: CLEAR_ALL_TIMER_WATCHERS*. |
PLAYER_RECRUIT_CARD_IN_PLACE | Open City Recruitment Panel
Function: open the player’s recruitment panel in a city. Format: PLAYER_RECRUIT_CARD_IN_PLACE*city ID#ID of the event executed after recruitment (optional)#ID of the event executed after player cancels the recruitment (optional). |
STORY_CARD_START
STORY_CARD_LINE STORY_CARD_END |
Open Story Card (2D Image) Panel
Function: open the story card panel. There must be a STORY_CARD_START and a STORY_CARD_END to avoid errors. STORY_CARD_LINE stands for the story paragraphs that need to be put between the start and the end (no number limit). Format: STORY_CARD_START*file name of the card. STORY_CARD_LINE*story paragraph 1. STORY_CARD_LINE*story paragraph 2. STORY_CARD_LINE*story paragraph 3. ... STORY_CARD_END*. |
AUTOSAVE | AutoSave
Function: execute autosave immediately. Format: AUTOSAVE*1. |
OPEN_SAVE_DLG | Open Game Saving Dialog
Function: open the game-saving dialogue. Format: OPEN_SAVE_DLG*1. |
OPEN_SAVE_DLG | Open Game Loading Dialog
Function: open the game loading dialogue. Format: OPEN_LOAD_DLG*1. |
EXCHANGE_CARD | Open Card Exchange Panel
Function: open the card exchange panel. Format: EXCHANGE_CARD*object type (0: Location; 1: Squad)#object ID([optional; set to be the current location by default]; when the object is a location, the ID is the location ID, squad ID for squad object). |
LEVEL_FINISH | Complete Level
Function: used in scenarios to indicate the accomplishment of a level. Format: LEVEL_FINISH*. |
SET_CAMERA_FILTER | Set Camera Filter
Function: set a filter for the camera. Format: SET_CAMERA_FILTER*filter parameter (no filter is used if the field is empty; for parameter details, please see Section 6.10). Test code: SET_CAMERA_FILTER*black-and-white,0|classic,100|vignetting,100. |
TLACTION | Timeline Action
Function: specific units on the world map do TIMELINE actions. Format: TLACTION*map character ID#file name of Timeline action#lasting time of action. |
SELECTION_VIEW | Fullscreen Special Story Selection
Function: open a fullscreen selection panel of a special story. Format: SELECTION_VIEW*file name of the scenario image#story content (can use “\n” to break a line)# selection option (please refer to SELECT*). |
DIALOG_BUBBLE | Map Unit Chat Bubble
Function: a chat bubble pops up above a unit on the world map. Format: DIALOG_BUBBLE*map character ID#dialogue content#time of displaying. |
TEXT_EXPLORE_START
TEXT_EXPLORE_OVER TEXT_EXPLORE_FORCE_OVER_AND_CD |
Text Adventure Relevant
Function: a specific text adventure mode. Format: TEXT_EXPLORE_START*map ID for text exploration. Start a text adventure. TEXT_EXPLORE_OVER*. Ends the current instance. TEXT_EXPLORE_FORCE_OVER_AND_CD*. Ends the current instance by force and the instance starts cooling down. |
SHOW_CG | Show CG Image
Function: create an interface for showing CG images (please note: after enabling this function, you need to use HIDE_CG* manually to hide the CG. Otherwise the CG will get to player). Format: SHOW_CG*image name (no suffix; if this field is empty, the background will become black. The relevant directory is: Assets\BuildSource\Backgrounds\. Only .png file accepted). |
HIDE_CG | Hide CG Image
Function: hide the CG interface. Format: HIDE_CG*. |
GENERATE_RANDOM_CARD | Select a Card Randomly
Function: select a card randomly, which will be stored in the tag card of the current variable. Format: GENERATE_RANDOM_CARD#1. |
VOICE_OVER | Voice Over
Function: show a voice-over interface. Format: VOICE_OVER*voice over the content. |
CREATE_STORYARMY | Create a Story Squad
Function: create a squad only for stories. Format: CREATE_STORYARMY*tagkey#map position#faction#character list (all selected characters will leave their current squads or locations compulsorily)#card unit list (card ID1,number1,level1|card ID2,number 2,level 2|.......)#movement info (e.g., WANDER,2500). |
REMOVE_STORYARMY | Remove Story Squad
Function: remove a story squad. Format: REMOVE_STORYARMY*tagkey. |
BAZZAR_BUY_ITEM | Bazaar Merchant Buy-in
Function: bazaar merchants buy items. Format: BAZZAR_BUY_ITEM*bazaar ID#merchant ID#”交换用物品”(ID) of the bazaar (optional)# “交换用物品”(ID) of the merchant (optional). |
BAZZAR_SELL_ITEM | Bazaar Merchant Sell-out
Function: bazaar merchants sell items. Format: BAZZAR_SELL_ITEM*bazaar ID#merchant ID. |
SHOWROLE | Show Character Painting
Function: show character paintings in dialogues. Format: SHOWROLE*character 1 ID@position of character 1 painting (#character 2 ID@position of character 2 painting) (optional) *position of character painting: can be both L or R; set to be L by default—L stands for the left side of the text box, R for the right side. *painting position |
HIDEROLE | Hide Character Painting
Function: hide character paintings in dialogues. Format: HIDEROLE*position of character 1 painting (#position of character 2 painting) (optional). *position of character painting: can be both L or R; L stands hiding the painting on the left side, R for hiding the painting on the right side. |
SELECT_QUEST_ASK | Mission Query
Function: add a mission query that meets conditions based on the standard SELECT directive. Format: SELECT_QUEST_ASK*. |
SELECT_TEAMROLE | Select Squad Character
Function: select a character from a squad. Format: SELECT_TEAMROLE*. |
ROLE_PLAYER_ACTIVE | Activate Character Indo Status
Function: make a character visible on the “Report” interface and import the character ID (this is usually used in scenarios. E.g., the tavern ladies). Format: ROLE_PLAYER_ACTIVE*character ID. |
ROLE_ORDER | Built-in Character Directive
Function: give some built-in directives to a character and execute these directives immediately. Format: ROLE_ORDER*character ID [refer to the current target character when this field is empty]#directive code: refer to Directive Parameter Table. The current directive code supports:
|
ADD_INTERACTIVE_MSG | Add Interactive Message
Function: add a custom interactive message and show it in the corresponding UI. Format: ADD_INTERACTIVE_MSG*info type#title#info text #parameter text#duration(<=0: Permanent; >0: number of days)#message sender info #TAG parameter. Currently supported message types are: msg (message); request; finance. When the message type is not financed, the format of the parameter text is: Parameter Key1: parameter value 1;parameter Key2:parameter value 2;...;parameter Key N:parameter N Currently, the built-in KEY types of system are:
E.g., ask: “Yes”=Event1: “No”=Event2.
Receipt field 1=receipt detail list (format: resource 1, number 1| resource 2, number 2|…|resource N, number N); receipt field 1= receipt detail list; […]; receipt field N=receipt detail list. Message sender format: sender type: sender ID. Currently, supported sender types are:
|
REMOVE_INTERACTIVE_MSG | Remove Interactive Message
Function: remove an interactive message that meets specific conditions. Format: REMOVE_INTERACTIVE_MSG*message type#sender info#TAG parameter.
Format of sender info: ADD_INTERACTIVE_MSG. |
REMOVE_THIS_INTERACTIVE_MSG | Remove Current Interactive Message
Function: remove the current interactive message of the existing environment variable. Format: REMOVE_THIS_INTERACTIVE_MSG*1. |
The following directives are suitable for 0.7.1.3 or above version. | |
FORCE_CHANGE_HEADAVATA | Change Player Painting Compulsorily
Function: change the painting of the player. Format: FORCE_CHANGE_HEADAVATA*character painting ID. |
FORCE_CHANGE_MODEL | Change Player Model Compulsorily
Function: change the model of the player. Format: FORCE_CHANGE_MODEL*model ID. |
The following directives are suitable for 0.7.2.1 or above version. | |
SHOW_INTVAR_CONFIG | Show Option Panel of Configurable Custom Int Field
Function: open a custom field configuration panel in the game. Format: SHOW_INTVAR_CONFIG*mode(0: Create game mode; 1: In-game mode). |
SET_MAP_MARKER | Add or Set Custom Mark on Map
Function: add or set a custom mark on the world map. When the mark ID already exists, the older mark info will be covered. Format: SET_MAP_MARKER*mark ID#title#annotation info #map position info#file name of mark image (this field can be empty; set to be "map_flag" by default; this mark image is a PNG image resource under directory“\BuildSource\map_res\MinimapMakers\”). |
REMOVE_MAP_MARKER | Remove a Custom Map Mark
Function: remove a custom mark on the map with a specific ID. Format: REMOVE_MAP_MARKER*mark ID |
The following directives are suitable for 0.7.3.1 or above version. | |
RUN_SCRIPT_FUNC | Execute Function of Specific Lua Script
Function: execute the standard function of a specific Lua script. Format: RUN_SCRIPT_FUNC*file name of the relative directory of script (same as RUN_SCRIPT)#standard function name (the function name in the script; the parameter is the imported environment variable). |
OPEN_GUI | Open Custom GUI Form
Function: open a custom GUI form. Format: OPEN_GUI*GUI pack name#form component name#script file path of the form (relative script root directory “Asset\BuildSource\LuaScripts\”. No file expansions)#form parameter(format: json format. E.g., {"arg1":"val1","arg2":"val2"})#block directive queue (default 0: Yes; 1: No). |
OPEN_CONTAINER_GUI | Open Container GUI
Function: open a defined container GUI. Format: OPEN_CONTAINER_GUI*container ID (instance ID used to identify)#template info ID (info ID defined in Container Definition Table). When the parameter list is empty or is “This”, the specific container in the current environment variable (if existed) will be opened. E.g., OPEN_CONTAINER_GUI*THIS. |
CONTAINER_CMD | Container Directive
Function: execute a specific directive for a particular container in the current environment variable. Format: CONTAINER_CMD*container directive type#parameter 1#parameter 2#...#parameter N Currently supported collective built-in directive types are: add_exp: add EXP to all cards in the container. The parameter is the EXP value. add_items: add a specific element into the container (E.g., the format of the item container is: CONTAINER_CMD*add_items#item 1,10|item 2,5 ;format of the card container is: ID list of cards, separated by “|”). |
PLACE_CONTAINER_CMD | Location Container Directive
Function: see a location as a container object and execute the same container directives. Format: PLACE_CONTAINER_CMD*location ID (when this field is empty or “THIS”, refer to the location assigned by the current environment parameter)#container directive list (same as CONTAINER_CMD parameters). |
SET_MAP | Set Map Status
Function: set the visibility of a specific map. Format: SET_MAP*map ID#status value (0: Normal; 1: Disabled). |
RESET_LUAENV | Reset Current LUA Environment
Function: reset the current environment of LUA script and clear cache; this directive can be used when you need to debug the LUA script but do not want to restart the game. Format: RESET_LUAENV*1. |
The following directives are suitable for 0.7.4.1 or above version | |
SET_ARG_INT | Set Parameter Value in Current Environment Variable
Function: set the int parameter value stored in the environment variable of the current script (correspond to [%arg_int_val1%] [%arg_int_val2%] [%arg_int_val3%]). Format: SET_ARG_INT*new value#target parameter index (optional;set to be 0 by default; 0~2 correspond to [%arg_int_val1%] ~ [%arg_int_val3%] respectively). |
Global Save Directive
Global save is a type of saving used to record some data shared by all saves. Data recorded in the global save can be accessed in all saves after being changed.
Directive | Instruction |
SET_GLOBAL_INTVAR | Set Custom Int Variable of Global Save
Function: set a custom int variable in the global save. The variable, recorded in the global save, can be accessed via the [%global_int:ID%] directive. Format: SET_GLOBAL_INTVAR*variable ID#current int value. |
CHANGE_GLOBAL_INTVAR | Change Custom Int Variable of Global Save
Function: change a custom int variable in the global. Format: CHANGE_GLOBAL_INTVAR*variable ID#value change (can be a negative number)#minimum value (optional; no limit if this field is empty)#maximum value (optional; no limit if this field is empty). |
SET_GLOBAL_STRVAR | Set Custom String Variable of Global Save
Function: set a custom string variable. The variable, recorded in the global save, can be accessed via the [$global_str:ID$] directive. Format: SET_GLOBAL_STRVAR*variable ID#string value. |
PUSH_GLOBAL_ROLES | Globally Save Character Status
Function: save specific character list to the global character status list. Format: PUSH_GLOBAL_ROLES*custom global save Key#character ID (this character can only be a non-template character). |
PULL_GLOBAL_ROLES | Load Character Status from Global Save
Function: load the status of specific character list from the global character status list, and apply it to the current game mode. Format: PULL_GLOBAL_ROLES*custom global save KEY (the character of this KEY must be a character from the character template of the current game mode. |
LOCK_CMD_QUEUE | Lock Current Directive Queue
Function: lock the current directive queue. The directive queue will not be cleared after switching from different game saves or resetting the game modes. Format: LOCK_CMD_QUEUE*lock queue (0: No;1: Yes). |
SWITCH_GAME_MODE | Switch Game Modes
Function: switch to the target game mode and load it. Format: SWITCH_GAME_MODE*target game mode ID. |
Built-in Directive List
Built-in directives are directives used to realize certain functions inside the program, usually for some specific scripts.
Directive | Instruction |
ENCOUNTER | Creep Encountering UI
Function: open the info panel of the creep encountered. Format: ENCOUNTER*1. |
CHEST_INFO_DLG | Chest Guardian Info Dialog
Function: open the info dialogue of the chest guardian. Format: CHEST_INFO_DLG*chest ID. |
CHEST_COST_DLG | Price of Chest Opening Dialog
Function: open a dialogue to show the price of opening a chest. Format: CHEST_COST_DLG*chest ID. |
CHEST_CALLBACK | Logic Callback of Chest Opening
Function: command a logic callback of chest opening. Format: CHEST_CALLBACK*callback value (1: Defeat the guardian; 2: Opening completed)#target chest ID. |
Preset Fields of Scripts and Their Meanings
Sometimes we use certain directives to refer to specific objects in script editing. For example, we can use CUR_ROLE to replace the ID of the current character player encountered. We can realize some common application scenarios via script editing.
Currently, supported preset fields are:
- CUR_ROLE: ID of current character template encounter, used primarily for dialogue and selection list box
- CUR_BATTLE: ID of the battle between player and refreshed unit encountered on the current map
Format of Script Directive of Results in Scenario Event
The format of script directives of results in a scenario event is (separated by a line break):
conditional expression group 1: executed command 1 conditional expression group 2: executed command 2 ... conditional expression group N: executed command N
Execute the command: judge conditional expression group 1 first, if the conditions are met, execute command 1. Otherwise, judge conditional expression group 2……judge all listed groups until one group of conditions is met, or all conditions are not met.
Format of Conditional Expression Group
A conditional expression group consists of multiple conditional expression like “[%CONDITION%][=]1”, and the expressions are connected by “|” (Or) or “&” (And). The priority of “&” (And) is higher than “|” (Or). When both sides of the expression are integer characters, return the comparison result of the two values. Otherwise, compare the strings, and only [=] and [<>] judgements are supported.
For example:
[%result_code%][=]1|[%player_money%][>=]100 means “execute when the result is 1 or when the player has 100 utars”. [%player:level%][>=]3&[%player_money%][>]100 means “execute when player’s level is 3 or above, and they have more than 100 utars”.
The followings are the comparison symbols in conditional expressions:
- [=]: equal
- [>]: larger than
- [>=]: greater than or equal to
- [<]: less than
- [<=]: less than or equal to
- [<>]: not equal to
Game Data Calculation Expression System
We can embed some value expressions like “[&expression&]” in many places in the game (e.g., the status value of the BUFF list)
In value expression, the basic mathematic calculation is supported. Currently, supported calculation symbols are:
- +: addition
- -: subtraction
- *: multiplication
- /: division
- %: modulo (take the remainder)
- ^: exponentiation
- ( ) : change the priority of calculation
When the expression takes the @func(expression1, expression2...) format, call the relevant built-in function to return the calculation result. Currently supported built-in functions are (note: these built-in functions are can only be used in the calculation of the most external layer):
- @min(a,b): return the smaller value between a and b
- @max(a,b): return the greater value between a and b
E.g., in a specific piece of data, [&1+2*3&] will be replaced by 7, [&@max(1+2*3, 8)&] will be replaced by 8, [&@min(1+2*3, 8)&] will be replaced by 7……
Please note: for scripts and skill directives in battles, you can use the “[@expression@]” format to embed some expressions to return a decimal result.
Embedded Query Directive in Scenario Event
There are many places in the game that support embedded query directives, through which we can insert values or query result of the string type in texts or conditional expressions. All embedded query directives follow the format of [%QUERY:arg1:arg2...%] or [$QUERY:arg1:arg2...$] (these two formats are the same) to insert to the target position.
Note: currently you cannot re-embed a query directive in a query.
Currently, supported query directives are:
Query Directive | Instruction |
[%result_code%] | Return the last directive result that can cause “return” in the current event (E.g., an option that stands for “return” of the selection list box, input value and battle result, in the script of scenario events).
Following are the different meanings of result_code in various directive types.
|
[%rnd_num%] | Return an integer. (0~100). |
[%rnd_range:A:B%] | Return a random number that is greater than A but smaller than B. |
[%last_rnd%] | Return the random number that was generated last time. |
[%player_money%] | The amount of the player’s money. |
[%player_wood%] | The amount of the player’s wood. |
[%player_iron%] | The amount of player’s ironstone. |
[%player_jade%] | The amount of player’s jade. |
[%player_food%] | Player’s current Hunger. |
[%game_time%] | Number of in-game days currently. |
[%is_gametime_night%] | Judge whether it is nighttime now (in-game). If yes, return 1; if no, return 0. |
[%is_gametime_daytime%] | Judge whether it is daytime now (in-game). If yes, return 1; if no, return 0. |
[%mod_day:MOD%] | Number of the in-game day divided by MOD, take the remainder |
[%generate_rob_money%] | Generate the amount of money when the player is robbed under the current level. |
[%rob_money%] | Generate the amount of money when the player was robbed last time. |
[%get_ts:ID%] | Return the current status of a trigger (0: Normal; 1: Disabled). |
[%get_es:ID%] | Return the current status of a scenario event (-1: Not executed; otherwise, return Result Code). |
[%get_es_first_time:ID%] | Return the first completion time of a scenario event. |
[%get_es_time_score:ID:minTime:maxTime:maxScore%] | Return the first completion time score of a scenario event. minTime is the shortest completion time (time before the shortest time brings a full score); maxTime is the longest completion time (time before the longest time brings a zero score); maxScore is the highest score. |
[%int_val:ID%] | Return the custom int value whose numbering is its ID. |
[%int_val_for_calc:ID%] | Return the custom int value, whose numbering is its ID, to calculate. There must a result. If the ID does not exist, the result is 0. |
[%str_val:ID%] | Return the custom string value whose numbering is its ID. |
[%team_num%] | The current number of the current squad. |
[%team_max%] | Maximum number of the current squad. |
[%unit_name:兵种key%] | Return the name of a certain minion. |
[%item_number:物品key%] | Return the number of a certain item in the player’s bag. |
[%item_with_tag:tag%] | Return the number of an item with a specific tag in the player’s bag. |
[%item_with_tag_and_level:tag:level%] | Return the number of an item, whose item level >= level, with a specific tag in the player’s bag. |
[%item_qualify_as_present:present_desc%] | Return the number of a certain item whose gift description string meets requirements in the player’s bag. For the format of gift description string, please see the “Like” format in the Tag column of “人物列表”(Character Table) (Excel). |
[%item_name:物品ID%] | Return the displayed name of an item. |
[%admin_level%] | Return the administration status of the player in the current location (0: None; 1: Appointed; 2: City ruler; 3: Faction leader). |
[%gametime_elapse:ID%] | Return the amount of period since the setting of last custom time point ID (integer number of the day; take a rounding integer number after (current time-ID time)). |
[%gametime_elapse_by_day:ID%] | Return the amount of period since the setting of last custom time point ID (integer number of the day; (current day- the day when the ID is located); this directive is usually used for the event that can only happen once a day. |
[%tag_gametime_elapse%] | Return the gametime_elapse of the preset dynamic tag; if there is no such a tag or such an ID, return -1; to gain this result: (current time-ID time) and take the rounding integer number. |
[%tag_gametime_elapse_by_day%] | Return the gametime_elapse of the preset dynamic tag; if there is no such a tag or such an ID, return -1; to gain this result: (current day-the day when the ID is located); this directive is usually used for the event that can only happen once a day. |
[%is_custom_cd:ID%] | Return the result of whether a custom cooldown (whose numbering is its ID) is ready (1: Yes; 0: No). |
[%has_gametime_elapse_tag:ID%] | Query whether the custom game time ID mentioned above exists (1: Yes; 0: No). |
[%realtime_elapse:ID%] | Return the realistic period since the setting of last custom time point ID (count by second). |
[%qs:ID%] | Return the status of specific mission ID (0: Unclaimed; 1: Ongoing; 2: Unfinished; 3: Ended). |
[%qs:ID:index%] | Return the subevent value of specific mission ID (index is the subevent’s sequence number starting from 0). |
[%get_flag:ID%] | Return the current value of a completion mark; return -1 if there is no such a value. |
[%camp_rep:ID%] | Return player’s Prestige value of the target faction ID. |
[%is_player_triggered_encounter%] | Check if an encounter chat is started by player manually (0: No; 1: Yes) (if the player is caught up by other units, the value is 0). |
[%place_rep:ID%] | Return player’s Prestige value of the target location. |
[%arg_int_val1%]
[%arg_int_val2%] [%arg_int_val3%] |
Value parameter 1, 2, and 3 of the current event. |
[%g_buffs%] | Return the number of global BUFFs of the current squad. |
[%last_battle_res%] | Return the battle result of last battle (0: Victory; 1: Loss; 2: Retreatment). |
[%last_dungeon_res%] | Last dungeon result (0: Exited; 1: Passed; 2: Loss). |
[%g_buff:ID%] | Query whether the current squad has a global BUFF of the target ID. Return 1 if such a BUFF exists. |
[%g_buff_c:CLASS%] | Query the number of global BUFFs whose type are CLASS of the current squad. |
[%g_stat:STAT_FILED%] | Return the current value (whose field is STAT_FILED) of the current squad status. |
[%has_KeyValues:ID%] | Query KV stored directly. If there is a corresponding KV, return 1; otherwise, return 0. |
[%get_KeyValues:ID%] | Query KV stored directly. If there is a corresponding KV, return the relevant value; otherwise, return null. |
[%rnd_place_id:CAMP_ID%]: | Return the ID of a random location that is controlled by a faction. IF there is no camp_id, return an ID of a location controlled by the player’s faction. |
[%last_rnd_place_id%] | Return the ID of the last randomly generated location. |
[%last_rnd_place_name%] | Return the name of the last randomly generated location. |
[%last_rnd_place_map_name%] | Return the map name of the last randomly generated location. |
[%last_rnd_place_products%] | Return the Production list of the current location (follow the format of GETITEMS). |
[%last_rnd_place_products_name%] | Return the Production description of the current location. |
[%last_rnd_place_has_products%] | Check if the current location has production (1: Yes; 0: No). |
[%last_seled_items%] | Return the item list of the last item selection directive (ITEMS_SELECTOR). |
[%last_seled_roles%] | Return the character list of the last character selection directive (ROLES_SELECTOR) (Note: this method cannot be used in conditional expression groups since the result returned contains “|” when multiple characters are selected; you can use [%last_seled_roles_count%] instead to judge). |
[%last_seled_roles_count%] | Return the number of selected characters of the last character selection directive (ROLES_SELECTOR). |
[%weather:ID%] | Query the current value of the specific weather effect (with specific ID) on the current map. |
[%monster_news:X:Y%] | Query the info of creeps near coordinate (X, Y) on the current map. X and Y will be the default position of the player if left empty. |
[%attack_intend_code%] | Query the attack intension of units encountered on the current map.
Please see: MuUnitBase.IntendToAttack |
[%place_randmom_pos%] | Query a random position near a location. Output specific strings. E.g., Sandbox Redstone Keep: 123, 123. |
[%tag_role_with_role_relation%] | Relationship between the input parameter and tag character/location. |
[%tag_role_with_city_relation%] | Relationship between Tag character and input character |
[%result_val%] | Query the curResultVal value of the current environment variable. |
[$player:INFO$]
[$tagrole:INFO:ID$] |
Query a specific info field of player/ specific character (tag character) When it is tag character, and ID field does not exist, return the query result of the interactive object.
INFO can be:
|
[$called:call1:call2$] | How NPC addresses player (the player’s character is male: call1; female: call2). |
[$null$] | Replaced by an empty string. |
[$trig_tagtype$] | Trigger object type of the current event. |
[$trig_tagid$] | Trigger object ID of the current event. |
[$input_str$] | The input result of the last input box. |
[$argvs:INDEX$] | Query currently additional parameter info, starting from 0 (used to fill in the parameter of a random event). |
[$tagplace:INFO:ID$] | Query info of a location; query the current location if the ID field does not exist.
INFO can be: · id: location ID. · name: location name. · campid: faction ID. · mapid: map ID. · campname: faction name. · prosperity: location prosperity. · defence: location defence · rep: location friendliness. · security: location security. · size: location size. · lord_id: city ruler ID. · lord_name: city ruler name. · tag= (KEY of custom expansion field): return the value of a specific custom field. · is_stronghold: if this location is a base (a location for troops to the garrison). · is_weekhold: a resource point that does not allow the garrison. · is_couldoccupy: if this location can be occupied. · is_couldraid: if this location can be raided. · is_inwar: if this location is being attacked. · is_raided: if this location has been raided (recovering). · is_subplace: if this place has been occupied. · stat= (status field ID): obtain a specific status value of the current location. · building= (specific facility ID): query the number of facilities of a building with specific ID in a location (facilities under construction included). · building_t= (specific facility type): query the number of facilities of a specific type in a location (facilities under construction included). · r_building= (specific facility ID): query the number of facilities of a building with a specific ID (facilities under construction not included). · r_building_t= (specific facility type): query the number of facilities of a specific type in a location (facilities under construction not included). · custom_int= (custom field ID): obtain the int value of the custom field of the current location. · camp_rl: the relationship between the target faction and player’s faction (0: Neutral; 1: At war; 2: Alliance; 3: Ally) · func_map= (specific field KEY): query a field of the corresponding directive event mapping table. E.g., func_map= hire list. · player_rep: player’s prestige in where they are currently staying. · hire_states: query the recruitment status of the current location. · player_dist: the distance between the player’s current position and the target position. If the target is unreachable, return -1. · project_count: the number of projects under construction. · project_max: the maximum number of projects under construction currently. |
[$tagmap:INFO:ID$] | Query tile info on a map:
· id: tile id. · name: tile name. · dominant_camp: if there is an overall dominating faction, return the name of the faction; otherwise, return null. · dominant_camps= (custom field ID): if there are only several factions with specific IDs existing, return 1; otherwise, return 0; format of custom field: faction 1#faction 2#faction 3. · camp_place_count= faction ID: return the number of bases owned by a specific faction on this tile. · ExploreInfo= Info ID: query the value of an exploration map info. |
[$tagbuilding:INFO$] | Query info of the current target building
· id: building ID. · name: name. · inner_id: built-in location ID of the target building. · type: building type. · level: building level. · tag= (KEY of custom expansion field): return value of a specific custom filed. · container_id: scenario ID of the container bound to this building. · container_info: info ID of the container bound to this building. |
[$tagwb:INFO$] | Query the info of current skirmish.
INFO can be: · id: battle ID. · camp_a: faction ID of squad A. · camp_b: faction ID of squad B. · leader_a: leader ID of squad A. · leader_b: leader ID of squad B. · camp_a_rl: the relationship between squad A and the player’s faction · camp_b_rl: the relationship between squad B and the player’s faction. · teamname_a: faction name and hero names of squad A. · teamname_b: faction name and hero names of squad B. · seige_time: current siege preparation time (if it is a siege battle) (count by day). |
[$tagteam:INFO(:QUERY_INFO)$]
[$playerteam:INFO$] |
Query info of the current encountered team (tagteam)/player’s team (playerteam).
When querying tag team, you can choose a specific query parameter. If this parameter is set, only info of the query target will be returned. INFO can be: · id: squad ID. · is_active: check if the current squad status is normal; return 1 if it is normal. · campid: faction ID. · campname: faction name. · state_num: StateNum value of the current squad. · from_id: ID of the location where the squad is from. · from_name: name of the location where the squad is from. · lifetime: period since the squad is established (day). · camp_rl: the relationship between the target faction and character faction (0: Neutral; 1: At war; 2: Alliance; 3: Ally). · max_attr_lv=attribute field ID: the highest value of a certain attribute of all characters in the squad. · exist_role= character ID: check if there is a specific character ID in the squad (1: Yes; 0: No). · role_vacancy: available hero slots in squad. · soldier_vacancy: available minion slot in the squad. · map_info: current map info. · tag: return the TAG of the squad. · is_defeated: check if the squad is dismissed because they are defeated (0: No; 1: Yes). · defeated_by: ID of the faction which defeated the squad. QUERY_INFOformat: [query type]=[query target] E.g.,: leader=ROLE_ID. Currently, supported query types are: · bind_id: bound info ID. When the squad type is creep or dummy, the ID is the creep/dummy ID; otherwise, it is the leader ID. · leader: squad leader ID. · tag: TAG mark of the squad (used for squad created by the CREATE_TEAM directive).
|
[$tagcamp:INFO:ID$] | Query info of the target faction. When the ID does not exist, query info of the current faction. INFO can be:
· id: faction ID. · campname: faction name. · leaderid: ruler ID. · leadercalled: nickname of faction ruler. · lands_count: number of bases of the current faction. · camp_rl: the relationship between target faction and player’s faction (0: Neutral; 1: At war; 2: Alliance; 3: Ally). · camp_rl_value: the actual number of favour between the target faction and player’s faction. · stat= (status field ID): obtain the specific status value of the current faction. · buff= (Target BUFF ID): query if a specific BUFF of the current faction exists (1: Yes). · buff_c= (BUFF type): query the number of BUFFs of specific types of the current faction. · active_state: project status of target faction (0: Inactive; 1: Active). · is_story_camp: if this is a scenario faction (0: No; 1: Yes). · player_rep: player’s prestige in this faction. · attitude: faction’s attitude towards the player (0: Normal; -1: Wanted; -2: At war). · is_fall: if a faction is eliminated (0: No; 1: Yes). |
[$tagbazzar:INFO$] | Query current bazaar info imported by the system.
· start_day: number of days of the beginning of the bazaar. |
[$tagbazzarItem:INFO:bazzarID:merchantID$] | Query info of items bought/sold by a merchant in a bazaar.
· item_desc: item description (detailed). · item_desc_short: item description (simple). · item_buy_price: buy-in price of the item. · item_sell_price: sell-out price of the item. |
[$tagproduct:INFO:ID$] | Query info of a speciality. Query info of the current speciality if the ID is left empty.
· item_name: item name. · item_id: item id. · item_level: item level. · item_price: single fair value of the item. · player_dist: the distance between the central position of the speciality and the current position of the player (-1: the central position is unreachable). · place_include=location ID: when the item is not sold in the specific location, return 0; if it is being sold, return 1. · place_include_tagQuestPlace: automatically use the currently imported info of mission location. |
[$tagquest:INFO:ID$] | Query Mission Info
status: 0: Unclaimed; 1: Ongoing; 2: Completed; 3:Time limit exceeded (receive punishment); 4: Time limit exceeded (wait to claim rewards automatically) 5: 已Ended. |
[$arg_str_val1$]
[$arg_str_val2$] [$arg_str_val3$] |
String parameters 1, 2 and 3 of the current event. |
[$rnd_enum:PROB_A,RES_A:PROB_B,RES_B:PROB_C,RES_C[:...]$] | Enumerate numbers randomly and return a RES value according to the probability distribution. E.g., [%rnd_enum:25,A:40,B:35,C%] means there is a 25% chance to return “A”, 40% to return “B” and 35% to return “C”. |
[$tagitem:INFO$] | Query info of the current item. INFO can be:
· id: item ID. · name: item name. · count: item number. · group_n: maximum number of stacks. · quality: item quality. · level: item level. · main_type: main item type. · sub_type: item sub-type. · equip_type: equipment type. · gendays: period (day) since the production date. · tag= (KEY of custom expansion field): return the value of a specific custom filed. |
[$tagproject:INFO:ID$] | Query project info. Read from the specific ID of SET_TEMP_ID if the ID field is left empty.
· id: project id. · state: project status (works only in group events) (0: Not started; 1: Ongoing; 2: Completed). · showPlaceName: project location description. · showProjectName: project name. · roles: all characters involved in the current project. |
[$tagunit:INFO$] | Query info of the current target minion.
· id: unit id. · name: unit name. · level: unit level. · statu= (custom ID): query the value of the corresponding ID in the Unit Attribute table. |
[$tagcard:INFO$] | Query info of a specific card.
· id: bound id of the card. · name: displayed name of the card. · lv: card level. · recruit_name: displayed name with recruitment info of the card. · tag= (KEY of custom expansion field): return the value of a specific Tag field of the card. · has_tag= (KEY of custom expansion field): query if there is a particular Tag field of card (1: Yes; 0: No).
|
[$save_version$] | Return the version number of when the current game save is created. |
[$version_compare:TAG_VERSION$] | Compare the version number of when the current game save is created with TAG_VERSION; if the former version is higher than TAG_VERSION, return 1; when equal, return 0; when lower, return -1. |
[$tagmsg:INFO$] | Query info of the current interactive messages.
· title: title · content: message content · arg=(field KEY): query the parameter of the KEY in the custom parameter table |
以下查询需要游戏版本高于0.7.4.1 | |
[$lua_str:KEY$] | Return the string value defined in the GetLuaStringVal port in the core logic script (KEY is the query parameter). |
[$lua_int:KEY$] | Return the int value defined in the GetLuaStringVal port in the core logic script (KEY is the query parameter). |
[%envoy_enable%] | Return the status of whether the envoy of the player’s faction is available. |
Directive Field of Global Save Query
These are used to query some directives in the global save.
Query Directive | Explanation |
[%global_int:ID%] | Return the value of global int field ID |
[$global_str:ID$] | Return the value of global string field ID |
Built-in Global Variable Field
Following are key fields of a built-in global variable:
Filed KEY | Explanation |
save_max_hard_level | The greatest difficulty has been unlocked. Set to be 0 by default. |
Built-in Custom Variable Field
You can use directives like SETINTVAR and CHANGEINTVAR to change and save the built-in custom variable of the system. Different variables have a different function.
KEY Field | Explanation |
system_探索地图点数 | Morale. |
system_星星 | The number of stars. |
system_敌方角色血量百分比 | When the player is fighting an enemy the extra hp multiplier of the enemy. |
system_敌方角色攻击百分比 | When the player is fighting an enemy, the extra physical/magic attack multiplier of the enemy. |
config_ai_level | The intensity level of AI (0: Easy; 1: Normal; 2: Difficult). |
config_roll_limit | Enable Roll Limit in battles 0: Disabled; 1: Enabled (By enabling the Roll Limit, there will be a CD and limit of rolling times). |
config_hunger_penalty | Enable Hunger Debuff 0: Disabled 1: Enabled (By enabling the Hunger Debuff, the movement of the player’s squad will be influenced when in hunger). |
config_upgrade_cost_reduce | EXP and materials needed to upgrade the current unit after discount (0~100 percentage; set to be 0 by default). |
config_soldier_dead_scale | A multiplier of death probability of the current minion (percentage; set to be 100 by default, final death probability = basic death probability *(config_soldier_dead_scale/100)). |
The following directives are suitable for 0.7.3.1 or above version. | |
config_project_concurrent | Maximum cardinal number of concurrent construction of projects in the current location. |
初始设定表内置字段说明
游戏初始设定表中,可以配置一些具有实际功能的初始字段值。
字段KEY值 | 说明 | 默认值 |
---|---|---|
init_pos | 默认出生点位置信息 | |
init_statu | 玩家出生时默认的属性状态信息 | |
init_money | 默认的初始财产 | 0 |
home_place | 默认的初始地点ID | |
init_skillpages | 初始点亮的技能页,格式见 SET_SKILLPAGE 指令说明 | |
init_skills | 主角初始拥有的技能表,格式同 GETSKILL 指令 | |
init_equip | 主角初始的装备表信息 | |
init_camp_rl | 初始阵营关系表,格式为:
阵营A,阵营B,关系状态,友好度(-100~100)|阵营A,阵营C,关系状态,友好度(-100~100)|...|阵营N,阵营N,关系状态,友好度(-100~100) |
|
unchanged_diplomatic_relationship | 是否游戏过程中不可动态改变势力间的外交关系 (0否 1是) | 0 |
gametime_scale | 当玩家位于大地图上时,游戏时间进行的缩放系数(游戏天/秒) | 0.01 |
battletime_scale | 当玩家位于大地图上时,游戏时间进行的缩放系数(游戏天/秒) 当此值为0时,遭遇战或攻城战中游戏时间会静止 | 0.005 |
no_card_auto_supply | 不可卡牌补给耐久度 | 0 |
drop_card_when_no_durability | 在此模式下卡牌耐久为0时会消失 | 0 |
enable_card_upgrade | 允许卡牌进阶 | 0 |
equipment_loss_durability | 装备具有耐久度损耗 | 0 |
levelup_exp_scale | 升级经验倍率 | 1.0 |
seige_time | 基础攻城的准备时间(天) 围城时间 = 基础时间 + 武装度 * 每点武装度提供的准备时间加成(siege_time_per_armvalue字段) | 0 |
siege_time_per_armvalue | 每点武装度提供的准备时间加成 | 0 |
project_time_scale | 项目所需时间比例,小于1即为缩短时间,大于1延长时间 | 0.99 |
dailyIncomeScale | 每天城镇资源收入的倍率 | 1.0 |
recruit_cost_scale | 招募/补给/进阶/开宝箱的成本倍率 | 1.0 |
building_cost_scale | 建造建筑/其他项目的成本倍率 | 1.0 |
custom_intval_watcher | 默认监视自定义变量字段 同 ADD_INTVAL_WATCHER 指令 | |
show_star_info | 显示声望(星星) | 0 |
ai_soldier_add_exp_per_period | 每天AI士兵增加经验基数 | 0 |
team_role_count_base | 每个队伍基础携带角色数量 | 3 |
team_role_max | 部队最多携带角色数 | 5 |
team_card_count_base | 每个队伍基础携带部队数量 | 6 |
team_card_max | 部队最多携带卡牌数 | 40 |
ai_recruit_resource_scale | AI招募的资源倍率 | 1.0 |
ai_build_resource_scale | AI建造的资源倍率 | 1.0 |
ai_upgrade_resource_scale | AI升级兵种的资源倍率 | 1.0 |
ai_highlevel_upgrade_average_days | AI模拟高等级升级兵时的检测周期期望(天数)
此数值越高,AI升级兵种越慢。 |
20 |
ai_auto_balance_resource | AI是否会自动平衡各项资源 | 0 |
ai_invade_prob | AI的进攻偏好系数,范围0~1 ,越接近1概率越高 | 0.8 |
invasion_destroy_factor | 侵略占领建筑物损毁概率。格式为:
摧毁个数1:概率1 摧毁个数2:概率2 ... 摧毁个数N:概率N 例如: 1:50 2:30 3:10 4:5 |
|
monster_move_speed_random | 野怪发射器野怪随机移动速度随机修正范围,最多0.75 | 0 |
soldier_battle_killed_prob | 士兵的基础战损,每个士兵在战斗结束时如果战败,有多少概率重伤 | 0.2 |
ai_soldier_battle_killed_prob | AI部队战败后阵亡概率 | 1 |
ai_recruit_hero_free | AI免费招募英雄 | 0 |
army_base_move_speed | 军队基础移动速度 | 240 |
monster_min_movespeed | 野怪最小的移动速度 | 150 |
caravan_move_speed_range | 商队移动速度范围 格式为: 最小速度,最大速度 | 100,100 |
farmers_move_speed_range | 农民移动速度范围 格式为: 最小速度,最大速度 | 100,100 |
army_base_move_speed_range | 军队的移动速度范围 格式为: 最小速度,最大速度 | 100,100 |
global_move_speed_range | 全局移动速度范围 格式为: 最小速度,最大速度
该数值影响所有的地图上可移动单位 |
20,400 |
battle_gain_money_scale | 战斗中标准获取金钱的放大系数 | 1 |
npc_drop_equipment | NPC是否会掉落装备 (0:否 1:是) | 0 |
npc_drop_equipment_prob | NPC掉落装备概率 | 0.15 |
loot_food_each_soldier | 每组士兵掉落食物的概率 | 0.1 |
loot_food_each_hero | 每个英雄掉落食物的概率 | 1 |
hungry_fail_days | 饥饿失败天数 | 3 |
以下设置需要游戏版本高于0.7.2.1 | ||
ai_dailyfight_period | AI势力强制讨伐判定间隔时间天数,<=0为关闭此判定。(此选项为默认AI侵略判定之外的逻辑,0.7.2.1之前版本默认为5)此外,此判定从本版本起将受到AI强度因数影响 | 0 |
ai_active_level_default | 默认的AI强度等级,影响 config_ai_level 自定义字段的默认值 | |
def_config_roll_limit | 默认的是否开启翻滚限制,影响 config_roll_limit 自定义字段的默认值 | |
def_config_hunger_penalty | 默认的是否开启饥饿惩罚,影响 config_hunger_penalty 自定义字段的默认值 | |
def_seige_battlemap | 缺省的攻城战地图ID | |
以下设置需要游戏版本高于0.7.3.1 | ||
init_inventory_capicity | 默认初始背包容量基数 | 60 |
def_project_concurrent | 地点默认同时进行项目建设的数量 | 1 |
以下设置需要游戏版本高于0.7.4.1 | ||
camp_rep_wanted_val | 个人在阵营声望达到通缉状态的阈值(小于此值但未达到战争状态时野外遭遇不会被攻击,但是进入此阵营地点时会被限制) | 0 |
camp_rep_war_val | 个人在阵营声望达到战争状态的阈值(小于此值野外遭遇会被该阵营的单位攻击) | -10 |
以下设置需要游戏版本高于0.8.0.1 | ||
dg_levelup_skill | 战斗中升级时播放特效对应的技能ID | 升级特效 |
init_items | 初始道具表 | |
def_dropitem_model | 战斗中默认道具掉落在地上的模型及特效信息(格式为:大地图单位模型ID#特效信息) | chest1#psChestFlash1,0,0 |
除了以上表中的特定初始设定字段外,初始设定表中还会有一些以 "gui_"开头的UI重置特定字段用来实现对一些游戏内置UI的自定义重置,具体见重置游戏界面相关说明
对话框及一些通用UI中支持的字体颜色指定代码
在对话框、文字框以及一些常见的UI中,通常可以使用以下格式来为文本中的指定文字更改颜色。
例如:这是一段[[imp:红色字体]],[[red:红色字体]],[[&ff6699ff:自定义颜色]]的字体
目前可支持的定制颜色如下(自定义颜色需用"&"符号替换"#"):
- place:地点名称的统一颜色
- role:人物名称的统一颜色
- camp:阵营名称的统一颜色
- item:物品名称的统一颜色
- imp:重要信息的统一颜色
人物角色位置指令格式
人物位置格式为:位置代码:位置参数
支持的位置代码有 0:未分配 1:地点中 2:队伍中 3:项目中
- 当位置代码为1地点中时:格式如下 1:地点ID,设施ID (设施ID为空表示在设施外部)
- 当位置代码为2队伍中是:格式如下 2:队伍ID
游戏内全局位置指令格式
当为一个队伍或者大地图上的对象指定位置信息时,就需要一个可以进行全局位置指定的指令格式(如使用TELEPORT指令等)。
全局位置格式为:
地图ID:坐标X,坐标y
特定战斗中的单位限制指令格式
在特定战斗表中,可以在“限制条件”一栏中填入以下格式的指令字段进行单位或者特殊限制。
格式如下:
命令1:参数1;命令2:参数2;...命令N:参数N;
目前支持的限制命令如下:
- player 重置队伍英雄列表 格式为:人物ID1,重置等级(-1或不填表示不重置)|人物ID2,重置等级|人物ID3,重置等级|...|人物ID N,重置等级
- units 重置队伍小兵列表 格式为一般卡牌列表格式
- add_stat 附加角色属性状态 格式为:目标人物ID#状态表
大地图单位控制指令表
大地图单位(队伍)控制指令是用来对大地图上的单位进行序列行为指定的控制方法。当单位被指定控制指令表后,会按照先后顺序逐步执行每一条指令,直到指令表执行完成。当单位执行动作进行中途保存退出后,读档时会按照之前的指令表继续执行指令。
注意:除了假人(包括剧情控制中需要的假人和游戏中的野怪等)外,其他类型的队伍的指令表执行结束后会自动解散队伍。
控制指令的格式是由整形数字的命令类型加命令内容组成,多行以“;”进行分隔,每行指令以指令类型代码+”,”开头,后面为指令参数,例如:
1,测试地图:100,100;1,测试地图:100,200;99,0
上述代码表示先移动到测试地图的坐标1(100,100),再移动到2(100,200),然后解散队伍;
目前支持的指令类型代码如下:
控制指令代码 | 说明 |
---|---|
1 | 向大地图坐标移动 参数为目标地图坐标(地图坐标格式 地图ID:坐标X,坐标Y) |
2 | 在原地停留 参数为停留时间(单位:游戏内天数) |
3 | 进入地点 参数为目标地点ID |
4 | 攻打目标地点 参数为目标地点ID,攻占方式(0:占领 1:掠夺) |
5 | 在目标地点内停留 参数为目标地点ID,停留时间 |
7 | 执行一个事件 参数为事件ID |
8 | 更改当前StateNum值 参数为新的StateNum值
说明:StateNum 可以用来标记一些控制队伍的当前状态。例如:命令一个单位去地图某个地方执行一个动作,当它到达之前StateNum为0,到达后将StateNum改为1,这样就可以在脚本中判断该队伍当前处于什么状态了。 |
9 | 永久执行自定义运动命令,命令格式说明见 单位队伍默认运动指令格式 |
10 | 加入一个战团 参数为战团的数字ID(系统内置方法,不推荐调用) |
11 | 执行一个动作 参数格式为:动作ID,循环次数(-1无限循环 ≥1有限次循环,当动作自身是循环动画时设置为1即可),单次动作时间(秒为单位,当非无限循环的动作次数播放结束后执行下一条指令),播放对象(0默认全体 1仅领队 2所有追随模型),初始帧区间(0~1之间,1为动画最后一帧。-1为随机取0~1之间的值),播放结束后是否转入下一个指令(默认为0否 1是)
模型当前支持的默认动作表:
|
12 | |
13 | 开宝箱 参数为宝箱ID |
14 | 执行一个TimeLine动作 参数格式为:TimeLineID,持续时间(默认-1,始终持续,当>0时播放执行时间后结束) |
15 | 改变当前队伍对玩家的态度 0:中立 1:敌对 |
16 | 改变当前队伍移动速度 参数为目标移动速度 |
17 | 交易成功 参数为交易目标地点ID |
18 | 进行交易 参数为交易目标地点ID |
19 | 跟随队伍目标 参数为跟随目标的控制ID |
99 | 解散当前队伍 |
单位队伍默认运动指令格式
大地图上的假人、野怪、队伍中会需要设置默认的运行方式或者是通过脚本改变其运动模式。指定运动模式后,单位会按照此指令进行默认的行为动作。
单位运动指令的格式为:
运动方式,参数1[,参数2,...,参数N]
当前可支持的运动方式及参数格式为:
- 范围内游荡:WANDER,运动半径,[中心坐标X,中心坐标Y](如不指定中心坐标则以当前位置为中心)
- 巡逻运动:PATROL,坐标1X,坐标1Y,坐标2X,坐标2Y,...,坐标NX,坐标NY(当第一个坐标等于最后一个坐标时执行循环运动,否则为往复运动)
- 其他为静止不运动
物品列表信息格式
物品列表信息是最常使用的信息格式之一,各种物品获取相关的指令(GETITEMS等指令)、配置表中都会用到这种信息格式。
物品信息的格式如下:
物品代码1,数量1[,细节信息表]|物品代码2,数量2[,细节信息表]|....|物品代码N,数量N[,细节信息表]
细节信息表为格式为"key1=val1,key2=val2,..."的字典表,其支持以下信息字段内容:
- 【mf】自动匹配创建词缀:mf=最低品质N-最高品质N[-变量数值附加基数]
例:长剑,1,mf=0-3 说明:以mf开头的词缀代码表示自动适配出品质从0-3之间的词缀(0为不附带词缀)。
- 【cw】创建制定词缀:cw=词缀ID+变量数值附加基数(0-100)
例:长剑,1,cw=吸血剑+50 说明:表示附带吸血剑指定词缀的物品,所有变量数值指定由50-100之间。
- 【w】指定物品词缀详情:w=词缀ID$[变量代码数组]
- 【qv】指定物品属性的变量数组:qv=变量代码数组
- 【p】指定物品的记录买入价格:p=买入价格
变量代码数组由列数为2的二维数组组成,列1为枚举值,列2为品质数值(0-100),以”/”进行连接。比如一个词缀有3条词条,那么他的变量数组可能为:0/50/0/100/0/100
天气效果信息格式
使用指令代码控制天气时多以组合天气效果为主,多个天气效果以"|"进行连接。
天气效果描述信息格式为:
天气效果ID1,强度值|天气效果ID2,强度值|...天气效果IDn,强度值
目前游戏中支持的天气效果ID有:
- 雨:强度为0时关闭 1~50为普通 50~100为大雨
- 雪:强度为0时关闭 1~50为普通 50~100为大雪
- 风沙:强度为0时关闭 1~100
- 雷电:强度为0时关闭 1~100
- 雾:强度为0时关闭 1~100
- 黑暗:强度为0时关闭 1~100
- 炎热:强度为0时关闭 1~100(热变形特效)
- 云:强度为0时关闭 1~100(晴天时地面的云朵阴影)
地图编辑器及各种配置表中的天气效果信息字段填写格式如下:
概率1,持续时间1:[天气效果描述信息1];概率2,持续时间2:[天气效果描述信息2];概率3,持续时间3:[天气效果描述信息3];[...];概率N,持续时间N:[天气效果描述信息N]
比如:30,1:;50,3:雨,20|雾,10;20,5:风沙,30
表示30%的概率持续一天无天气效果,50%的概率持续3天下雨,20%的概率持续5天风沙天气
镜头滤镜效果信息格式
当使用SET_CAMERA_FILTER等指令时可以对当前游戏设置镜头滤镜效果。
镜头滤镜效果信息的格式为:
滤镜效果ID1,强度值|滤镜效果ID2,强度值|...滤镜效果IDn,强度值
目前游戏中支持的镜头滤镜效果ID有:
- 暗角:强度为0时关闭 1~100为镜头边框的暗影程度
- 黑白:强度为0时关闭 1~100为同一黑白照片效果
- 老旧:强度为0时关闭 1~100为老旧(泛黄)照片效果
人物表中具有特殊含义的TAG
目前一些程序中使用的人物TAG字段
字段 | 说明 |
---|---|
LIKE | 标识人物所喜欢的物品类型,影响好感度提升速度
格式:LIKE:类型1|类型2|... |
DEF_WEAPON_SPEED | 默认的武器速度,有此tag时会在人物不装武器时候以此速度为默认武器速度 |
FVChangeUnit | 通过礼物改变角色好感度的算法单位系数,无此标记为默认值 |
dg_skill | 替换此人物的地城技能 |
attached_script | 人物在战斗中挂载的脚本事件ID |
loot_list | 地城战斗中此人物的掉落列表(可用“经验”物品ID作为指定经验获取的来源) |
IsNoExpel | 是否不允许驱逐此角色 (不为空生效) |
IsNoBetray | 是否不会背叛或主动离开阵营 (不为空生效) |
地点表中具有特殊含义的TAG
程序中具有实际功能的地点TAG表
字段 | 说明 |
---|---|
迷你地图显示 | 除城镇地图默认显示外,其他地方如果要显示必须此tag=1 |
迷你地图不显示 | 顾名思义 |
AI出征关闭 | 有此tag的据点不会主动出征、巡逻、占领资源点 |
SharedPermission | 共享通商许可地点ID,当此项存在时此地的通商许可与该ID的地点共享。 |
阵营表中具有特殊含义的TAG
程序中具有实际功能的阵营TAG表
字段 | 说明 |
---|---|
NO_CHANGE_DIP | 游戏过程中不会受动态改变外交关系因素的影响,直接使用脚本指令改变除外 |
UNFAILED | 此势力无法通过正常的途径被消灭 |
EMBARGO | 此势力占据的地点不会派出商队,也不会和其他地点通商 |
NO_FARMER | 此势力占据的地点不会有人口流动 |
CAMP_COLOR | 指定的阵营颜色值,示例格式 CAMP_COLOR=FFFFFF |
HIDE_BY_ACTIVESTATE | 按照当前的ActiveState隐藏相关信息,如果配置表中“是否隐藏”字段为1时此TAG无效 |
物品表中具有特殊含义的TAG
程序中具有实际功能的TAG字段:
字段 | 说明 |
---|---|
IgnoreBagSpace | 该道具不会占据道具栏的使用空间,此字段为"1"时开启 |
NoSellOrDrop | 该道具不能被丢弃或者出售,此字段为"1"时开启 |
BatchUse | 是否支持批量使用,此字段为"1"时开启。 当一个带有此TAG的物品被使用时,其脚本中的 [%arg_int_val1%] 参数为使用时选择的数量值 |
DoNotCostWhenUse | 使用时不消耗改物品,此字段为"1"时开启 |
Present | 礼物的类型标签字段,以"|"分隔 |
AiNotLoot | AI不可通过正常手段获取到,此字段为"1"时开启 |
Mendable | 是否可修复,不可修复的道具耐久度为0后自动损毁,“1”为是 |
DropModel | 战斗中该物品在地上的模型信息(格式为:大地图单位模型ID#特效信息 如为空则以初始设定表中的 def_dropitem_model 字段代替) |
地图表中探索地图信息字段中特殊字段说明
程序中具有实际功能的信息字段:
字段 | 说明 |
---|---|
BattleLoseStay | 失败后停留在原地。仅探索地图模式中可用。0:否 1:是 |
以下字段适用于游戏版本≥0.7.2.1 | |
RolePlay | 当玩家处于此地图时,角色的模型及名称将以此字段值为ID的人物信息所代替,并且不会显示随从单位的模型,此外背包、队伍等界面功能将被禁用 |
FixedGameTime | 当此选项不为空时,游戏时间将被冻结到该字段值所代表的一天中的某个时间(范围0~1.0,例如0.5代表正午12点)。当时间冻结时,世界时间将不会推进,只有当前地图上的单位才可以行动 |
CameraFilter | 当处于此地图时强制使用此字段值信息作为镜头滤镜效果。效果同SET_CAMERA_FILTER指令 |
NoFoodConsume | 当此选项为1时,玩家在此地图中不会有食物消耗,也不会被饿死 |
副本信息表中TAG特殊字段说明
程序中具有实际功能的信息字段:
字段 | 说明 |
---|---|
PlayerInitType | 玩家角色初始化模式 0:默认模式(以默认的角色模板和副本初始化位置来初始化角色) 1:手动模式(通过LUA接口来实现控制角色初始化) |
ExpMode | 经验分配模式,格式为:分配模式[,半径参数]
分配模式有以下几种
|
物品道具词条信息格式
物品道具的词条以“词条类型:{枚举信息1,数值1;枚举信息2,数值2;...}”的格式设置在物品表中,其中词条类型分为以下几种:
- a:被动增加角色属性,枚举信息为增加属性的Key
- skill:增加角色可用技能,枚举信息为技能ID
- dg_skill:替换角色当前的地城技能,枚举信息为地城技能ID
物品掉落信息格式
物品掉落信息格式为:
概率1,物品ID1,最低数量,最高数量[,附带参数表(见 物品列表信息格式 )]|概率2,物品ID2,最低数量,最高数量[,参数表]|...|概率N,物品N,最低数量,最高数量[,参数表]
(如LOOT*100.0,金钱,100,200|50.0,经验,100,200 表示100%的概率获取100~200金钱 50%的概率获取100~200经验)
其中,物品ID一项可指定特殊ID “QUERY”,表示从全局掉落表中查询一个掉落结果并返回。(见Q全局掉落表.xlsx 中格式)
QUERY的参数表格式为“参数1=val1,参数2=val2,....”,可支持以下查询参数:
- 【id】直接从全局掉落表中取目标ID的结果(此项存在且不为空时将忽略所有其他查询条件)
- 【lv】指定的适配等级,当-1时适配所有查询结果 当为0时以主角当前等级进行查询
- 【t1】查询筛选TAG1
- 【t2】查询筛选TAG2
- 【t3】查询筛选TAG3
特效对象事件脚本指令格式
特效对象可以附加 eftEffectEventHelper 脚本为其增加播放事件,每个事件的输入格式为: 事件时间点(start后的秒数):指令类型,参数1, 参数2,....,参数N
目前支持的指令类型有:
shake_cam:晃动屏幕 参数1为晃动时间 参数2为强度
play_sound:播放一个声音 参数1为声音ID