Register for your free account! | Forgot your password?

You last visited: Today at 12:14

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

Advertisement



[Release]5165 commands

Discussion on [Release]5165 commands within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1
 
[X]-Cape's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 502
Received Thanks: 112
[Release]5165 commands

today i got bored so i made some commands for 5165 source
- Command to restore you hp and mp
Code:
if (Cmd[0] == "/life")
                        {
                            GC.MyChar.CurMP = (ushort)GC.MyChar.MaxMP;
                            GC.MyChar.CurHP = (ushort)GC.MyChar.MaxHP;
                        }
- scroll command
Code:
 if (Cmd[0] == "/scroll")
                        {
                            if (Cmd[1] == "tc")                          
                                GC.MyChar.Teleport(1002, 432, 380);
                            if (Cmd[1] == "bi")
                                GC.MyChar.Teleport(1015, 716, 575);
                            if (Cmd[1] == "pc")
                                GC.MyChar.Teleport(1011, 193, 261);
                            if (Cmd[1] == "dc")
                                GC.MyChar.Teleport(1000, 500, 650);
                            if (Cmd[1] == "ac")
                                GC.MyChar.Teleport(1020, 565, 562);
                            if (Cmd[1] == "ma")
                                GC.MyChar.Teleport(1036, 211, 196);
                            if (Cmd[1] == "pka")
                                GC.MyChar.Teleport(1005, 50, 50);
                            if (Cmd[1] == "house")
                                GC.MyChar.Teleport(1099, 44, 40);
                            if (Cmd[1] == "ship")
                                //This works only if you have the ship map
                                GC.MyChar.Teleport(9999, 67, 52);
                        }
- skills command
Code:
if (Cmd[0] == "/troskills")
                        {
                            GC.MyChar.RWSkill(new Game.Skill() { ID = 1115, Lvl = 4, Exp = 0 });
                            GC.MyChar.RWSkill(new Game.Skill() { ID = 1045, Lvl = 4, Exp = 0 });
                            GC.MyChar.RWSkill(new Game.Skill() { ID = 1046, Lvl = 4, Exp = 0 });
                            GC.MyChar.RWSkill(new Game.Skill() { ID = 7020, Lvl = 9, Exp = 0 });
                            GC.MyChar.RWSkill(new Game.Skill() { ID = 5030, Lvl = 9, Exp = 0 });
                        }
                            if (Cmd[0] == "/ninjaskills")
                            {
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 6000, Lvl = 4, Exp = 0 });
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 6001, Lvl = 4, Exp = 0 });
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 6002, Lvl = 4, Exp = 0 });
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 6003, Lvl = 4, Exp = 0 });
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 6004, Lvl = 0, Exp = 0 });
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 6010, Lvl = 0, Exp = 0 });
                            }
                            if (Cmd[0] == "/warrskills")
                            {
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 1025, Lvl = 0, Exp = 0 });
                            }
                            if (Cmd[0] == "/archerskills")
                            {
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 8001, Lvl = 5, Exp = 0 });
                            }
                            if (Cmd[0] == "/taoskills")
                            {
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 1095, Lvl = 4, Exp = 0 });
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 1100, Lvl = 0, Exp = 0 });
                                GC.MyChar.RWSkill(new Game.Skill() { ID = 1002, Lvl = 3, Exp = 0 });
                            }
- and stats command
Code:
if (Cmd[0] == "/stats")
                            {
                                GC.MyChar.Str = 500;
                                GC.MyChar.Agi = 500;
                                GC.MyChar.Vit = 500;
                                GC.MyChar.Spi = 500;
                            }
i know this is a lame release but if someone noob (like me) needs them and doesn't know how to do it feel free to take them
[X]-Cape is offline  
Thanks
1 User
Old 12/15/2010, 16:59   #2
 
elite*gold: 0
Join Date: Nov 2010
Posts: 1,162
Received Thanks: 370
U did notice u posted in wrong section?

Anyways improving is always good.
Syst3m_W1z4rd is offline  
Old 12/15/2010, 17:31   #3
 
[X]-Cape's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 502
Received Thanks: 112
omg , i didn't notice .
#request move please !
[X]-Cape is offline  
Old 12/15/2010, 19:58   #4
 
