Posts

THIS SITE WILL BE MOVING SOON

 As the title suggests, the site will be moving to utilize better website builders. A link will be posted once that site becomes available. Hoping to squeeze that out by late April 2021.

Line of Sight/Auras Tutorial RMMZ

Image
 Line of Sight/Auras are easy to do and you don't require a plugin to do so. The tutorial contained are in the videos below. Let me know what you think :) NEW! Circle Line of Sight / Aura Below Line of Sight / Auras (No Circles) Copy & Paste Code: Spotted in Facing Direction (Copy Pasted as 1-Line) $gameMap.event(this._eventId).direction() == 2 && $gameMap.event(this._eventId).y < $gamePlayer.y || $gameMap.event(this._eventId).direction() == 8 && $gameMap.event(this._eventId).y > $gamePlayer.y || $gameMap.event(this._eventId).direction() == 4 && $gameMap.event(this._eventId).x > $gamePlayer.x || $gameMap.event(this._eventId).direction() == 6 && $gameMap.event(this._eventId).x < $gamePlayer.x Triangle Vision  (Copy Pasted as 1-Line) Math.abs($gameMap.event(this._eventId).x - $gamePlayer.x) + Math.abs($gameMap.event(this._eventId).y - $gamePlayer.y) <= 3 Line Vision  (Copy Pasted as 1-Line) Math.abs($gameMap.event(this._eventId).y -