Ok im look at VIP System.... when I open my Nobility table... it shows as 0 what do i need to set my Nobility No.. to make it status 1? I tried setting it at one...
Code:
nobility int(2) No 0
nobility int(2) No 0
heres what i think you should doQuote:
Ok im look at VIP System.... when I open my Nobility table... it shows as 0 what do i need to set my Nobility No.. to make it status 1? I tried setting it at one...
Code:nobility int(2) No 0
if (Status == 4)
if (Splitter[0] == "/scroll")
{
if (Splitter[1] == "gm")
{
MyChar.Teleport(1099, 042, 050);
}
if (Splitter[1] == "tc")
{
MyChar.Teleport(1002, 431, 379);
}
if (Splitter[1] == "lab1")
{
MyChar.Teleport(1351, 13, 127);
}
if (Splitter[1] == "event")
{
MyChar.Teleport(1037, 259, 263);
}
if (Splitter[1] == "tg")
{
MyChar.Teleport(1039, 200, 200);
}
if (Splitter[1] == "ja")
{
MyChar.Teleport(6000, 30, 75);
}
if (Splitter[1] == "bjail")
{
MyChar.Teleport(6001, 28, 72);
}
if (Splitter[1] == "ac")
{
MyChar.Teleport(1020, 567, 576);
}
if (Splitter[1] == "dc")
{
MyChar.Teleport(1000, 500, 650);
}
if (Splitter[1] == "mc")
{
MyChar.Teleport(1001, 316, 642);
}
if (Splitter[1] == "bi")
{
MyChar.Teleport(1015, 723, 573);
}
if (Splitter[1] == "pc")
{
MyChar.Teleport(1011, 190, 271);
}
if (Splitter[1] == "ma")
{
MyChar.Teleport(1036, 200, 200);
}
if (Splitter[1] == "arena")
{
MyChar.Teleport(1005, 52, 69);
}
if (Splitter[1] == "lotto")
{
MyChar.Teleport(700, 52, 69);
}
if (Splitter[1] == "birth")
{
MyChar.Teleport(1010, 60, 110);
}
}
if (Status == 4)
if (Splitter[0] == "/scroll")
{
if (Splitter[1] == "gm")
{
MyChar.Teleport(1099, 042, 050);
}
if (Splitter[1] == "tc")
{
MyChar.Teleport(1002, 431, 379);
}
if (Splitter[1] == "lab1")
{
MyChar.Teleport(1351, 13, 127);
}
if (Splitter[1] == "event")
{
MyChar.Teleport(1037, 259, 263);
}
if (Splitter[1] == "tg")
{
MyChar.Teleport(1039, 200, 200);
}
if (Splitter[1] == "ja")
{
MyChar.Teleport(6000, 30, 75);
}
if (Splitter[1] == "bjail")
{
MyChar.Teleport(6001, 28, 72);
}
if (Splitter[1] == "ac")
{
MyChar.Teleport(1020, 567, 576);
}
if (Splitter[1] == "dc")
{
MyChar.Teleport(1000, 500, 650);
}
if (Splitter[1] == "mc")
{
MyChar.Teleport(1001, 316, 642);
}
if (Splitter[1] == "bi")
{
MyChar.Teleport(1015, 723, 573);
}
if (Splitter[1] == "pc")
{
MyChar.Teleport(1011, 190, 271);
}
if (Splitter[1] == "ma")
{
MyChar.Teleport(1036, 200, 200);
}
if (Splitter[1] == "arena")
{
MyChar.Teleport(1005, 52, 69);
}
if (Splitter[1] == "lotto")
{
MyChar.Teleport(700, 52, 69);
}
if (Splitter[1] == "birth")
{
MyChar.Teleport(1010, 60, 110);
}
}