FL
Pokémon Island Creator
- 2,546
- Posts
- 14
- Years
- Seen yesterday
Did you follow the tutorial? What happened?Question, can I put a quest system in the Pokegear? I know there is one, but how do I insert it into the Pokegear?
Did you follow the tutorial? What happened?Question, can I put a quest system in the Pokegear? I know there is one, but how do I insert it into the Pokegear?
I'll quote this, and let you figure out why your post is inappropriate here.Describing how to make a whole new screen is not a part of this tutorial.
Here a good starter point for making scenes in Essentials.Since I noticed similar questions in the thread I thought it wouldn't hurt asking, but I suppose I'll have to put this up somewhere else then, thanks for the heads-up :)
EDIT: Would by any chance know a place/thread where I can to script these things, or just basic ruby that I can apply to Essentials? :)
For DayCareChecker, just follow main thread post, for Storage System, this post. The trainer phone is default on Essentials, for VS Seeker, try using Mej71 one. My guess (untested): Follow the entire tutorial and, copy the code between "ItemHandlers::UseInField.add(:VSSEEKER,proc{|item|" and "})" pasting in a new "def". After adding the method, instead of addingHello FL. I love your Scripts and since december 2015 I tried to put your scripts into my game, but there appeared many error messages. Now I've got a clean Essentials (current version) v.16 and v.16.1 I paste the files on the data folder of essentials. Now I'm trying to put your Pokégear Scripts with all functions: Watch (already done), Daycare-system, Pokégear Radio, Storage-system, well I want to download all Scripts you made for the Pokégear and put it, can you plz help me with the storage system etc. I want to rename the Pokégear as PokéNav and make it look like as in R/S/E...
I need those pictures and can't find it elsewhere, if you could help me I would appreciate it.
I downloaded the pictures from the Daycare checker-item but I want it for the Pokégear, which I want to call it as PokéNav.. also need the trainer phone or a Vs seeker instead inside it.
if @cmdSomething>=0 && @sprites["command_window"].index==@cmdSomething
pbPlayDecisionSE()
pbFadeOutIn(99999) {
scene=SomethingScene.new
screen=Something.new(scene)
screen.pbStartScreen
}
end
if @cmdVVSeeker>=0 && @sprites["command_window"].index==@cmdVVSeeker
yourVSMethodCall
end
For DayCareChecker, just follow main thread post, for Storage System, this post. The trainer phone is default on Essentials, for VS Seeker, try using Mej71 one. My guess (untested): Follow the entire tutorial and, copy the code between "ItemHandlers::UseInField.add(:VSSEEKER,proc{|item|" and "})" pasting in a new "def". After adding the method, instead of adding
Code:if @cmdSomething>=0 && @sprites["command_window"].index==@cmdSomething pbPlayDecisionSE() pbFadeOutIn(99999) { scene=SomethingScene.new screen=Something.new(scene) screen.pbStartScreen } end
Add:
Code:if @cmdVVSeeker>=0 && @sprites["command_window"].index==@cmdVVSeeker yourVSMethodCall end
For PokéNav images, I suggest ripping from screens in this page.
Where is the pokegear script?
Try 'screen.pbStartScreen($Trainer.gender==0)'.Hey FL! I want to add your Wall Clock sprite (https://www.pokecommunity.com/showthread.php?t=333511)
But give me error cuz this 'screen.pbStartScreen(male)'
The script dont recognize '(male)'
How can i fix that? i try to only put "screen.pbStartScreen" and nothing. :/
Ty ty!
Try 'screen.pbStartScreen($Trainer.gender==0)'.