Register for your free account! | Forgot your password?

You last visited: Today at 22:56

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

Advertisement



VIP

Discussion on VIP within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2006
Posts: 114
Received Thanks: 30
VIP

Ok im look at VIP System.... when I open my Nobility table... it shows as 0 what do i need to set my Nobility No.. to make it status 1? I tried setting it at one...

Code:
  	nobility  	int(2)  	 	  	No  	0
imported_spitt_fire911 is offline  
Old 07/11/2009, 12:01   #2

 
elite*gold: 169
Join Date: Jan 2009
Posts: 1,567
Received Thanks: 509
Nice
Xanrry is offline  
Old 07/11/2009, 19:33   #3
 
felipeboladao's Avatar
 
elite*gold: 0
Join Date: Jul 2007
Posts: 255
Received Thanks: 273
what?
felipeboladao is offline  
Old 07/11/2009, 22:40   #4
 
elite*gold: 0
Join Date: May 2009
Posts: 874
Received Thanks: 174
Quote:
Originally Posted by imported_spitt_fire911 View Post
Ok im look at VIP System.... when I open my Nobility table... it shows as 0 what do i need to set my Nobility No.. to make it status 1? I tried setting it at one...

Code:
  	nobility  	int(2)  	 	  	No  	0
heres what i think you should do

whenever somebody donates real money to your server

go to mysql and make theyre status something un used like idk umm

4.

and then go to your source and go to the commands and put in a whole new region or whatever its called

Code:
                                    if (Status == 4)
then under that put whatever commands you would want the vip be able to use like for example they can scroll wherever they want without buying a scroll or they can revive without waiting for the seconds to pass
this is what i would put

Code:
                                        if (Splitter[0] == "/scroll")
                                        {
                                            if (Splitter[1] == "gm")
                                            {
                                                MyChar.Teleport(1099, 042, 050);
                                            }
                                            if (Splitter[1] == "tc")
                                            {
                                                MyChar.Teleport(1002, 431, 379);
                                            }
                                            if (Splitter[1] == "lab1")
                                            {
                                                MyChar.Teleport(1351, 13, 127);
                                            }
                                            if (Splitter[1] == "event")
                                            {
                                                MyChar.Teleport(1037, 259, 263);
                                            }
                                            if (Splitter[1] == "tg")
                                            {
                                                MyChar.Teleport(1039, 200, 200);
                                            }
                                            if (Splitter[1] == "ja")
                                            {
                                                MyChar.Teleport(6000, 30, 75);
                                            }
                                            if (Splitter[1] == "bjail")
                                            {
                                                MyChar.Teleport(6001, 28, 72);
                                            }
                                            if (Splitter[1] == "ac")
                                            {
                                                MyChar.Teleport(1020, 567, 576);
                                            }
                                            if (Splitter[1] == "dc")
                                            {
                                                MyChar.Teleport(1000, 500, 650);
                                            }
                                            if (Splitter[1] == "mc")
                                            {
                                                MyChar.Teleport(1001, 316, 642);
                                            }
                                            if (Splitter[1] == "bi")
                                            {
                                                MyChar.Teleport(1015, 723, 573);
                                            }
                                            if (Splitter[1] == "pc")
                                            {
                                                MyChar.Teleport(1011, 190, 271);
                                            }
                                            if (Splitter[1] == "ma")
                                            {
                                                MyChar.Teleport(1036, 200, 200);
                                            }
                                            if (Splitter[1] == "arena")
                                            {
                                                MyChar.Teleport(1005, 52, 69);
                                            }
                                            if (Splitter[1] == "lotto")
                                            {
                                                MyChar.Teleport(700, 52, 69);
                                            }
                                            if (Splitter[1] == "birth")
                                            {
                                                MyChar.Teleport(1010, 60, 110);
                                            }
                                        }
so reall yall together i would put this

Code:
                                    if (Status == 4)
                                       
                                        if (Splitter[0] == "/scroll")
                                        {
                                            if (Splitter[1] == "gm")
                                            {
                                                MyChar.Teleport(1099, 042, 050);
                                            }
                                            if (Splitter[1] == "tc")
                                            {
                                                MyChar.Teleport(1002, 431, 379);
                                            }
                                            if (Splitter[1] == "lab1")
                                            {
                                                MyChar.Teleport(1351, 13, 127);
                                            }
                                            if (Splitter[1] == "event")
                                            {
                                                MyChar.Teleport(1037, 259, 263);
                                            }
                                            if (Splitter[1] == "tg")
                                            {
                                                MyChar.Teleport(1039, 200, 200);
                                            }
                                            if (Splitter[1] == "ja")
                                            {
                                                MyChar.Teleport(6000, 30, 75);
                                            }
                                            if (Splitter[1] == "bjail")
                                            {
                                                MyChar.Teleport(6001, 28, 72);
                                            }
                                            if (Splitter[1] == "ac")
                                            {
                                                MyChar.Teleport(1020, 567, 576);
                                            }
                                            if (Splitter[1] == "dc")
                                            {
                                                MyChar.Teleport(1000, 500, 650);
                                            }
                                            if (Splitter[1] == "mc")
                                            {
                                                MyChar.Teleport(1001, 316, 642);
                                            }
                                            if (Splitter[1] == "bi")
                                            {
                                                MyChar.Teleport(1015, 723, 573);
                                            }
                                            if (Splitter[1] == "pc")
                                            {
                                                MyChar.Teleport(1011, 190, 271);
                                            }
                                            if (Splitter[1] == "ma")
                                            {
                                                MyChar.Teleport(1036, 200, 200);
                                            }
                                            if (Splitter[1] == "arena")
                                            {
                                                MyChar.Teleport(1005, 52, 69);
                                            }
                                            if (Splitter[1] == "lotto")
                                            {
                                                MyChar.Teleport(700, 52, 69);
                                            }
                                            if (Splitter[1] == "birth")
                                            {
                                                MyChar.Teleport(1010, 60, 110);
                                            }
                                        }
idk thats just my opinion do what you want though

something might be wrong i jsut quickly typed it up
Arcotemple:) is offline  
Reply




All times are GMT +1. The time now is 23:00.


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.