The PokéCommunity Forums  

Go Back   The PokéCommunity Forums > Fan Games > Binary ROM Hacking
Reload this Page [Archive] Simple Questions

Notices
For all updates, view the main page.

Binary ROM Hacking Need a helping hand or just want to talk about binary ROM hacks? Get comments and answers to any ROM Hacking-related problems, questions or thoughts you have here.

Ad Content
Closed Thread
 
Thread Tools
  #151   Link to this post, but load the entire thread.  
Old February 17th, 2006 (4:14 AM).
Pokepearl Pokepearl is offline
 
Join Date: Jun 2005
Gender:
Posts: 63
Whats the nuber in UNLZGBA, (FIRERED) For the tiles from tree's ?
  #152   Link to this post, but load the entire thread.  
Old February 17th, 2006 (4:23 AM).
Shaneypoo17's Avatar
Shaneypoo17 Shaneypoo17 is offline
Elite Hacker
 
Join Date: Nov 2005
Gender:
Posts: 358
pokepearl: its 1990... well thats the main tileset which includes trees O.o
__________________
MY webby
  #153   Link to this post, but load the entire thread.  
Old February 17th, 2006 (5:21 AM).
Pokepearl Pokepearl is offline
 
Join Date: Jun 2005
Gender:
Posts: 63
I dont se a tileset with trees
  #154   Link to this post, but load the entire thread.  
Old February 17th, 2006 (6:40 AM).
Pazuzu's Avatar
Pazuzu Pazuzu is offline
Flushing Meadows
 
Join Date: Sep 2004
Location: Room 1202
Nature: Bold
Posts: 5,448
Quote:
Originally Posted by BlainesApprentice
Alright I've tryed and tryed and i can't get it right. Can someone give me a script where a person says one thing and then when you get a certain item says something else? If you know please tell me.
Code:
#autobank on

#org 0x800000
msgbox 0x800200
callstd 0x4
'check item script
#raw 47
#raw D 'item
#raw 0  'item
#raw 1  'quantity
#raw 0  'quantity
'attention: items have 2 bytes, so does the quantity
compare LASTRESULT 0x0
if 0x1 jump 0x800150
msgbox 0x800300
callstd 0x6
end

#org 0x800150
msgbox 0x800400
callstd 0x6
release
end

#org 0x800200
= Now let's see if you have\nthat Item...

#org 0x800300
= Yup, you have the Item.

#org 0x800400
= Nope, you don't have the Item.
Quote:
Originally Posted by darklugia1
Oh yeah, one more question (I always think of new ones, for some reason)
How do you delete people/warps/signs/etc. in AdvanceMap and/or EliteMap?
Just decrease their number in AdvanceMap or EliteMap.

Quote:
Originally Posted by Masqueradeâ„¢ Inc.
I am using the tile for the top of a cliff, you know, where the cliff ends and you can see the grass behind it. Anyway, how can I make it so the hero can walk on this tile, but not cross directly up to the grass from here?
You can do that easily with AdvanceMap.
Instead of the normal "C" movemeant block, you change it to "10" for the cliff, and for the blocks that let you go on that cliff you change it to "0".
That should do the trick.

Quote:
Originally Posted by Shaneypoo17
ok... i got a ques...
1. whats the command to give an item (in scripted)
2. i inserted this script

and when i played the game and talked to him it worked perfectly except it activated the safari zone O.o... and i could only get out of it when i pressed retire which sent me to the pokedex O.o... i rly need help.
1. giveitem 0x(ITEM) 0x(QUANTITY)
2. you set an already used flag, in your case the one for the Safari-Zone.
Change the used flags in your script.

Quote:
Originally Posted by RicePigeonKKM
Well, sorta. I used to hack in the past but that was long ago. Just wondeing how to go about scripts, as I hear of this program called Rubikon. Where do I get this?
It's included in the EliteMap bundle.
See the Hacking Tools Reference in the Tools Showcase.

Quote:
Originally Posted by misticman
they aren't really gone they are still there but if i play the game all events are gone.:(
The post I linked you to is the way to fix your problem!

Quote:
Originally Posted by Li-Kero
I have a question, how can i easily change the ruby title from Red to Black?
Don't say hex, i dunno anything of it.
Hex. That's the only way.
But if you want all colors to be black and white, you can export the picture with the black and white pallete and import it again with overwriting the existing pallete with the black and white one. (CHeck "Export Pallete" in the dialog that pops up.)

