- Joined
- Oct 6, 2017
- Messages
- 127
- Reaction score
- 25
- First Language
- English
- Primarily Uses
- RMMV
Hello guys,
So I paid a programmer to code a few scripts for me. Unfortunately, after telling me that he'd reply in a week, he hasn't replied since (this was two weeks ago). I've since tried to get in touch with him numerous times with no success.
The code mentions in the "setup" part that I need to use the <outline> tag on an event in order to use my script. I have no idea as to how I use that tag and therefore cannot use the script in this current form and the programmer doesn't reply to my queries so I figured I would ask people here so that they can point out how I can use this script.
Thank you!
So I paid a programmer to code a few scripts for me. Unfortunately, after telling me that he'd reply in a week, he hasn't replied since (this was two weeks ago). I've since tried to get in touch with him numerous times with no success.
The code mentions in the "setup" part that I need to use the <outline> tag on an event in order to use my script. I have no idea as to how I use that tag and therefore cannot use the script in this current form and the programmer doesn't reply to my queries so I figured I would ask people here so that they can point out how I can use this script.
Thank you!
Code:
/*
#=============================================================================
# Outline Events
# OutlineEvents.js
# By Lecode
# Version 1.0
#-----------------------------------------------------------------------------
# TERMS OF USE
#-----------------------------------------------------------------------------
# - Credits to Lecode
# - Only usable by Etiennezizka
#-----------------------------------------------------------------------------
# Version History
#-----------------------------------------------------------------------------
# - 1.0 : Initial release
#=============================================================================
*/
var Lecode = Lecode || {};
Lecode.C_OutlineEvents = {};
/*:
* @plugindesc Outline events when the player is close
* @author Lecode
* @version 1.0
*
* @param Thickness
* @desc Default thickness of the outline
* @default 1
*
* @param Color
* @desc Default color of the outline
* @default 0xFFFFFF
*
* @param Distance From Player
* @desc Default minimal distance to trigger the outline
* @default 2
*
* @param Need Facing ?
* @desc Should the player face events to trigger the outline ?
* @default true
*
*
* @help
* #-----------------------------------------------------------------------------
* # Introduction
* #-----------------------------------------------------------------------------
* This plugin highlights events when the player is near them.
* The color and thickness of the highlighting can be modified.
* The other parameters define the required minimal distance from the player
* to trigger the plugin, and if the player need to face them or not.
*
* Note: Color is in hexadecimal notation.
*
* #-----------------------------------------------------------------------------
* # Set Up
* #-----------------------------------------------------------------------------
* To activate the plugin on an event, simply put the <Outline> tag on it.
* You can however give specified parameters for your events, with this tag instead:
* <Outline: Thickness, Color, Distance, NeedFacing?>
*
* Example: <Outline: 4, 0x5882FA, 4, false>
*/
//#=============================================================================