RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Falcon's Small Scripts

0 Members and 1 Guest are viewing this topic.

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Well, I'll be stealing Modern's idea of posting simple scripts in one topic, so here are my simple scripts.

Spoiler for Experience Boosting Potions:
Demo: http://www.mediafire.com/?6yxlyzyxi43
Paste this above main:
Code: [Select]
#==============================================================================
# Experience Boosting Potions
#------------------------------------------------------------------------------
# By The_Falcon
# Requested by doodley at rmrk.net
#------------------------------------------------------------------------------
# This script should only be found at the following places:
# rmrk.net
# rmrevolution.rmrk.net
# hbgames.org
#==============================================================================
class Game_System
  attr_accessor   :experience_boost      # how much the exp increases
  attr_accessor   :exp_boost_turns       # how many battles the boost will last
  # Alias the initialize method
  alias exp_boost_initialize initialize
  def initialize
    # Use the old method
    exp_boost_initialize
    # Set both new variables
    @experience_boost = 0.0
    @exp_boost_turns = 0
  end
end
Now, replace this in Scene_Battle 2:
Code: [Select]
    # Obtaining EXP
    for i in 0...$game_party.actors.size
      actor = $game_party.actors[i]
      if actor.cant_get_exp? == false
        last_level = actor.level
        actor.exp += exp
        if actor.level > last_level
          @status_window.level_up(i)
        end
      end
    end
With this:
Code: [Select]
    #-----------------------------------------
    # Experience Potion Additions
    #-----------------------------------------
    if $game_system.exp_boost_turns > 0
      exp += Integer(exp * $game_system.experience_boost)
      exp.round
      $game_system.exp_boost_turns -= 1
    end
    # Obtaining EXP
    for i in 0...$game_party.actors.size
      actor = $game_party.actors[i]
      if actor.cant_get_exp? == false
        last_level = actor.level
        actor.exp += exp
        if actor.level > last_level
          @status_window.level_up(i)
        end
      end
    end
Then make common events which the experience potions call. The common events should have the following:
Code: [Select]
$game_system.experience_boost = X
$game_system.exp_boost_turns = Y
Where X is the percent (be sure to have a 0 in front of the percent decimals) and Y is the turns the boost will last.
Free to use in any project, as long as I am credited.
Spoiler for Map BGM carry through battle:
Replace the battle call method with this in Scene_Map. Change the switch to whatever switch you want to trigger then BGM.
Code: [Select]
  #--------------------------------------------------------------------------
  # * Battle Call
  #--------------------------------------------------------------------------
  def call_battle
    # Clear battle calling flag
    $game_temp.battle_calling = false
    # Clear menu calling flag
    $game_temp.menu_calling = false
    $game_temp.menu_beep = false
    # Make encounter count
    $game_player.make_encounter_count
    if $game_switches[1] == false
      # Memorize map BGM and stop BGM
      $game_temp.map_bgm = $game_system.playing_bgm
      $game_system.bgm_stop
      # Play battle start SE
      $game_system.se_play($data_system.battle_start_se)
      # Play battle BGM
      $game_system.bgm_play($game_system.battle_bgm)
    else
      # Play battle start SE
      $game_system.se_play($data_system.battle_start_se)
      $game_temp.map_bgm = $game_system.playing_bgm
    end
    # Straighten player position
    $game_player.straighten
    # Switch to battle screen
    $scene = Scene_Battle.new
  end
Free to use in any project without giving me credit.
Spoiler for Skill Overwrite System:
To use this, just set a bunch of skills to have the same name, whenever the actor learns one of the skills, the other ones with the same name will be deleted from their skill array.
http://falcon.rmrk.net/skilloverwrite.txt
Free to use in any project, as long as I am credited.
« Last Edit: October 04, 2008, 02:40:52 PM by Falcon »

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Best Member2012 Best RPG Maker User (Scripting)2012 Favorite Staff Member2012 Most Mature MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Veteran2011 Favourite Staff Member2011 Most Mature Member2011 Best RPG Maker User (Scripting)2011 Best Use of Avatar and Signature Space2010 Most Mature Member2010 Favourite Staff Member
Thief :P

I like that little script. It's an interesting type of item. It allows for some neat stuff. Good job.

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
*picks Modern's pocket*

