Anyway to reduce speed when use mouse ?

● ARCHIVED · READ-ONLY
Started by Warabeskel 5 posts View original ↗
  1. Is anyone know how to reduce speed when use mouse/touch ?

    because it looks like the character run all the time

    Edit: Found thanks for anyone have the same problem refer to http://forums.rpgmak...manage-dashing/

    Edit2: The plugins seem don't work with me...
  2. There is a plugin for that, I cant remember the name, but a simple forum search should bring it up
  3. after searching in code of the project i find an answer, well i don't know if is the best answer for this but this work for now for me

    in rpg_objects.js on line 6329 got this code

    Game_CharacterBase.prototype.realMoveSpeed = function() { return this._moveSpeed + (this.isDashing() ? 1 : 0);i only change input setting as i guess cause im not very good in js

    i have changed the code on live 6330 for

    return this._moveSpeed + (this.isDashing() ? 0 : 0);can someone who know more in js verify if what i change i good ? or it will take an error somewhere 
  4. No, that's not the right place.  Even if you ARE dashing (by holding the shift key) that will then cause you to not increase speed.  Good try though :)

    Here you go ...

    in rpg_object.js, on line 7652:

    this._dashing = this.isDashButtonPressed() || $gameTemp.isDestinationValid();Change it to this:

    this._dashing = this.isDashButtonPressed();The $gameTemp.isDestinationValid() method returns true when a destination has been set by tapping or mouse clicking.
  5. thanks you ^^