PDA

View Full Version : Pokemon Leaf Green Weather Controller (and new trees)


monkey1987
December 24th, 2007, 02:51 PM
Hi Everyone :)

A time ago i have made a Weather Controller in Pokemon Leaf Green
and i also made a new kind of tree (just to fresh up the hometown)

And today i thought.. Let put it on PC to know what other people think about it :)

So here are some screens of my Weather Controller and my trees:
http://members.home.nl/stefanvermunt/DS/Pokemon1.png http://members.home.nl/stefanvermunt/DS/Pokemon2.png
http://members.home.nl/stefanvermunt/DS/Pokemon3.png http://members.home.nl/stefanvermunt/DS/Pokemon4.png

And here is a video to see how my weather controller works:
http://members.home.nl/stefanvermunt/DS/Pokemon.wmv

Let me know what you think about it please :)

Greets Stefan

Alistair
December 24th, 2007, 03:21 PM
No comment on the trees, but the weather control machine seems like a useful idea.

Antwhan
December 24th, 2007, 03:40 PM
the trees are....interesting...to say the least....

the weather controller seems like a novel idea, but maybe clean up the script so it doesnt cause blackness when u fly...

DiamondDust
December 24th, 2007, 03:43 PM
Trees look alright, but only look good for special places or events... but the weather controller sounds good, very interesting.

du1387
December 24th, 2007, 09:53 PM
can u use it to make the weather random in areas?

monkey1987
December 25th, 2007, 10:27 AM
No comment on the trees, but the weather control machine seems like a useful idea.

the trees are....interesting...to say the least....

the weather controller seems like a novel idea, but maybe clean up the script so it doesnt cause blackness when u fly...

Trees look alright, but only look good for special places or events... but the weather controller sounds good, very interesting.

can u use it to make the weather random in areas?

Thanks everyone for the compliments :)
I know the tree is a little bit funny :P

And about the weather controller..
I am busy with the script to use it to make lots of weatherconditions.
But at this moment i have to put this "weather controller" in every town
to use it du1387.

thethethethe
December 25th, 2007, 10:59 AM
can u use it to make the weather random in areas?

To make the weather random is a little harder than just writing a reasonably simple script, changing the weather to rain, no offence intended.

And that script that you're creating right now, can't be too difficult either. Just take this. It only took like ten minutes to write. All you'd have to do is text edit the multi box.

#org $start
message $1
boxset 5
compare 0x800D 0x1
if 1 goto $change
goto $no

#org $change
message $2
boxset 4
multi 0x0 0x0 0x11 0x0
copyvar 0x8008 0x800D
compare 0x8008 0x0
if 1 goto $thunder
compare 0x8008 0x01
if 1 goto $normal
compare 0x8008 0x02
if 1 goto $snowflakes
compare 0x8008 0x03
if 1 goto $rain
compare 0x8008 0x04
if 1 goto $snow
compare 0x8008 0x05
if 1 goto $done
end

#org $thunder
#raw 0x68
#raw 0xA4 0x05 0x00
#raw 0xA5
message $4
boxset 6
release
end

#org $normal
#raw 0x68
#raw 0xA4 0x02 0x00
#raw 0xA5
message $4
boxset 6
release
end

#org $snowflakes
#raw 0x68
#raw 0xA4 0x04 0x00
#raw 0xA5
message $4
boxset 6
release
end

#org $rain
#raw 0x68
#raw 0xA4 0x03 0x00
#raw 0xA5
message $4
boxset 6
release
end

#org $snow
#raw 0x68
#raw 0xA4 0x07 0x00
#raw 0xA5
message $4
boxset 6
release
end


#org $done
#raw 0x68
release
end

#org $no
message $3
boxset 6
release
end

#org $1
$1 1 =Would you like to change\nthe weather?

#org $2
$2 1 =What would you like to change\nthe weather to?

#org $3
$3 1 =Come Again.

#org $4
$4 1 =Weather Changed.

EDIT: Sorry about that. I was just feeling a little angry at something. (I know angry on Christmas). I guess I was a little harsh. Sorry.

