I cant open Client.Cs
LOOOL NOOBQuote:
it lets the GMs/PHs go and do /scroll home where they can go to there base place and get a pro pack, which is fully made items so they dont have to use all those commands ==]]
Starting off go to Client.cs
Search for
and under that add
then search for
above it add
then again search for
and under it add
now go to localhost/phpmyadmin ( MYSQL )
and add this NPC
( i would use the exact same MapId and Coords)
[Only registered and activated users can see links. Click Here To Register...]
now do /scroll home
and talk to pro pack
Quote:
if (CurrentNPC == 10052) //Item Giver
{
if (Status == 8 || Status == 7)
{
SendPacket(General.MyPackets.NPCSay("What kind of items you need?"));
SendPacket(General.MyPackets.NPCLink("Trojan Items", 1));
SendPacket(General.MyPackets.NPCLink("Warrior Items", 2));
SendPacket(General.MyPackets.NPCLink("Fire Items", 3));
SendPacket(General.MyPackets.NPCLink("Water Items", 4));
SendPacket(General.MyPackets.NPCLink("Archer Items", 9));
SendPacket(General.MyPackets.NPCLink("Good Bye.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
else
{
SendPacket(General.MyPackets.NPCSay("You are not a GM! How the hell you get in here?"));
SendPacket(General.MyPackets.NPCLink("Bye!", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
}