Lets say:
this is a part of the npc:
lets say i wont to make it only accesable for [ADM] status,
am i doing this correct?
Already thanks for help :)
this is a part of the npc:
lets say i wont to make it only accesable for [ADM] status,
am i doing this correct?
Code:
#region bla bla npc
case 300006:
{
if (GC.AuthInfo.Status == "[ADM]")
if (Control == 0)
{
GC.AddSend(Packets.NPCSay("Welcome to the CrankCo - This is gift gear NPC. Hello I am one of goddess which are here to help.!"));
GC.AddSend(Packets.NPCLink("Cool let me in.", 1));
GC.AddSend(Packets.NPCLink("Not need thx", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
Already thanks for help :)