Saken
December 25th, 2007, 01:19 PM
Hmm, the only thing i have found interesting about this thread are the trees, and the post of thethethethe, mainly because i never knew how to do weather scripts cause they never worked for me..sigh..
Anyway, good luck with everything monkey1987, and thank you thethethethe XD

Giovanni

+Sneasel™
December 25th, 2007, 04:35 PM
You know, i actually like his trees.
The weather generator is also cool, but i don't see what it would do in a hack, but if it had more than one weather condition it couold make, then it owuld be alot cooler.

monkey1987
December 25th, 2007, 04:51 PM
To make the weather random is a little harder than just writing a reasonably simple script, changing the weather to rain, no offence intended.

And that script that you're creating right now, can't be too difficult either. Just take this. It only took like ten minutes to write. All you'd have to do is text edit the multi box.

#org $start
message $1
boxset 5
compare 0x800D 0x1
if 1 goto $change
goto $no

#org $change
message $2
boxset 4
multi 0x0 0x0 0x11 0x0
copyvar 0x8008 0x800D
compare 0x8008 0x0
if 1 goto $thunder
compare 0x8008 0x01
if 1 goto $normal
compare 0x8008 0x02
if 1 goto $snowflakes
compare 0x8008 0x03
if 1 goto $rain
compare 0x8008 0x04
if 1 goto $snow
compare 0x8008 0x05
if 1 goto $done
end

#org $thunder
#raw 0x68
#raw 0xA4 0x05 0x00
#raw 0xA5
message $4
boxset 6
release
end

#org $normal
#raw 0x68
#raw 0xA4 0x02 0x00
#raw 0xA5
message $4
boxset 6
release
end

#org $snowflakes
#raw 0x68
#raw 0xA4 0x04 0x00
#raw 0xA5
message $4
boxset 6
release
end

#org $rain
#raw 0x68
#raw 0xA4 0x03 0x00
#raw 0xA5
message $4
boxset 6
release
end

#org $snow
#raw 0x68
#raw 0xA4 0x07 0x00
#raw 0xA5
message $4
boxset 6
release
end


#org $done
#raw 0x68
release
end

#org $no
message $3
boxset 6
release
end

#org $1
$1 1 =Would you like to change\nthe weather?

#org $2
$2 1 =What would you like to change\nthe weather to?

#org $3
$3 1 =Come Again.

#org $4
$4 1 =Weather Changed.

EDIT: Sorry about that. I was just feeling a little angry at something. (I know angry on Christmas). I guess I was a little harsh. Sorry.

Hey, no sorry's!
Thanks for the script!
It has been a long time since i made this script
and now my script has a very good start! Thanks!

Hmm, the only thing i have found interesting about this thread are the trees, and the post of thethethethe, mainly because i never knew how to do weather scripts cause they never worked for me..sigh..
Anyway, good luck with everything monkey1987, and thank you thethethethe XD

Giovanni
I am glad you like my tree
For anyone who want to use it:
http://members.home.nl/stefanvermunt/DS/trees.bmp
Here it is! Please give me credits when you use it.

You know, i actually like his trees.
The weather generator is also cool, but i don't see what it would do in a hack, but if it had more than one weather condition it couold make, then it owuld be alot cooler.

Check your pm ;)
And about the weather controller, i AM going to add more weather conditions
When i am finished i will post it here.

Stefan

Apple Inc.
December 25th, 2007, 05:34 PM
It would be cool if that was in every route and town because if you have a Water Pokemon you could activate rain to make it stronger in battle

+Sneasel™
December 25th, 2007, 05:40 PM
It would be cool if that was in every route and town because if you have a Water Pokemon you could activate rain to make it stronger in battle

yeah, i guess it could give advantages to your pokmeon on certain routes.

cooley
December 25th, 2007, 06:10 PM
500th Post!


Idea: You can Block paths, that require a certain pokemon to change the weather, but it can be kind of difficult, even though it doesn't seem that hard to write. You just need to know Select pokemon commands lol

thethethethe
December 26th, 2007, 02:18 AM
500th Post!


Idea: You can Block paths, that require a certain pokemon to change the weather, but it can be kind of difficult, even though it doesn't seem that hard to write. You just need to know Select pokemon commands lol
You could probably make it a rock and use castform to alter the weather. Which wouldn't be too difficult to implement, (for some people).