spawnBuffPod
An eventCall to spawn an Archvile.
Usage
item[0] = {
eventCall = {
eventDef = "spawnArchvile";
args = {
num = 4;
item[0] = {
entity = ""; // spawnTarget
}
item[1] = {
entity = ""; // archvileTemplate
}
item[2] = {
string = ""; // archvile_label
}
item[3] = {
string = ""; // group_label
}
}
}
}
spawnTargetis the spawn target or spawn group to spawn the Archvile with.archvileTemplateis theidArchvileTemplateyou want to use.archvile_labelis the label given to the Archvile that is spawned. This parameter is optional and can be left blank.group_labelis the label given to demons summoned by the Archvile. This parameter is optional and can be left blank.
Example Usage
item[0] = {
eventCall = {
eventDef = "spawnArchvile";
args = {
num = 4;
item[0] = {
entity = "ai_target_spawn_111"; // spawnTarget
}
item[1] = {
entity = "mod_template_2"; // archvileTemplate
}
item[2] = {
string = "super heavy"; // archvile_label
}
item[3] = {
string = "summons"; // group_label
}
}
}
}