Quote:
Originally Posted by LINK1438
I've heard ots a great palletlette viewer and Im in need of serious Poke ripping:)
Whered meh thread go? Ohh.......
unLZ-GBA is included in the EliteMap bundle.
See the Hacking Tools Reference in the Tools Showcase.

Quote:
Originally Posted by RicePigeonKKM
Okay so I was hacking sapphire the other day using rubikon to test out a givepokemon command.

When trying to compile this, rkc gave me an RTE. Besides that, I have a feeling I messed the code up somehow.
Yes, you made some mistakes in the code.
Try this Script (A modified version of ZEAR's Suicune battle script):
Code:
#autobank on
#org 0x6B8080
checkflag 0x1FF
if 1 0x6b8190
message 0x6b8200
boxset BOXSET_YESNO
compare LASTRESULT 0x0
if 1 0x6b8180
message 0x6b8300
boxset 0x2
givepokemon 0x9B 5 0x0
setflag 0x1FF
end

#org 0x6B8180
message 0x6B8270
boxset 0x6
end

#org 0x6B8190
message 0x6B8240
boxset 0x6
release
end

#org 0x6B8200
= Do you want to take CHIKORITA?
#org 0x6B8240
= How's my CHIKORITA doing?!
#org 0x6B8270
= Don't want it?
#org 0x6B8300
= Here you go!
Quote:
Originally Posted by MalamuteKid
Is there like an easy way to edit the sprites for pokemon?
unLZ-GBA. Export the pic, edit it and import it back in.
For the small animated pics in the Party view, IconED by dark01.
You can get both in the Tools Showcase.
__________________
This signature has been disabled.
Height well exceeds 350px.
Please review and fix the issues by reading the signature rules.

You must edit it to meet the limits set by the rules before you may remove the [sig-reason] code from your signature. Removing this tag will re-enable it.

Do not remove the tag until you fix the issues in your signature. You may be infracted for removing this tag if you do not fix the specified issues. Do not use this tag for decoration purposes.
  #155   Link to this post, but load the entire thread.  
Old February 17th, 2006 (7:20 AM).
Dennis's Avatar
Dennis Dennis is offline
 
Join Date: Feb 2006
Gender:
Nature: Adamant
Posts: 3
Is there a simple text editor for FR/LF ?
The most of them dont work, so

Thanks if you know one,
  #156   Link to this post, but load the entire thread.  
Old February 17th, 2006 (7:28 AM).
Pazuzu's Avatar
Pazuzu Pazuzu is offline
Flushing Meadows
 
Join Date: Sep 2004
Location: Room 1202
Nature: Bold
Posts: 5,448
Quote:
Originally Posted by Dennis
Is there a simple text editor for FR/LF ?
The most of them dont work, so

Thanks if you know one,
Hex-Editor + Table file.
It's the best you can get.

Or if you want game specific program, Advance-Text.

You can get both in the Tools Showcase. (See the Hacking Tools Reference for links to places where to get other tools from, including a Hex-Editor.)
__________________
This signature has been disabled.
Height well exceeds 350px.
Please review and fix the issues by reading the signature rules.

You must edit it to meet the limits set by the rules before you may remove the [sig-reason] code from your signature. Removing this tag will re-enable it.

Do not remove the tag until you fix the issues in your signature. You may be infracted for removing this tag if you do not fix the specified issues. Do not use this tag for decoration purposes.
  #157   Link to this post, but load the entire thread.  
Old February 17th, 2006 (11:30 AM).
misticman misticman is offline
Punk with brains
 
Join Date: Feb 2006
Location: belgium
Gender:
Nature: Gentle
Posts: 15
does anyone have the offsets for all maps in sapphire (i mean like 0.9 is littleroot town).
__________________

Name: draco
Adopt one yourself! @Pokémon Orphanage
  #158   Link to this post, but load the entire thread.  
Old February 17th, 2006 (1:39 PM).
darklugia1's Avatar
darklugia1 darklugia1 is offline
Pokémon Mastermind
 
Join Date: Feb 2006
Location: Currently online...
Gender:
Nature: Calm
Posts: 53
Quote:
Originally Posted by misticman
does anyone have the offsets for all maps in sapphire (i mean like 0.9 is littleroot town).
Just use AdvanceMap, all the headers are displayed.

And a problem of my own, Scizz, a while back, you said that to edit the truck events to look in the scripts in the level. Thing is, if you look at the script for the person who's the truck (in Emerald), the script is "00000" in AdvanceMap and "FFFFF" in EliteMap, both of which contain nothing. Does anyone know where this script is?
  #159   Link to this post, but load the entire thread.  
Old February 17th, 2006 (1:50 PM).
AquaLeaderMatt's Avatar
AquaLeaderMatt AquaLeaderMatt is offline
Ood.
 
Join Date: Sep 2005
Location: UK
Age: 31
Posts: 231
Hi, does anyone know any decent Pokéemon Crystal hacking tools? (mapping mostly) if anybody knows any can they give me a link or tell me where to get it? thanks
__________________
"There was me, that is Alex, and my three droogs, that is Pete, Georgie Boy and Dim. And we sat in the Korova Milk Bar trying to make up our rassoodocks what to do with the evening. The Korova Milk Bar sold milk plus, milk plus vellocet or synthemesc or drencrom which is what we were drinking. This would sharpen you up and make you ready for a bit of the old Ultra-Violence."
  #160   Link to this post, but load the entire thread.  
Old February 17th, 2006 (2:17 PM).
Pazuzu's Avatar
Pazuzu Pazuzu is offline
Flushing Meadows
 
Join Date: Sep 2004
Location: Room 1202
Nature: Bold
Posts: 5,448
Quote:
Originally Posted by darklugia1
Just use AdvanceMap, all the headers are displayed.

And a problem of my own, Scizz, a while back, you said that to edit the truck events to look in the scripts in the level. Thing is, if you look at the script for the person who's the truck (in Emerald), the script is "00000" in AdvanceMap and "FFFFF" in EliteMap, both of which contain nothing. Does anyone know where this script is?
I said take a look at the "Level Scripts".
Those are scripts which are executed when you enter/leave/etc a Map.
One level script can be viewed in ScriptED when you click the "View level Script" button in EliteMap's toolbar.
However there can be more than one.
To view the others, you would have to get their offsets with a Hex-Editor by following a bunch of Headers and pointer tables.

Quote:
Originally Posted by hitme2k5
Hi, does anyone know any decent Pokéemon Crystal hacking tools? (mapping mostly) if anybody knows any can they give me a link or tell me where to get it? thanks
See the Hacking Tools Reference in the Tools Showcase.
__________________
This signature has been disabled.
Height well exceeds 350px.
Please review and fix the issues by reading the signature rules.

You must edit it to meet the limits set by the rules before you may remove the [sig-reason] code from your signature. Removing this tag will re-enable it.

Do not remove the tag until you fix the issues in your signature. You may be infracted for removing this tag if you do not fix the specified issues. Do not use this tag for decoration purposes.
  #161   Link to this post, but load the entire thread.  
Old February 17th, 2006 (4:17 PM).
Jonny Buuz's Avatar
Jonny Buuz Jonny Buuz is offline
La di da di do di da di dum...
 
Join Date: Oct 2005
Location: Behind you.
Age: 32
Gender: Male
Nature: Modest
Posts: 56
Okay, I'll take a chance at this, seeing's I've had this problem for as long as I've had PET, and it's never been resolved.

When I start up PET, everything runs smoothly, save one thing; the Pokemon's attacks do not show up. The four boxes are blank. On some of them, the boxes have strange attacks, like Roxanne's Nosepass with Silver Wind/Fire Blast/Growl/Curse or something to that effect.

I've redownloaded it multiple times, and each time I have the same problem. All I want to know is if I can still modify trainers if the attacks are incorrect to begin with (or nonexistant); I just don't want to mess with editing the trainers without knowing the attacks and things will end up what I want them to be.

Thanks.

P.S. It is a clean ROM; nothing's been hacked yet.

P.P.S. Is there a tutorial for editing trainers in a hex editor on this site? I used to do it to Red - Crystal all the time, but when I tried to do it in RS, it didn't work...

-searches-
__________________
</signature>
  #162   Link to this post, but load the entire thread.  
Old February 17th, 2006 (4:20 PM).
Osceola's Avatar
Osceola Osceola is offline
Silent Warrior
 
Join Date: Sep 2005
Location: India / New York
Gender:
Nature: Bold
Posts: 310
when i started my dimensia,essence of the elements hack, when i try to evolve a PKMN, the screen turns bluish green and blanks out.

Does anyone know how to fix this?
Scizz?
__________________

Black Cat...XIII...An Assassin...And a Friend...
  #163   Link to this post, but load the entire thread.  
Old February 17th, 2006 (9:21 PM).
DarknessMonkey DarknessMonkey is offline
Avatars are for squares..
 
Join Date: Jul 2004
Location: ...
Age: 30
Gender:
Nature: Quiet
Posts: 1,418
I was wondering if there was an IPS file reader or some special tool that I need to play the demos/complete versions of hacks from the hacks showcase.

I have a regular emulator, but that isn't working.
__________________

Been on this community for years and just finally realized it. I'M BACK!

Going to start making my Pokémon game for RMXP, need help with tilesets, spriting, and scripting. PM me for details!
  #164   Link to this post, but load the entire thread.  
Old February 17th, 2006 (10:06 PM).
Locke Yggdrasill's Avatar
Locke Yggdrasill Locke Yggdrasill is offline
You have not the right.
 
Join Date: Jun 2005
Location: Where Lightning splits the Sea
Age: 31
Gender:
Nature: Calm
Posts: 196
You need an IPS patcher. I suggest LIPS, which comes with Elitemap.
__________________
  #165   Link to this post, but load the entire thread.  
Old February 18th, 2006 (3:25 AM).
Ice_Dragon's Avatar
Ice_Dragon Ice_Dragon is offline
 
Join Date: Oct 2005
Gender:
Nature: Adamant
Posts: 12
Ok. I am trying to get a new Man. I have gone into A-Map and made a new Event, and entered this info:


However when I try and open it in E-Map to edit some maps, it crashes. The script of set is: $7B2B00 and the script is:
Code:
'-----------------------
#org 0x7B2B00
checkflag 0x10A
if 0 0x7B0A54
message 0x7B2C00
boxset 0x2
end

#org 0x7B0A54
setflag 0x10A
setflag 0x800
checkgender
compare LASTRESULT 1
if 0 0x7B1D54
if 1 0x7B0D54
end

#org 0x7B1D54
message 0x7B1A54
boxset 0x02
givepokemon 0x9B 0x05 0x00
end

#org 0x7B0D54
message 0x7B1B54
boxset 0x02
givepokemon 0x98 0x05 0x00
end

#org 0x7B1A54
= Hello sir, here's a Cyndaquil!

#org 0x7B1B54
= Hello miss, here's a Chikorita!

#org 0x7B2C00
= How's that Pok?mon doing?
Also when I play the game, where the events are supposed to eb there is noting and Oak doesn't stop you. You can't walk where the events were though. Any help would be great!!!
__________________
"Roses are #FF0000
Violets are #0000FF
All my base
Are belong to you."
~Unknown

  #166   Link to this post, but load the entire thread.  
Old February 18th, 2006 (3:37 AM).
mxkpkmnextu??'s Avatar
mxkpkmnextu?? mxkpkmnextu?? is offline
Ser Artificial
 
Join Date: Jan 2006
Location: Porto, Portugal
Age: 33
Gender:
Nature: Modest
Posts: 85
Hail
Well, another simple question that goes like this:
When I try to change the number of people of in a map everything seems to be fine, but when I go check in the rom the people disappear and I can't also enter in the houses =S! Any suggestions??
[[ ]]
Stay Sick \m/
  #167   Link to this post, but load the entire thread.  
Old February 18th, 2006 (4:18 AM).
Enter-Shikary's Avatar
Enter-Shikary Enter-Shikary is offline
I'm Back
 
Join Date: Dec 2005
Nature: Adamant
Posts: 97
whene i complie my script whit rom and change the script offset number in a-map
my people don´t say anything
__________________
Pokemon Prince Of The Sea returns

Better then never
Now know as Pokemon AquaMarin
  #168   Link to this post, but load the entire thread.  
Old February 18th, 2006 (11:06 AM).
Shaneypoo17's Avatar
Shaneypoo17 Shaneypoo17 is offline
Elite Hacker
 
Join Date: Nov 2005
Gender:
Posts: 358
help me... i need 2 edit the pkmn for brock and misty... yet i cant find their pkmn in hex... can sum1 giv me the offsets 4 fr?
__________________
MY webby
  #169   Link to this post, but load the entire thread.  
Old February 18th, 2006 (4:12 PM).
Pazuzu's Avatar
Pazuzu Pazuzu is offline
Flushing Meadows
 
Join Date: Sep 2004
Location: Room 1202
Nature: Bold
Posts: 5,448
Quote:
Originally Posted by Jonny Buuz
Okay, I'll take a chance at this, seeing's I've had this problem for as long as I've had PET, and it's never been resolved.

When I start up PET, everything runs smoothly, save one thing; the Pokemon's attacks do not show up. The four boxes are blank. On some of them, the boxes have strange attacks, like Roxanne's Nosepass with Silver Wind/Fire Blast/Growl/Curse or something to that effect.

I've redownloaded it multiple times, and each time I have the same problem. All I want to know is if I can still modify trainers if the attacks are incorrect to begin with (or nonexistant); I just don't want to mess with editing the trainers without knowing the attacks and things will end up what I want them to be.

Thanks.

P.S. It is a clean ROM; nothing's been hacked yet.

P.P.S. Is there a tutorial for editing trainers in a hex editor on this site? I used to do it to Red - Crystal all the time, but when I tried to do it in RS, it didn't work...

-searches-
No, there isn't a tutorial here, yet.

The reason for no attacks (or disabled selection) is that only a few trainers have attack data for their Pokémon. (Mostly the important ones like May and Brendon.)
The others use default attacks of the Pokémon.

There seems to be some misinterpreting of the data/offsets in PET, which make the attacks diplay incorrect.
Theoretically if you don't change the attacks, nothing should get messed up.
However there's still a possibility, so you should try it out.
But keep a bacup of your ROM before editing.

Quote:
Originally Posted by Legendary_Reploid_Zero
when i started my dimensia,essence of the elements hack, when i try to evolve a PKMN, the screen turns bluish green and blanks out.

Does anyone know how to fix this?
Scizz?
Why always me? XD

Well, seems like you corrupted the routine by some editing you did.
Go back to your backup and redo the changes and see if this still happens.

Quote:
Originally Posted by Ice_Dragon
Ok. I am trying to get a new Man. I have gone into A-Map and made a new Event, and entered this info:

However when I try and open it in E-Map to edit some maps, it crashes. The script of set is: $7B2B00 and the script is:
Also when I play the game, where the events are supposed to eb there is noting and Oak doesn't stop you. You can't walk where the events were though. Any help would be great!!!
I see nothing wrong with the data you entered for your event or your script.

But as you're telling your trigger events of Prof Oak disappeared, it seems like your have corrupted your event data.

Try what is described here.

Quote:
Originally Posted by mxkpkmnextu??
Hail
Well, another simple question that goes like this:
When I try to change the number of people of in a map everything seems to be fine, but when I go check in the rom the people disappear and I can't also enter in the houses =S! Any suggestions??
[[ ]]
Stay Sick \m/
Same for you. Try what is described here.

Quote:
Originally Posted by killspear
whene i complie my script whit rom and change the script offset number in a-map
my people don�t say anything
Check the offset.
Enter the offset you compiled it to in the script offset box. Don't forget the leading "$".
__________________
This signature has been disabled.
Height well exceeds 350px.
Please review and fix the issues by reading the signature rules.

You must edit it to meet the limits set by the rules before you may remove the [sig-reason] code from your signature. Removing this tag will re-enable it.

Do not remove the tag until you fix the issues in your signature. You may be infracted for removing this tag if you do not fix the specified issues. Do not use this tag for decoration purposes.
  #170   Link to this post, but load the entire thread.  
Old February 18th, 2006 (9:59 PM).
Richard5635's Avatar
Richard5635 Richard5635 is offline
The Dragon Trainer
 
Join Date: Oct 2005
Location: -
Gender:
Nature: Calm
Posts: 2
I wanted to download pokemon crystal hacking tools at pokedrome.com, but i can't download the file. The download link for the file is at avhacksforum.5gigs.com. Please help me upload the file......:)
  #171   Link to this post, but load the entire thread.  
Old February 19th, 2006 (7:00 AM).
topiser
Guest
 
Posts: n/a
How do you play an ips?I have everything I need but dont know how to play the the ips.Please help!
  #172   Link to this post, but load the entire thread.  
Old February 19th, 2006 (8:32 AM).
Pazuzu's Avatar
Pazuzu Pazuzu is offline
Flushing Meadows
 
Join Date: Sep 2004
Location: Room 1202
Nature: Bold
Posts: 5,448
Quote:
Originally Posted by Richard5635
I wanted to download pokemon crystal hacking tools at pokedrome.com, but i can't download the file. The download link for the file is at avhacksforum.5gigs.com. Please help me upload the file......:)
There are a couple of other sites linked in the Hacking Tools Reference other than Pokédrome.
On Rom-Hacker's World for example you can get all G/S/C tools you need.

Quote:
Originally Posted by topiser
How do you play an ips?I have everything I need but dont know how to play the the ips.Please help!
Why don't you read the stickied threads?
We have them for a reason you know? ;)
The FAQ has a nicely explained answer for your question.
__________________
This signature has been disabled.
Height well exceeds 350px.
Please review and fix the issues by reading the signature rules.