elite*gold: 0
Join Date: Apr 2010
Posts: 291
Received Thanks: 61
What a release 'Oh my ***' ! You took them straight away from "your source" (Tanel's)
atleast you could do values for the attributes by other people choice,, lets say

Quote:
if (Cmd[0] == "/str")
{
GC.MyChar.Str = ushort.Parse(Cmd[1]);
}
I Hope you understand how this goes//

And about the command for life , you could do Stamina reload and Maxvigor//

Quote:
if (Cmd[0] == "/life")
{
GC.MyChar.Vigor = GC.MyChar.MaxVigor;
GC.MyChar.Stamina += 150; // or GC.MyChar.Stamina = GC.MyChar.MaxStamina;
}
Your picture in your signature is <3
†he Knight is offline  
Old 12/15/2010, 20:21   #5
 
[X]-Cape's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 502
Received Thanks: 112
Quote:
Originally Posted by †he Knight View Post
What a release 'Oh my ***' ! You took them straight away from "your source" (Tanel's)
atleast you could do values for the attributes by other people choice,, lets say


I Hope you understand how this goes//

And about the command for life , you could do Stamina reload and Maxvigor//


Your picture in your signature is <3
i use arco's source o.o and i coded them because it didn't have them lol .
read the full thread ( i'm a beginner ) , still learning bro . just made my first quest working on making the mob drop the item ( but i keep failing for like 3h )

off topic : you like the picture with "*******" or the signature ? :|
[X]-Cape is offline  
Old 12/15/2010, 20:57   #6
 
elite*gold: 0
Join Date: Nov 2010
Posts: 1,162
Received Thanks: 370
Btw. Arco's source = Tanel.
Since Tanel created it.
Syst3m_W1z4rd is offline  
Old 12/15/2010, 21:06   #7
 
elite*gold: 0
Join Date: Apr 2010
Posts: 291
Received Thanks: 61
Doesn't matter , check your inbox X-Cape ,, Help me with photoshop and I'll help you with C# (some basic things) i'm a noob also
†he Knight is offline  
Old 12/15/2010, 22:14   #8
 
[X]-Cape's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 502
Received Thanks: 112
my signature was made by a friend but maybe he will make one for you too ( i'll tell him on msn ) and by the way i added you to my msn list .
and about the commands , if you guys think i took them from someones source then i'll delete them .
[X]-Cape is offline  
Old 12/16/2010, 09:54   #9


 
Korvacs's Avatar
 
elite*gold: 20
Join Date: Mar 2006
Posts: 6,126
Received Thanks: 2,518
Moved.
Korvacs is offline  
Thanks
1 User
Old 12/16/2010, 18:35   #10
 
[X]-Cape's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 502
Received Thanks: 112
thanks korvacs
[X]-Cape is offline  
Reply

Tags
5165, 5165 commands, 5165 release


Similar Threads Similar Threads
[Release] 5165 Commands
03/25/2012 - CO2 PServer Guides & Releases - 25 Replies
I'm releasing my command like i promised they are not finished my im tired of working on them right now ill release the prof and skill commands when i finish them but for now this is what i got (IM NOT A PRO AT CODING) so dont expect something perfect if your find any bugs just post a reply or PM me ill fix it and give you credit when i get to making a list for the commands ill post that too Everyone Good Luck on making your private servers. using System; using...
[Release] Few commands ( Impulse's 5165 )
06/18/2010 - CO2 PServer Guides & Releases - 8 Replies
Here's a few commands... In console you can't type @restart to restart so add this at <Program.cs under public static void CommandsAI(string command) { try { string data = command.Split(' '); switch (data)
[Release]/commands for 5165
02/18/2010 - CO2 PServer Guides & Releases - 21 Replies
Hello all, I have noticed that the /arrest command for 5165 didnt work... and I found out how to make a /revive playername command work so here it goes, the /arrest did begin off with someone off 4botters made it but it did NOT work and it made them like level 1 with no gold or silvers so I made it better, For the /revive playername command it is if (Cmd == "/revive") { Game.Character C = Game.World.CharacterFromName(Cmd); ...



All times are GMT +1. The time now is 12:16.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.