Quote:
Originally Posted by rule34onyourmom
I'm New At This Whole Private Server Thing. I Can't figure out how To Get this Little Blue Pig / Dumbo / Floppy Ear Thing Added Into my Private Server, It's A 5017 Server And I Just Cant Seem To figure Out How To Add it If Someone would Help Me out and Make a Walk Through Be so Much Help, if not That's alright to.
Please Don't Be Rude I Know I Sound Like a Dumbass.
|
here bud
heres the code in my source for alot of models
idk which one is the retarded pig but you can check
make sure you dont have any gears on!
Code:
if (Splitter[0] == "/model")
{
if (Splitter[1] == "smale")
MyChar.Model = 1003;
if (Splitter[1] == "lmale")
MyChar.Model = 1004;
if (Splitter[1] == "sfemale")
MyChar.Model = 2001;
if (Splitter[1] == "lfemale")
MyChar.Model = 2002;
if (Splitter[1] == "gm1")
MyChar.Model = 2223;
if (Splitter[1] == "gm2")
MyChar.Model = 212;
if (Splitter[1] == "gm3")
MyChar.Model = 228;
if (Splitter[1] == "gm4")
MyChar.Model = 255;
if (Splitter[1] == "gm5")
MyChar.Model = 311;
if (Splitter[1] == "gm6")
MyChar.Model = 325;
if (Splitter[1] == "gm7")
MyChar.Model = 329;
if (Splitter[1] == "gm8")
MyChar.Model = 353;
if (Splitter[1] == "gm9")
MyChar.Model = 256;
if (Splitter[1] == "gm10")
MyChar.Model = 344;
SendPacket(General.MyPackets.Vital(MyChar.UID, 12, ulong.Parse(MyChar.Avatar.ToString() + MyChar.Model.ToString())));
World.UpdateSpawn(MyChar);
}
so it would be like this
ex: /model gm10
thank me if ths helped