You must edit it to meet the limits set by the rules before you may remove the [sig-reason] code from your signature. Removing this tag will re-enable it.

Do not remove the tag until you fix the issues in your signature. You may be infracted for removing this tag if you do not fix the specified issues. Do not use this tag for decoration purposes.
  #173   Link to this post, but load the entire thread.  
Old February 19th, 2006 (10:03 AM). Edited February 19th, 2006 by charimon.
charimon's Avatar
charimon charimon is offline
Yeah hacking !! ^^
 
Join Date: Sep 2005
Location: in The Netherlands
Age: 31
Gender:
Nature: Relaxed
Posts: 156
1: I edited the team magma guy in petalburgwoods but i did gave him a torchic with pet so when i battled him the whole screen turned purple what can i do to get i back normal and is it because of pet (so edit the trainers pkmn)
2: i edited the brendan sprite in unlz but when i play the rom and click on new game the game starts over how can i get this normal ?
__________________

credits to suta-raito for the charizard ;)
  #174   Link to this post, but load the entire thread.  
Old February 19th, 2006 (12:21 PM).
Netto-kun's Avatar
Netto-kun Netto-kun is offline
 
Join Date: Sep 2005
Location: Natal, Brazil
Age: 28
Gender: Male
Nature: Timid
Posts: 70
In unLZ where I can found the main outside tileset, with trees, grass, tall grass, and etc, in Emerald? Because I want to change it.
__________________
Name: Thiago
Friend Code (Diamond): 1332-5801-9509
Friend Code (Platinum): 3438-0750-7554