Now....what to do for the next script....

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
sweet.  :D
can't wait to see more!

Watch out for: HaloOfTheSun

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
New script up.

*
Shooting for the "MEMBER MODERATOR OF THE YEAR 2007" Award
Rep:
Level 89
Hi, there.
Well, I'll be stealing Modern's idea of posting simple scripts in one topic, so here are my simple scripts.


Spoiler for Map BGM carry through battle:
Replace the battle call method with this in Scene_Map. Change the switch to whatever switch you want to trigger then BGM.
Code: [Select]
  #--------------------------------------------------------------------------
  # * Battle Call
  #--------------------------------------------------------------------------
  def call_battle
    # Clear battle calling flag
    $game_temp.battle_calling = false
    # Clear menu calling flag
    $game_temp.menu_calling = false
    $game_temp.menu_beep = false
    # Make encounter count
    $game_player.make_encounter_count
    if $game_switches[1] == false
      # Memorize map BGM and stop BGM
      $game_temp.map_bgm = $game_system.playing_bgm
      $game_system.bgm_stop
      # Play battle start SE
      $game_system.se_play($data_system.battle_start_se)
      # Play battle BGM
      $game_system.bgm_play($game_system.battle_bgm)
    else
      # Play battle start SE
      $game_system.se_play($data_system.battle_start_se)
      $game_temp.map_bgm = $game_system.playing_bgm
    end
    # Straighten player position
    $game_player.straighten
    # Switch to battle screen
    $scene = Scene_Battle.new
  end
Free to use in any project without giving me credit.



Nice. I think I requested something like this either last year or sometime around january but no one could figure it out.
When you say "carry through" do you mean that the Map BGM will play through the fight as well or it will pick-up where it left off before the fight.

Either way, thanks Falcon. I needed this for a game I am working on for my senior project at school.
« Last Edit: September 15, 2008, 12:03:13 AM by ChaosSpartan28 »
Sig by MacGravel

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Pick-up where it left is not possible. If Blizzard couldn't do it, there's no way no one else would.

*
Shooting for the "MEMBER MODERATOR OF THE YEAR 2007" Award
Rep:
Level 89
Hi, there.
Pick-up where it left is not possible. If Blizzard couldn't do it, there's no way no one else would.

...appearantly, it is now.

http://www.hbgames.org/forums/index.php?topic=55486.0
Sig by MacGravel

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Yeah, someone posted that like, the day I said that, lol.

********
Hungry
Rep:
Level 96
Mawbeast
2013 Best ArtistParticipant - GIAW 11Secret Santa 2013 ParticipantFor the great victory in the Breakfast War.2012 Best Game Creator (Non-RM Programs)~Bronze - GIAW 9Project of the Month winner for December 2009Project of the Month winner for August 20082011 Best Game Creator (Non RM)Gold - GIAW Halloween
Irony

edit: doesn't RMXP already support .ogg files?
nvm, fancy looping
« Last Edit: September 18, 2008, 11:40:16 AM by NAMKCOR »

FCF3a A+ C- D H- M P+ R T W- Z- Sf RLCT a cmn+++ d++ e++ f h+++ iw+++ j+ p sf+
Follow my project: MBlok | Find me on: Bandcamp | Twitter | Patreon

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
New Script.

*
Rep: +0/-0Level 4
RMRK Junior
Dysuria, jep.bsaz.rmrk.net.upt.pf visualized naprosyn what is lasix for heartworms viagra pharmacy canada cialis without prescription antivert call originate single-gene <a href="http://antonioscollegestation.com/naprosyn/">naprosyn without a prescription</a> <a href="http://vintagepowderpuff.com/lasix/">price of furosemide</a> <a href="http://puresportsnetwork.com/pharmacy/">online pharmacy</a> <a href="http://vowsbridalandformals.com/cialis-20mg/">buy cialis uk</a> <a href="http://disasterlesskerala.org/antivert/">buy antivert</a> cancel streptococcus intact: http://antonioscollegestation.com/naprosyn/ naprosyn without a prescription http://vintagepowderpuff.com/lasix/ lasix http://puresportsnetwork.com/pharmacy/ canadian pharmacy cialis http://vowsbridalandformals.com/cialis-20mg/ cialis 20mg http://disasterlesskerala.org/antivert/ antivert pills velocity microvasculature.