• Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

General Game Dev Help and Requests

Status
Not open for further replies.
You can either erase the event or use a switch say 1:a and you make a blank page with the conditions if 1:a is on
 
My heart guage went down four pixels and I added you to the list of people to thank.
 
Can someone please give me the FRLG windowskin, Thanks.
 
how many Frames is in...
a) 1 minute?
b) 10 minutes?

Itz for my Day/night script I am customizing it for my Yellow DX.

Thanks.
 
Jade said:
how many Frames is in...
a) 1 minute?
b) 10 minutes?

Itz for my Day/night script I am customizing it for my Yellow DX.

Thanks.
10 frames is 1 second
600 frames is 1 minutes
6000 frames is 10 minutes
sphereslayer said:
In the rpg xp scripter how do i call an event ? I've made a bag just out of events and i want to call that from my menu when i select the "bag" option. Thanks
use the memorize location script from dubealex.
it has a warp function.
Warp.new(map,x,y,facing) i think.
 
virtual, thanks for answering the question *gives rep*

can someone please provide me pokemon window skins? Thanks
 
Hey I was wondering in rgss how do i make the items window only have 1 column ? I've attached a pic to show what I mean, I want all 3 of those items listed underneath one another, instead of having the 2 columns. Any help would be greatly appreciated :)
 
Hey I was wondering in rgss how do i make the items window only have 1 column ? I've attached a pic to show what I mean, I want all 3 of those items listed underneath one another, instead of having the 2 columns. Any help would be greatly appreciated

Find these lines in Window_Item
Code:
    @column_max = 2

   x = 4 + index % 2 * (288 + 32)
    y = index / 2 * 32

And, you see @column_max? change the value to 1
Also, change the 2's after the "%" and "/" symbols to 1

It would make the items all appear on one column.
 
I'd like to know how to make a Rent-a-(noun) that blocks you off if you don't have enough money. Glooba.
 
Last edited:
I'd like to know how to make a Rent-a-(noun) that blocks you off if you don't have enough money. Glooba.
Do you mean, like, an inn or something? And, for what maker?
 
Cursed said:
I'd like to know how to make a Rent-a-(noun) that blocks you off if you don't have enough money. Glooba.

That's fairly easy. Make an event that's over the place you want to block off (hero touch). Make a conditional branch if the money is less than a certain amount. Under that, make a message like "You don't have enough money, you can't pass through here.", and it moves the player back once space towards the place where he/she came from. In the Else, don't put anything.

EDIT: Oh... I get you now. Just read Peekimon's post below mine.
 
OH, it can be simply done using conditional branches. Like, if your money is higher that your required value, you process the renting airship part, else, you tell them that you can't afford it or something.
 
Thanx. You got my heart guage down, but you didn't use my name, so I'm still in hyper mode. Glooba.
I need a chipset of an airport.
 
Last edited:
Find these lines in Window_Item
Code:

@column_max = 2 x = 4 + index % 2 * (288 + 32) y = index / 2 * 32



And, you see @column_max? change the value to 1
Also, change the 2's after the "%" and "/" symbols to 1

It would make the items all appear on one column.

thanks peekimon ! u rule !
 
Can some one make me or tell me hot to make an hp bar script? The hp files I use are (from full to empty)EnemyHP-(50-0) and HPBarMain(50-0)
please someone help me!
 
On rm2k3 I can't do screens. I tried ctrl+prtsc but it wouldn't work pleaze help.
 
Thankyou!!!!!!!!!!!!!!!!!
Edit: It doesn't work. It sends me back to the title screen. :(
 
Status
Not open for further replies.
Back
Top