Jump to content
Fisherolol

Change the invocation speed of skills

Recommended Posts

Ill give up when somebody explain to me why invocation isn't changable

 

As for now l have no reason to give up in spending 2 second every 3 days to bump this topic since nobody ever thought of changing the speed of spells

Share this post


Link to post
Share on other sites

It isn't possible. Why do you need to know why? Go ask over at rpgmakerweb if you HAVE to know the reason it isn't possible, maybe someone who works for Enterbrain will know the answer for you. Instead of needlessly bumping a post for useless information you will do nothing with...

Share this post


Link to post
Share on other sites

It isn't possible. Why do you need to know why? Go ask over at rpgmakerweb if you HAVE to know the reason it isn't possible, maybe someone who works for Enterbrain will know the answer for you. Instead of needlessly bumping a post for useless information you will do nothing with...

@ Euphoria, the OP has every right to continue bumping every 3 days (it's completely within forum rules). I imagine there's a scripted solution for what he would like accomplished and it is indeed possible (this topic is in script requests, so that's also correct). Please don't needlessly bump topics with posts that contain useless information that don't benefit the OP.

 

@Fisherolol, if nobody picks up this request for you, another suggestion would be to try commissioning a scripter.

Share this post


Link to post
Share on other sites

 

 

#==============================================================================
# ** Speed_Invocation Kaiser
# Soulpour777
#------------------------------------------------------------------------------
#  This snippet adds or decreases the speed of the skill being cast.
#==============================================================================
module Soulpour
  module Speed_Invocation
    Reg_Ex = /<kaiser_speed: ([-]?\d+)>/i            # Change Invocation
  end
end

class RPG::UsableItem
  #--------------------------------------------------------------------------
  # * Speed of Invocation
  #--------------------------------------------------------------------------  
  def speed
    @speed + speed_regex
  end
  #--------------------------------------------------------------------------
  # * Get Added Speed from Skill Notes
  #--------------------------------------------------------------------------
  def speed_regex
    @speed_regex ||= note =~ Soulpour::Speed_Invocation::Reg_Ex ? $1.to_i : 0
  end
  
end 

 

 

Edited by SoulPour777

Share this post


Link to post
Share on other sites

Please report your topic as solved in future so people don't waste their time doing something you no longer require.

 

Closed.

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.

  • Recently Browsing   0 members

    No registered users viewing this page.

×
Top ArrowTop Arrow Highlighted