Register for your free account! | Forgot your password?

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

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

Advertisement



[PROBLEM]Weather ! Look on PIC

Discussion on [PROBLEM]Weather ! Look on PIC within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
Sp!!ke's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 380
Received Thanks: 58
[PROBLEM]Weather ! Look on PIC






How I can Fix THAT ??
Sp!!ke is offline  
Old 06/22/2010, 00:49   #2
 
elite*gold: 0
Join Date: May 2006
Posts: 297
Received Thanks: 58
this is probably the weather installed in youre client.

Try a diffrent client.
ore try and find the weather packages..

if not there is a post released about Weather.
(releases> Weather)
thought from Yuki, not sure tho..

find and learn
pintser is offline  
Thanks
1 User
Old 06/22/2010, 00:52   #3
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Actually Korv released it for Tanel's 5165, and I think alex released it for his source.
Arcо is offline  
Thanks
1 User
Old 06/22/2010, 02:36   #4
 
Sp!!ke's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 380
Received Thanks: 58
problem is next Snow working perfect but when change new wheater type I got that problem ! arco you can make a command to start all weather type Ex

/weather snow or /weather rain

@pinster I will try a new client
Sp!!ke is offline  
Old 06/22/2010, 02:39   #5
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Just take a look at this
Arcо is offline  
Thanks
1 User
Old 06/22/2010, 03:20   #6
 
Sp!!ke's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 380
Received Thanks: 58
Code:
                  
   if (Cmd[0] == "/weather")
                        {
                            byte Weather = 0x1;
                            if (Cmd[1] == "n")
                                Weather = 0x1;
                            if (Cmd[1] == "rain")
                                Weather = 0x2;
                            if (Cmd[1] == "snow")
                                Weather = 0x3;
                            if (Cmd[1] == "rw")
                                Weather = 0x4;
                            if (Cmd[1] == "al")
                                Weather = 0x5;
                            if (Cmd[1] == "cb")
                                Weather = 0x7;
                            if (Cmd[1] == "cbw")
                                Weather = 0x8;
                            if (Cmd[1] == "bc")
                                Weather = 0x9;
                            if (Cmd[1] == "atoms")
                                Weather = 0xa;
                            // COPacket Packets.Weather(byte Type, uint Intensity, uint Direction, uint Appearance)
                            GC.AddSend(Packets.Weather(Weather, uint.Parse(Cmd[2]), uint.Parse(Cmd[3]), uint.Parse(Cmd[4])));
                        }
                    }
I got error at
Quote:
GC.AddSend(Packets.Weather(Weather, uint.Parse(Cmd[2]), uint.Parse(Cmd[3]), uint.Parse(Cmd[4])));
Sp!!ke is offline  
Old 06/22/2010, 03:26   #7
 
elite*gold: 0
Join Date: Oct 2009
Posts: 128
Received Thanks: 50
Quote:
Originally Posted by Tweety.4Girls View Post
I got error at
Okay, do you have a question? How about posting the details of that error.
s.bat is offline  
Thanks
1 User
Old 06/22/2010, 03:31   #8
 
Sp!!ke's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 380
Received Thanks: 58
how I can fix that command to perfectly working? to start weather system from command
Sp!!ke is offline  
Old 06/22/2010, 03:37   #9
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
....
Well I guess
if (Cmd[0] == "/weather")
Weather(Features.WeatherType Cmd[1], Cmd[2], Cmd[3], Cmd[4])

Idk try that.
/weather snow 100 100 100 100
Arcо is offline  
Thanks
1 User
Old 06/22/2010, 04:38   #10
 
Sp!!ke's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 380
Received Thanks: 58
not working I got more errors...you can try make a command for me? I will w8 you reply here ! and thanks cause you try to help me
Sp!!ke is offline  
Old 06/22/2010, 05:41   #11
 
