You last visited: Today at 01:04
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.
06/21/2010, 22:40
#1
elite*gold: 0
Join Date: Nov 2009
Posts: 380
Received Thanks: 58
[PROBLEM]Weather ! Look on PIC
How I can Fix THAT ??
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
06/22/2010, 00:52
#3
elite*gold: 0
Join Date: Oct 2009
Posts: 8,784
Received Thanks: 5,304
Actually Korv released it for Tanel's 5165, and I think alex released it for his source.
06/22/2010, 02:36
#4
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
06/22/2010, 02:39
#5
elite*gold: 0
Join Date: Oct 2009
Posts: 8,784
Received Thanks: 5,304
Just take a look at this
06/22/2010, 03:20
#6
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])));
06/22/2010, 03:26
#7
elite*gold: 0
Join Date: Oct 2009
Posts: 128
Received Thanks: 50
Quote:
Originally Posted by
Tweety.4Girls
I got error at
Okay, do you have a question? How about posting the details of that error.
06/22/2010, 03:31
#8
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
06/22/2010, 03:37
#9
elite*gold: 0
Join Date: Oct 2009
Posts: 8,784
Received Thanks: 5,304
....
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
06/22/2010, 04:38
#10
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
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.
06/22/2010, 05:57
#12
elite*gold: 0
Join Date: Oct 2009
Posts: 8,784
Received Thanks: 5,304
Quote:
Originally Posted by
Tweety.4Girls
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.
06/22/2010, 06:08
#13
elite*gold: 0
Join Date: May 2010
Posts: 18
Received Thanks: 1
Quote:
Originally Posted by
Tweety.4Girls
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.
06/22/2010, 06:11
#14
elite*gold: 0
Join Date: Oct 2009
Posts: 8,784
Received Thanks: 5,304
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.
06/22/2010, 06:22
#15
elite*gold: 0
Join Date: May 2010
Posts: 18
Received Thanks: 1
Quote:
Originally Posted by
.Arco
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! =]
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 01:06 .