Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 12:42

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

Advertisement



Few Commands PeTe and I coded(for Lotf)

Discussion on Few Commands PeTe and I coded(for Lotf) within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
Hoven's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 456
Received Thanks: 128
Few Commands PeTe and I coded(for Lotf)

deleted due 2 people flaming me
Hoven is offline  
Old 02/09/2009, 03:15   #2
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 912
Quote:
Few Commands PeTe and I copy & pasted(for Lotf)
Fix'd.
kinshi88 is offline  
Old 02/09/2009, 03:17   #3
 
Hoven's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 456
Received Thanks: 128
lols think w.e u want
Hoven is offline  
Old 02/09/2009, 03:20   #4
 
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154


Edit:: Notice he editted his post to give me credits.
tao4229 is offline  
Old 02/09/2009, 03:21   #5
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 912
Quote:
Originally Posted by tao4229 View Post
Haha, pwn'd!
kinshi88 is offline  
Old 02/09/2009, 03:23   #6
 
Hoven's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 456
Received Thanks: 128
so i took 1! <--- key word, used 1! of urs bcuz it was shorter then mine X_X? and the others?

u can believe if i self coded or u can believe w.e u want

there here for people weither u like them or not
Hoven is offline  
Old 02/09/2009, 03:24   #7
 
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154
Also, notice how they failed with "@drop"?
Since it checks if the first character is '/', nothings going to happen.
tao4229 is offline  
Old 02/09/2009, 03:24   #8
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 912


Also, the /level, /job, /scroll, /model commands, along with the /silvers, /cps, and /vps commands can all be found in any Lotf source released on here.
kinshi88 is offline  
Old 02/09/2009, 03:27   #9
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
actually we have two first characters, we havent tested at all yet, so dont flame about it, once is @ and one is /
PeTe Ninja is offline  
Old 02/09/2009, 03:30   #10
 
Hoven's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 456
Received Thanks: 128
Yo Kinshi u think ur so good?
Code:
                                            if (Splitter[0] == "/drop")
                                            {
                                                uint MoneyDrops = 0;
                                                byte Repeat = byte.Parse(Splitter[2]);
                                                for (int i = 0; i < Repeat; i++)
                                                {
                                                    if (Splitter[1] == "db")
                                                    {
                                                        string Item = "1088000-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
                                                    if (Splitter[1] == "met")
                                                    {
                                                        string Item = "1088001-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
                                                }
                                            }
its missing expalls db scroll and met scroll, clearly u can see this and notice its not urs that 1 posted.... do u guys ever believe any1? seriously? just go code somthing if ur so pro, were releasing for others who are learning or just want a noob pserver.

You people are really getting on my nervs always flaming people and what not. im sure u have other things to do, so y not do em?
Hoven is offline  
Old 02/09/2009, 03:31   #11
 
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154
Quote:
Originally Posted by PeTe Ninja View Post
actually we have two first characters, we havent tested at all yet, so dont flame about it, once is @ and one is /
I looked at it, and from what I could see, the GM/PM commands checked for '/', and the normal players checked for '@'.
"@drop" was in the GM/PM section, but I can't tell now because it's gone.


Quote:
Originally Posted by Hoven View Post
Yo Kinshi u think ur so good? Clearly he's at least smarter than you...
Code:
                                            if (Splitter[0] == "/drop")
                                            {
                                                uint MoneyDrops = 0;
                                                byte Repeat = byte.Parse(Splitter[2]);
                                                for (int i = 0; i < Repeat; i++)
                                                {
                                                    if (Splitter[1] == "db")
                                                    {
                                                        string Item = "1088000-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
                                                    if (Splitter[1] == "met")
                                                    {
                                                        string Item = "1088001-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
                                                }
                                            }
its missing expalls db scroll and met scroll, clearly u can see this and notice its not urs that 1 posted....Holy shit, it's really hard to change two strings. do u guys ever believe any1?Yeah, but there's some shit going on here, seriously. seriously? just go code somthing if ur so pro I do all the time, ASM is hard :\, were releasing for others who are learning or just want a noob pserver. Idc if you release anything, just don't claim stuff yours that ... well, isn't yours.

You people are really getting on my nervs always flaming people and what not.K, go cry to someone else, I don't care. im sure u have other things to do, so y not do em?This is soooo much more fun, LOL
`
tao4229 is offline  
Old 02/09/2009, 03:35   #12
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 912
Quote:
Originally Posted by Hoven View Post
Yo Kinshi u think ur so good?
Code:
                                            if (Splitter[0] == "/drop")
                                            {
                                                uint MoneyDrops = 0;
                                                byte Repeat = byte.Parse(Splitter[2]);
                                                for (int i = 0; i < Repeat; i++)
                                                {
                                                    if (Splitter[1] == "db")
                                                    {
                                                        string Item = "1088000-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
                                                    if (Splitter[1] == "met")
                                                    {
                                                        string Item = "1088001-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
                                                }
                                            }
its missing expalls db scroll and met scroll, clearly u can see this and notice its not urs that 1 posted.... do u guys ever believe any1? seriously? just go code somthing if ur so pro, were releasing for others who are learning or just want a noob pserver.

You people are really getting on my nervs always flaming people and what not. im sure u have other things to do, so y not do em?
Oh wow! You copied this:
Code:
                                                    if (Splitter[1] == "db")
                                                    {
                                                        string Item = "1088000-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
and changed a total of 2 things to it!

Nope, I don't see no copying and pasting at all!
kinshi88 is offline  
Old 02/09/2009, 03:36   #13
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
#request close

poster closed topic please close
PeTe Ninja is offline  
Old 02/09/2009, 03:36   #14
 
LetterX's Avatar
 
elite*gold: 20
Join Date: May 2007
Posts: 1,125
Received Thanks: 332
UP **** COCONUT.
LetterX is offline  
Old 02/09/2009, 03:37   #15
 
Hoven's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 456
Received Thanks: 128
Really kinshi? DO U REALLY THINK that no one else from u can code?
do u? because u treat every1 else besides a few people like ****! u have NO PROOF that i did not code these

so just shut up and get a life, stop flamming just because u think ur better then every1 else
Hoven is offline  
Reply


Similar Threads Similar Threads
[Release]Super commands for LOTF
01/26/2010 - CO2 PServer Guides & Releases - 11 Replies
Here is alot commands for lotf. That you can use. They might be in source already, but these are fixed =] Some are also jsut some new commands =] Botjail if (Splitter == "/botjail") {
[RELEASE]Some New LOTF commands
07/06/2009 - CO2 PServer Guides & Releases - 9 Replies
Very simple go to where all ur other commands and are put these 2 in or what ever one u want in ////////CREDITS Go To Pete//////////////// if (Splitter == "/givecps") { foreach (DictionaryEntry DE in World.AllChars) { ...
Commands for LOTF server?
08/13/2008 - Conquer Online 2 - 11 Replies
Can some1 post Fully commands for LOTF server? i got some problems with making items.. i cant make em:/...



All times are GMT +2. The time now is 12:42.


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.