Always add my Platinum FC.

Click here to go my trading thread ^^ You'll always be welcome

Have you seen any Thiago OT Pokémon? If you see, say hello for me to it. And, if possible, trade it with me.

[img*]http://i44.tinypic.com/15zjd5h.jpg[/img]

RELEASE!!
  #175   Link to this post, but load the entire thread.  
Old February 19th, 2006 (12:36 PM). Edited February 19th, 2006 by Osceola.
Osceola's Avatar
Osceola Osceola is offline
Silent Warrior
 
Join Date: Sep 2005
Location: India / New York
Gender:
Nature: Bold
Posts: 310
i have one problem:
I edited a couple of things in AM. Then I opened up my hack in Elitemap and this showed up (see attachment)

My game is Firered version.

Is it because I edited it in AM? Is it possible that if you edit something in AM you can't open up the file in Elitemap? If so its fine with me, I just liked Elitemap better because you can switch levels easily.

Anyone know the answer?

2. Does anyone know where the title screen in Firered is? You know the letters that say "Fire Red". I am searching for it in Unlz.gba but I can't find it. Does anyone know the number of it? (You know, 78, 1618, etc.)
Attached Images
File Type: png reka.PNG‎ (5.8 KB, 4 views) (Save to Dropbox)
__________________

Black Cat...XIII...An Assassin...And a Friend...
Closed Thread

Quick Reply

Join the conversation!

Create an account to post a reply in this thread, participate in other discussions, and more!

Create a PokéCommunity Account
Ad Content

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 9:21 AM.