• Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • 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.

Recent content by Black Temple Gaurdian

  1. B

    [Other Question] Novice questions

    I can only answer the first question, but answer it I shall: Programming experience shouldn't be necessary unless you plan on adding new mechanics, and even then the simpler ones should be easy(ish) to work out based on the existing ones. Outside of adding scripts, the most complex parts would...
  2. B

    [Eventing Question] Moving escalators of Pokemon centers help

    Put an event over them, then have it animate and move the player upon being stepped on.
  3. B

    [Other Question] [17.2] Incorrect No Fonts Warning

    How weird, that fixed it. Is their a way to alter the check to be for the user, rather than global?
  4. B

    [Other Question] [17.2] Incorrect No Fonts Warning

    So I have a nuisance that I'm hoping some know how to correct. Despite having the fonts installed, Essentials keeps throwing up a false warning that they're not (presumably because it's on the D drive and the fonts are installed on the C drive), which is adding a painful amount of time when I...
  5. B

    Rock Climb working wonky

    So I've been playing around getting a version of Rock Climb to work, and I've come up with the following: def Kernel.pbNERockwall(event=nil) event = $game_player if !event return if !event oldthrough = event.through oldmovespeed = event.move_speed terrain = Kernel.pbFacingTerrainTag...
  6. B

    Script: [Essentials v17] Following Pokemon v 1.4.1

    So it's been a long while but I have a serious question: I have both follower and pokéride, how do I hide the follower while doing an activity, say, surfing?
  7. B

    [Scripting Question] EBS - Fainting Pokemon teleport

    So I'm not sure if this is a common issue or not, but with Elite Battle, when a opposing Pokemon faints, the background pulls back but the fainting Pokemon doesn't. Then just before it begins to drop of the screen, it teleports back to where it should be. Does anyone know a fix to this?
  8. B

    [Error] New Bag Screen

    Well I mean, one very obvious issue is you have 9 pockets (not counting the blank one), and you've only defined a size for 8 of them...
  9. B

    Fixing Voltorb Flip to Support 1–3 in Memo Mode

    So this is a bit... "ehhh" in resolution, but here's a quick-fix for Voltorb flip not having the ability to mark memos for numbers 1 through 3: Firstly, the replace the graphics with this: Secondly, go to PSystem_Controls and add "ZERO", "ONE", "TWO", and "THREE" to "module Input". Then under...
  10. B

    [Scripting Question] Script for player levelling system?

    To answer your question: Yes. To answer your question to the best of my ability: Yes, but it would probably involve a lot of conditional scripting of map events. Are you still using badges? If not, the easiest would probably be to have each HR be a badge (internally, at least).
  11. B

    [Scripting Question] Help with Custom Ability

    Give me a second, I did something similar for a weather effect once. EDIT: Okay, so in def pbAccuracyCheck, you'll want to something like: if isConst?(target.ability,PBAbilities,:ABILITYNAMEHERE) accuracy=(accuracy*19/20).floor end ... Except probably with an extra condition that...
  12. B

    [Scripting Question] Help with outfits.

    "X = Y" is "X is Y" "X == Y" is "Is X the same as Y?" The easiest way I remember is that two symbols is always a comparison. (Notice how "and" is "&&", and "or" is "||" too.) "!=" is also "not equal", but note how there's still two symbols.
  13. B

    [Scripting Question] Help with outfits.

    I was tired when I wrote that and didn't really think about it, that's why :P The easiest way I can think of is: if ($Trainer.outfit != 4 && $Trainer.outfit !=5) oldoutfit = $Trainer.outfit end This way you don't ever store outfits 4 or 5 as the old outfit.
  14. B

    [Scripting Question] Help with outfits.

    So you need to save the old outfit when entering snow. Then you want to have outfit 4 if it's not a snow bank, or outfit 5 if it is. Then, when it's neither, if the value of the old outfit is set, revert to that outfit, then clear the value?
  15. B

    [Eventing Question] How to push Strength Boulders through Rock Smashed rocks?

    Hmm... It might not be allowing two entities to coexist in a space? In which case, you may have to move the rocks off-screen as they're smashed.
Back
Top