rathena/npc/re/other/global_npcs.txt
Atemo 69802a23fb
Suggestion: NPC name as parameter in enablenpc (#6233)
* 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>
2021-09-09 14:50:24 +02:00

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;
}