elite*gold: 0
Join Date: Oct 2009
Posts: 128
Received Thanks: 50
I asked you to post what errors you've received. That information will certainly help to understand what's wrong and where you need help.
s.bat is offline  
Old 06/22/2010, 05:57   #12
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by Tweety.4Girls View Post
not working I got more errors...you can try make a command for me? I will w8 you reply here ! and thanks cause you try to help me
I made you a command, I can't help anymore if you don't tell me what the problem is.
Arcо is offline  
Thanks
1 User
Old 06/22/2010, 06:08   #13
 
elite*gold: 0
Join Date: May 2010
Posts: 18
Received Thanks: 1
Quote:
Originally Posted by Tweety.4Girls View Post
Code:
                  
   if (Cmd[0] == "/weather")
                        {
                            byte Weather = 0x1;
                            if (Cmd[1] == "n")
                                Weather = 0x1;
                            if (Cmd[1] == "rain")
                                Weather = 0x2;
                            if (Cmd[1] == "snow")
                                Weather = 0x3;
                            if (Cmd[1] == "rw")
                                Weather = 0x4;
                            if (Cmd[1] == "al")
                                Weather = 0x5;
                            if (Cmd[1] == "cb")
                                Weather = 0x7;
                            if (Cmd[1] == "cbw")
                                Weather = 0x8;
                            if (Cmd[1] == "bc")
                                Weather = 0x9;
                            if (Cmd[1] == "atoms")
                                Weather = 0xa;
                            // COPacket Packets.Weather(byte Type, uint Intensity, uint Direction, uint Appearance)
                            GC.AddSend(Packets.Weather(Weather, uint.Parse(Cmd[2]), uint.Parse(Cmd[3]), uint.Parse(Cmd[4])));
                        }
                    }
I got error at
Wow. That looks familiar. That's my code =o
... or looks like my code It's been modified... wrong.

It should be like this:
/weather [Type] [Direction] [Intensity]

And in that picture, if you're getting yellow lines then it's the client.
Good luck.
CollegeKid is offline  
Old 06/22/2010, 06:11   #14
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
You're non-working code.

Anyways,
if (Cmd[0] == "/weather")
GC.AddSend(Packets.Weather(Cmd[1], uint.Parse(Cmd[2]), uint.Parse(Cmd[3]), uint.Parse(Cmd[4])));

That MIGHT work.
Unsure, last I remember I gave that guy ^ my working command.
Arcо is offline  
Old 06/22/2010, 06:22   #15
 
elite*gold: 0
Join Date: May 2010
Posts: 18
Received Thanks: 1
Quote:
Originally Posted by .Arco View Post
You're non-working code.

Anyways,
if (Cmd[0] == "/weather")
GC.AddSend(Packets.Weather(Cmd[1], uint.Parse(Cmd[2]), uint.Parse(Cmd[3]), uint.Parse(Cmd[4])));

That MIGHT work.
Unsure, last I remember I gave that guy ^ my working command.
Yah. "Your" working code.
Anyways... Good luck to the OP! =]
CollegeKid is offline  
Reply


Similar Threads Similar Threads
What's the command for weather on....
02/14/2010 - CO2 Private Server - 0 Replies
What's the command to change the weather on tq binaries 5065?
weather[Help]
12/23/2009 - CO2 Private Server - 2 Replies
wondering if anyone can point me in the right direction to getting weather working :P
[help]weather packet
11/25/2009 - CO2 Private Server - 2 Replies
staff, I need the packet of the weather, someone has?
Weather hack...
01/07/2007 - Conquer Online 2 - 11 Replies
ok, im trying to make a weather hack, and i have figured out ALMOST EXACTLY what to do to get it workin. But ive run into a major problem. There is a hidden file that seems impossible to get into, and that is the file i need to get to. I need to get to the folder Conquer2.0\data\weather IF ANYONE KNOWS HOW TO GET INTO THE FILE PLZ POST OR PM ME.



All times are GMT +2. The time now is 04:49.


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.