[Help] GM Comands

07/11/2009 22:12 Sparxxx#1
Hi !!!

I need the GM comands for client 5017 if some one have post here to me plz!!!

i rly want the comand to transform into TQ blue elephant :D


thx...
07/11/2009 22:32 ~Yuki~#2
You can find all commands in Client.cs if u use LOTF based Sources
If you use Binarys Idk where
07/12/2009 00:26 Arcotemple:)#3
Quote:
Originally Posted by Sparxxx View Post
Hi !!!

I need the GM comands for client 5017 if some one have post here to me plz!!!

i rly want the comand to transform into TQ blue elephant :D


thx...
umm go to client.cs and searh for

Code:
(status == 8)
and gm codes should be around there

i said SHOULD its not for sure
07/12/2009 00:28 Sparxxx#4
yeah i got some in Client.cs, and any one know how to me transforme into TQ elephant ?

and GM robe ?
07/12/2009 00:29 Arcotemple:)#5
Quote:
Originally Posted by Sparxxx View Post
yeah i got some in Client.cs, and any one know how to me transforme into TQ elephant ?
it might not be in your source

search for /model
07/12/2009 03:49 Sparxxx#6
Quote:
Originally Posted by Arcotemple:) View Post
it might not be in your source

search for /model
is just /model ?


no need something after like /model 1 or /model 2 ?
07/12/2009 03:51 Arcotemple:)#7
[QUOTE=Sparxxx;2543560]is just /model ?


no need something after like /model 1 or /model 2 ?[/QUOTit should be just /model then all the splitters should be right under it
07/12/2009 04:59 Sparxxx#8
there is this:
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;

                                            SendPacket(General.MyPackets.Vital(MyChar.UID, 12, ulong.Parse(MyChar.Avatar.ToString() + MyChar.Model.ToString())));
                                            World.UpdateSpawn(MyChar);
                                        }
its for change size and gender, nothing there about elephant, but its ok guys, i will try make a 5065 server, i have all, im just need the CoAccountServerKeygen, if any one have post here for me plz...
07/12/2009 13:04 Arcotemple:)#9
Heres the one in my source
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] == "guard")
                                                MyChar.Model = 900;
                                            if (Splitter[1] == "guard2")
                                                MyChar.Model = 910;
                                            if (Splitter[1] == "guard3")
                                                MyChar.Model = 920;
                                            if (Splitter[1] == "nd")
                                                MyChar.Model = 377;
                                            if (Splitter[1] == "satan")
                                                MyChar.Model = 166;
                                            if (Splitter[1] == "vampire")
                                                MyChar.Model = 111;
                                            if (Splitter[1] == "bunny")
                                                MyChar.Model = 222;
                                            if (Splitter[1] == "bunny2")
                                                MyChar.Model = 224;
                                            if (Splitter[1] == "bunny3")
                                                MyChar.Model = 225;
                                            if (Splitter[1] == "fairy")
                                                MyChar.Model = 130;
                                            if (Splitter[1] == "pig")
                                                MyChar.Model = 215;
                                            if (Splitter[1] == "titan")
                                                MyChar.Model = 153;
                                            if (Splitter[1] == "pluto")
                                                MyChar.Model = 168;
                                            if (Splitter[1] == "revenant")
                                                MyChar.Model = 265;
                                            if (Splitter[1] == "eidolon")
                                                MyChar.Model = 266;
                                            if (Splitter[1] == "troll")
                                                MyChar.Model = 353;
                                            if (Splitter[1] == "soldier")
                                                MyChar.Model = 263;
                                            if (Splitter[1] == "phantom")
                                                MyChar.Model = 363;
                                            if (Splitter[1] == "spearman")
                                                MyChar.Model = 165;
                                            if (Splitter[1] == "titan")
                                                MyChar.Model = 153;
                                            if (Splitter[1] == "gano")
                                                MyChar.Model = 133;
                                            if (Splitter[1] == "phe")
                                                MyChar.Model = 104;
                                            if (Splitter[1] == "gm")
                                                MyChar.Model = 2223;

                                            SendPacket(General.MyPackets.Vital(MyChar.UID, 12, ulong.Parse(MyChar.Avatar.ToString() + MyChar.Model.ToString())));
                                            World.UpdateSpawn(MyChar);
                                        }
press thanks if i helped
07/12/2009 13:24 Sparxxx#10
didnt work....

i want now the CoAccountServer for patch 5065, i hate patch 5017 :mad:
07/12/2009 13:29 Arcotemple:)#11
Quote:
Originally Posted by Sparxxx View Post
didnt work....

i want now the CoAccountServer for patch 5065, i hate patch 5017 :mad:
see theres something your doing wrong
cuz that should work 100%
your doing something wrong
07/12/2009 13:42 Sparxxx#12
Quote:
Originally Posted by Arcotemple:) View Post
see theres something your doing wrong
cuz that should work 100%
your doing something wrong
its all right look:
07/12/2009 22:02 Arcotemple:)#13
Quote:
Originally Posted by Sparxxx View Post
its all right look:
are you sure your doing the commands rifght?

like /model gm9
07/12/2009 22:26 ~*NewDuuDe*~#14
Search for LOTF GM commands, someone released a shitload of em.
07/13/2009 00:20 Sparxxx#15
Quote:
Originally Posted by Arcotemple:) View Post
are you sure your doing the commands rifght?

like /model gm9
yes im sure