For Part 1 It Goes Under case 2031
For Part 2 Use Your Brain
1. How do you add PK Arena
Code:
Part 1- if (CurrentNPC == 104802)
{
SendPacket(General.MyPackets.NPCSay("I can let you enter the area, are you sure you would like to go?"));
SendPacket(General.MyPackets.NPCLink("Yes", 1));
SendPacket(General.MyPackets.NPCLink("No", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
Code:
Part-2 if (CurrentNPC == 104802)
{
if (Control == 1)
{
MyChar.Teleport(1005, 051, 069);
}
}
2. How do you add the NPC to go into jail?
Combo Enter And Leave NPC-
Code:
Part-1 if (CurrentNPC == 104800)
{
SendPacket(General.MyPackets.NPCSay("I can take you to visit the jail, but due to the risk of your health, I have to charge you to enter. The fee will be 1,000 silvers. Do you accept?"));
SendPacket(General.MyPackets.NPCLink("Yes", 1));
SendPacket(General.MyPackets.NPCLink("No", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
if (CurrentNPC == 104801)
{
SendPacket(General.MyPackets.NPCSay("Hahaha, had enough already? Thats fine, I can let you out if you wish. Do u want to be let out?"));
SendPacket(General.MyPackets.NPCLink("Yes", 1));
SendPacket(General.MyPackets.NPCLink("No", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
Code:
Part-2 if (CurrentNPC == 104800)
{
if (Control == 1)
{
MyChar.Teleport(6000, 027, 073);
}
}
if (CurrentNPC == 104801)
{
if (Control == 1)
{
if (MyChar.LocMap == 6000 && MyChar.PKPoints > 99)
return;
MyChar.Teleport(1002, 514, 355);
}
}
3. How do you add 1st Reborn? The one I got doesn't give you the gem?
Answer- Use Your Brains
4. Is there a 2nd Reborn for PServers yet if so how do you add? (Script)
Answer- Make It Yourself
5. How do you make The size change npc save your size?
Answer- Learn From The Codes I Gave You
6. What is the size change npc's TYPE Number?
Answer- Its Not A Matter Of Numer Its A Matter Of The Model Numer And IF You Even Know How To Make A Npc If You Dont...... DONT BOTHER MAKING A FREAKING SERVER.....