Jump to content
Rpg²S Forum
  • 0

Disabilitare la corsa quando si è affetti da uno stato


nickk.c
 Share

Question

Ciao a tutti, vorrei fare in modo che quando uno dei componenti della squadra è affetto da un certo stato, il giocatore non sia in grado di correre tenendo premuto SHIFT. Ovviamente quando lo stato svanirà, il giocatore dovrà poter correre di nuovo :D

Grazie in anticipo! ^3^

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

class Game_Map
  
  
  
  def disable_dash?
    dash_disable_status = [1,2,3]
    dash_disable_status.each do |st|
      return true if $game_actors[1].state?(st)
    end
    return true if @map.disable_dashing
    return false
  end
  
end

Copia e incolla in Materials. Tra le parentesi quadre di dash_disable_status metti gli ID degli stati che disabilitano la corsa.

Nella riga sotto dopo $game_actors metti l'ID del personaggio che disabilita la corsa se ha quegli status.

Edited by Zoro the Gallade

Mensola dei trofei:

 

http://www.rpg2s.net/forum/uploads/monthly_08_2014/post-6-0-59989200-1408714052.gifhttp://i.imgur.com/7GriqYm.png

 

 

Creazioni varie:

 

 

hnR4pt.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...