[Release] Jail NPC
Ok ..aki é o npc da jail de TwinCity (Entre e sai)
em Handlers / NpcTalk.cs Proure por
e acima, acrescentar:
Ok ..aki é o npc da jail de TwinCity (Entre e sai)
em Handlers / NpcTalk.cs Proure por
default:
{
Text("NPC " + ID + "'s dialog is not coded.", CSocket);
e acima, acrescentar:
case 43:// enter the Jail
{
if (LinkBack == 0)
{
Text("Do you want to visit the jail ?", CSocket);
Link("Yes,please", 1, CSocket);
Link("No thanks", 225, CSocket);
End(CSocket);
}
else if (LinkBack == 1)
{
{
Teleport(6000, 28, 71, 0, CSocket);
}
}
break;
}
case 42://go out the Jail
{
if (LinkBack == 0)
{
Text("Do you want to leave the jail ?", CSocket);
Link("Yes,please", 1, CSocket);
Link("No thanks", 225, CSocket);
End(CSocket);
}
else if (LinkBack == 1)
{
{
Teleport(1002, 439, 390, 0, CSocket);
}
}
break;
}