Recent content by Scyl

  1. Scyl

    [Question] How do you change the pitch and volume of a BattleBGM?

    A simple work around would to be use "change BGM music" in the event commands; you can modify the volume and pitch in there. Alternatively, you could just open the file in an audio-editing software like Audacity and modify the aforementioned settings in there.
  2. Scyl

    [Game Idea] Pokemon Anacharon

    ... Isn't that what Dark is for. Dark is known as Evil-type in the Japanese versions of the games.
  3. Scyl

    [Scripting Question] Custom Ability Help

    I'd look at Gale Wings in Essentials: p+=1 if user.hasWorkingAbility(:GALEWINGS) && isConst?(thismove.type,PBTypes,:FLYING) This basically says If the Pokemon has Gale Wings and the move it's using is Flying-Type, the priority level gets raised by 1. I'd try just copying/pasting and then...
  4. Scyl

    Fight Pokémon Tournament

    Run conditional branches in an event to check if the player has more than 1 Pokemon and if they have a Fighting-type in their party. Conditional Branch: Script: $Trainer.pokemonCount>1 (This checks to see if the player has more than one Pokemon in their party, regardless of whether or not the...
  5. Scyl

    Determine Player’s gender choice

    In the intro map in base essentials (The very first map of the entire game) lies the introduction event where the professor is asking the player for their gender and name. In that event, simply add an event command "Control Variables: [0026:] = 1" after, but still in the same choice path as...
  6. Scyl

    Determine Player’s gender choice

    Just create a variable and tie it to the gender choice; follow up by adding in conditional branches for the speech events checking for the variable. So, at the beginning of the game when the player is asked for their gender, if the player picks the male character, game_variable[26](Of course 26...
  7. Scyl

    [Eventing Question] Requirement of a Pokémon!!

    For specific Pokemon, just use a conditional branch calling pbHasSpecies?(:X) with X being whatever Pokemon you want to be checked. Essentials has this command used in one of its base maps. For types, do a conditional branch calling pbHasType?(:x). Once again, x standing for whatever type you...
  8. Scyl

    How to change team and after recover it

    Store the player's team in a variable, clear said team, add the Rotom, and then, after the event has concluded, get the player's team from said variable using the "Script" command in the Event Commands for event pages. $game_variables[55] = $Trainer.party.clone This stores the player's entire...
  9. Scyl

    [Question] Portable pc

    It's simple, actually. 526,LAPTOP,Laptop,Laptops,8,0,"A portable PC!",2,0,6, Add that to the Item.txt PBS File and then find the following line in the scripts under the section PItem_ItemEffects: ItemHandlers::UseInField.add(:EXPALLOFF,proc{|item|...
Back
Top