[Release]5165 /model command

03/21/2010 20:40 BadmanDiogo#1
idk if this has been posted yet but here it goes

Place this in Chat.cs below this code

Quote:
if (Cmd[0] == "/dc")
{
GC.Disconnect();
return;
}
Quote:
if (Cmd[0] == "/model")
{
if (Cmd[1] == "smale")
GC.MyChar.Body = 1003;
if (Cmd[1] == "lmale")
GC.MyChar.Body = 1004;
if (Cmd[1] == "sfemale")
GC.MyChar.Body = 2001;
if (Cmd[1] == "lfemale")
GC.MyChar.Body = 2002;

}
To use it, just type

/model smale > Change your body to Small Male
/model lmale > Change your body to Large Male
/model sfemale > Change your body to Small Female
/model lfemale > Change your body to Large Male
03/21/2010 21:56 .Light#2
You release something that everyone has....

It is included in every source.

#request close
03/21/2010 22:04 -Shunsui-#3
Quote:
Originally Posted by .Light View Post
You release something that everyone has....

It is included in every source.

#request close
Actually its not in every source i doubt it even came with the original source.
03/21/2010 22:06 .Light#4
Well, even so it has been released before?

Lol the first release I did everyone got pissed off whining that it was not in the right section... It was guides for a private server :P

Well sorry I guess. Good work (Even though it was Copy + Paste from source). no +k sorry.
03/21/2010 22:27 Arcо#5
Quote:
Originally Posted by .Light View Post
Well, even so it has been released before?

Lol the first release I did everyone got pissed off whining that it was not in the right section... It was guides for a private server :P

Well sorry I guess. Good work (Even though it was Copy + Paste from source). no +k sorry.
Don't assume it was copy and paste.
He could have converted it from 5017lotf-5165lotf.
Don't assume.
Ontopic.
Here's a command somewhat like that but its more flexible.
Code:
                        if (Cmd[0] == "/body")
                        {
                            GC.MyChar.Body = ushort.Parse(Cmd[1]);
                        }
03/21/2010 22:42 .Light#6
Okay Arco good point. I apologize for assuming that you copied and pasted it. Good work :P
03/22/2010 00:25 -NewDawn-#7
Quote:
Originally Posted by .Arco View Post
Don't assume it was copy and paste.
He could have converted it from 5017lotf-5165lotf.
Don't assume.
Ontopic.
Here's a command somewhat like that but its more flexible.
Code:
                        if (Cmd[0] == "/body")
                        {
                            GC.MyChar.Body = ushort.Parse(Cmd[1]);
                        }
That's the command I made up for my source too =P
It's common sense.
Works better if you ask me ^^
03/22/2010 00:26 .Light#8
I also made this cmd up and I suck at C#... NewDawn you actually helped me when I forgot to take off armor lol
03/22/2010 00:57 ElectricPig#9
gj