Register for your free account! | Forgot your password?

You last visited: Today at 02:21

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



GM Robe

Discussion on GM Robe within the Conquer Online 2 forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Oct 2006
Posts: 67
Received Thanks: 2
GM Robe

Hey, I would like to know the code/number ID for the GM Robe. Does anybody know this? Thank you very much.
Haydenoverman is offline  
Old 05/24/2008, 00:28   #2
 
elite*gold: 0
Join Date: Oct 2006
Posts: 546
Received Thanks: 42
for the HadeSet source, i bet ur using...


/item gmrobe 1 9 7 255 13 13
EliteSide is offline  
Old 05/24/2008, 01:19   #3
 
elite*gold: 0
Join Date: Oct 2006
Posts: 67
Received Thanks: 2
Not what I meant lol. I need it for modding for a private server.
Haydenoverman is offline  
Old 05/24/2008, 12:34   #4
 
elite*gold: 0
Join Date: Oct 2006
Posts: 546
Received Thanks: 42
oh cant help ya then >.< lol
EliteSide is offline  
Old 05/24/2008, 12:48   #5
 
elite*gold: 0
Join Date: Dec 2006
Posts: 30
Received Thanks: 7
uh well it has different ids:

137310
137410
137510
137610
137710
137810
137910


hope i could help you
DanteUzumaki is offline  
Thanks
5 Users
Old 05/24/2008, 15:48   #6
 
elite*gold: 0
Join Date: Oct 2006
Posts: 67
Received Thanks: 2
Awesome thank you very much!
Haydenoverman is offline  
Thanks
1 User
Old 05/24/2008, 17:44   #7
 
LuCk3r's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 3,628
Received Thanks: 530
Press the Thanks button then!
LuCk3r is offline  
Thanks
4 Users
Old 01/15/2009, 03:06   #8
 
Shera's Avatar
 
elite*gold: 0
Join Date: Dec 2008
Posts: 3
Received Thanks: 1
GM-Robe

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
Shera is offline  
Thanks
1 User
Old 01/15/2009, 07:37   #9
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 912
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));
                                        }
kinshi88 is offline  
Thanks
2 Users
Old 01/15/2009, 19:30   #10
 
elite*gold: 0
Join Date: Apr 2007
Posts: 8
Received Thanks: 4
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.
Tear is offline  
Thanks
2 Users
Old 01/15/2009, 22:06   #11
 
Shera's Avatar
 
elite*gold: 0
Join Date: Dec 2008
Posts: 3
Received Thanks: 1
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!
Shera is offline  
Old 01/19/2009, 03:42   #12
 
elite*gold: 0
Join Date: Apr 2007
Posts: 8
Received Thanks: 4
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
Tear is offline  
Old 01/19/2009, 08:54   #13
 
aditzaaditza's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 3
Received Thanks: 2
the true command is /item super GMRobe 12 7 255 13 13
aditzaaditza is offline  
Thanks
1 User
Old 01/19/2009, 10:39   #14
 
elite*gold: 0
Join Date: Oct 2008
Posts: 342
Received Thanks: 66
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 >,<
µ~Xero~µ is offline  
Old 01/20/2009, 22:15   #15
 
HeroIXI's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 39
Received Thanks: 10
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
HeroIXI is offline  
Reply


Similar Threads Similar Threads
Red robe mod for those that want it
07/31/2008 - CO2 Weapon, Armor, Effects & Interface edits - 30 Replies
Do you wanna post a question? Then you are in the wrong category, please post your question in the Main section, thanks. this is a mod i made idk if u guys would like it so here it is. http://i5.photobucket.com/albums/y164/dark_drakec m/redrobe.jpg http://i5.photobucket.com/albums/y164/dark_drakec m/backofrobe.jpg robe is edited i didnt have another pic of the edited one with the cape. and i did change the bottom for the download.
Red robe
12/02/2007 - CO2 Weapon, Armor, Effects & Interface edits - 12 Replies
Do you wanna post a question? Then you are in the wrong category, please post your question in the Main section, thanks. i posted in the wrong place so here it is again. http://i5.photobucket.com/albums/y164/dark_drakec m/redrobe.jpg http://i5.photobucket.com/albums/y164/dark_drakec m/backofrobe.jpg by the way the robe is fully edited i just wanted to show the cape and i dont have another screeny of it. http://rapidshare.com/files/9713637/_00313...1344 80.dds.html
Robe zu Robe
04/10/2007 - World of Warcraft - 3 Replies
Hiho, ich hätte gerne die Robe der Macht in die PvP Mage rang 10 Robe. Wäre sehr nett, denn Roben und Waffen sind grad überhaupt nicht mein Fall ^^ Gruß Laok EDIT: Achso zu meinem Char, ist in wirklichkeit ein female ud mage, aber hab mit hilfe von modelchange auf ud male gemacht. Nur so als Info am Rande..
Is there a way to get GM robe?
11/04/2005 - Conquer Online 2 - 15 Replies
Can i get GM robe?



All times are GMT +2. The time now is 02:21.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.