
* The required NPC name parameter is now optional for the following script commands: enablenpc disablenpc hideonnpc hideoffnpc cloakonnpc cloakoffnpc isnpccloaked * Updated docs Co-authored-by: Aleos <aleos89@users.noreply.github.com>
19 lines
483 B
Plaintext
19 lines
483 B
Plaintext
//===== rAthena Script =======================================
|
|
//= Global NPCs
|
|
//===== Description: =========================================
|
|
//= General npcs which should be loaded first.
|
|
//===== Additional Comments: =================================
|
|
//= 1.0 Added "dummy_npc" and "dummy_cloaked_npc". [Capuche]
|
|
//============================================================
|
|
|
|
- script dummy_npc -1,{
|
|
end;
|
|
}
|
|
|
|
- script dummy_cloaked_npc -1,{
|
|
end;
|
|
OnInit:
|
|
cloakonnpc();
|
|
end;
|
|
}
|