GM Robe

05/23/2008 20:14 Haydenoverman#1
Hey, I would like to know the code/number ID for the GM Robe. Does anybody know this? Thank you very much.
05/24/2008 00:28 EliteSide#2
for the HadeSet source, i bet ur using...


/item gmrobe 1 9 7 255 13 13
05/24/2008 01:19 Haydenoverman#3
Not what I meant lol. I need it for modding for a private server.
05/24/2008 12:34 EliteSide#4
oh cant help ya then >.< lol
05/24/2008 12:48 DanteUzumaki#5
uh well it has different ids:

137310
137410
137510
137610
137710
137810
137910


hope i could help you :)
05/24/2008 15:48 Haydenoverman#6
Awesome thank you very much!
05/24/2008 17:44 LuCk3r#7
Press the Thanks button then!
01/15/2009 03:06 Shera#8
ok about calling the GM Robe item by: /item gmrobe 1 9 7 255 13 13 it's ment for the old CO server upon Qonquer Online Client, so I need to know how can u call it or even anything except the usual gears (weapons - armors... etc) in the new Conquer Online server: Power Source CO for Client 5017. cause I have this server and it's a little bit different. thnx
01/15/2009 07:37 kinshi88#9
Quote:
Originally Posted by Shera View Post
ok about calling the GM Robe item by: /item gmrobe 1 9 7 255 13 13 it's ment for the old CO server upon Qonquer Online Client, so I need to know how can u call it or even anything except the usual gears (weapons - armors... etc) in the new Conquer Online server: Power Source CO for Client 5017. cause I have this server and it's a little bit different. thnx
Do you mean something like: "/item2 137310 12 7 255 13 13" ?


If so...
Code:
                                        if (Splitter[0] == "/item2")
                                        {
                                            string ItemName = Splitter[1];
                                            byte Plus = byte.Parse(Splitter[2]);
                                            byte Bless = byte.Parse(Splitter[3]);
                                            byte Enchant = byte.Parse(Splitter[4]);
                                            byte Soc1 = byte.Parse(Splitter[5]);
                                            byte Soc2 = byte.Parse(Splitter[6]);

                                            uint ItemId = 0;
                                            ItemId = uint.Parse(ItemName);

                                            if (ItemId == 0)
                                                return;

                                            if (MyChar.ItemsInInventory < 40)
                                                MyChar.AddItem(ItemId.ToString() + "-" + Plus.ToString() + "-" + Bless.ToString() + "-" + Enchant.ToString() + "-" + Soc1.ToString() + "-" + Soc2.ToString(), 0, (uint)General.Rand.Next(57458353));
                                            else
                                                SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Inventory Full.", 2005));
                                        }
01/15/2009 19:30 Tear#10
if you just want it to use then its

/item Fixed GMRobe 12 7 255 13 13

for other items it

/item Super itemname 12 7 255 13 13

the 12 is for +12
the 7 is for blessed
the 255 is for hp
the 13 is for super dragon gems.
01/15/2009 22:06 Shera#11
Thank you Kinshi88 and Tear.. it worked. the problem was in that "Fixed" call. btw do u know guys where I can find a full list of all the commands that I can use in my game?

- my server: Power Source CO.
- my DB: based on Navicat.
- my client: CO 5017 (CID Loader).

specilly the transform commands (to look like a GM in that silly blue PIG) and I got some problems btw:

1- the 2nd rb Vigor looping increasing during game play.. (after 10 minutes of playing u can't even see ur charr due to lots of vigors arround u!).
2- the full super effect for "Cool" action is not working.
3- how to add new items like making magically gears for GM's? (I tried DragonStar's way in adding the BusterBlade but seems not working for me cause I see the item in inventory but when I try to equip it my server freeze!) and I want to know how to make it for other gears like (Garments, rings... etc) cause I don't know it's files in the ini folder.

thnx to all and sorry for being annoying!
01/19/2009 03:42 Tear#12
best way to see is open the client.cs file anf serch for /level you will see all the commands there.

/level
/goto
/recall
/job
/skill
/kick
/ban
/changename
/cps
/silvers
01/19/2009 08:54 aditzaaditza#13
the true command is /item super GMRobe 12 7 255 13 13
01/19/2009 10:39 µ~Xero~µ#14
Quote:
Originally Posted by aditzaaditza View Post
the true command is /item super GMRobe 12 7 255 13 13
LMAO u are a noob there is no Super GMRobe outta here >,<
01/20/2009 22:15 HeroIXI#15
GM Robe:
Code:
/item Normalv2 gmrobe 12 7 255 13 13
Same goes for gourd and garments,

Gourd:
Code:
/item Normalv2 miraculousgourd 12 7 255 13 13
Garment(darkwizard):
Code:
/item Normalv2 darkwizard 12 7 255 13 13