Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

2 Pages V   1 2 >  
Reply to this topicStart new topic
> *Updated* +Quick Face Border+ Version 1.5, *Short Script to Make Border around Face~*
woratana
post Feb 21 2008, 08:15 PM
Post #1


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




Quick Face Border
Version 1.5
by Woratana
Release Date: 23/02/2008


Introduction
This script will add the border on Face,

The border will create from window skin you choose wink.gif


Features
Version 1.5
- Edited Window_Message Bug
- You can use custom image for border

Version 1.0
- Add border on face
- Choose window skin you want for face's border
- Choose the window you want to use face border


Screenshot
Take a look in spoiler! laugh.gif
Version 1.5
[Show/Hide] Custom Border Image

Custom image border!

The border image I use in screenshot~


[Show/Hide] Open me! smile.gif













Script
Place it above main.
Version 1.5
Attached File  facbor15.txt ( 3.04K ) Number of downloads: 502


Version 1.0
Attached File  facebor10.txt ( 2.04K ) Number of downloads: 74


Instruction

Setup script here:

CODE
  #------------------------------
  # START SETUP SCRIPT
  #---------------------------
  BORDER_MODE = 0 # Choose Border Mode (0: Use Windowskin, 1:Use Image)
  BORDER_SKIN = "Window" # Name of Window Skin for Border (Mode 0)
  BORDER_IMAGE = "borderpic" # Custom Image for Border (Mode 1)
  # Custom image must be in folder "Graphics/Pictures" and size 96 x 96 pixel
  
  BORDER_OPACITY = 255 # Face Border's Opacity (0 - 255)
  
  # (true/false)
  USE_BORDER_IN_MENU = true
  USE_BORDER_IN_MESSAGE = true
  USE_BORDER_IN_STATUS_WINDOW = true
  USE_BORDER_IN_NAME_WINDOW = true
  #------------------------------
  # END SETUP SCRIPT
  #---------------------------


Author's Notes
Free for use in your non-commercial work if credit included. If your project is commercial, please contact me.

Please do not redistribute this script without permission. If you want to post it on any forum, please link to this topic.


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   
PhantomH
post Feb 25 2008, 03:02 PM
Post #2


Ushiromiya Battler
Group Icon

Group: Revolutionary
Posts: 758
Type: Writer
RM Skill: Skilled




This is nice biggrin.gif . Would it be possible to use a border from a picture instead of the window skin? I only have the default one and the border from it is too thick sad.gif .


__________________________
Go to the top of the page
 
+Quote Post
   
woratana
post Feb 25 2008, 04:15 PM
Post #3


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




Updated to version 1.5 >_</

It can use picture now, PhantomH


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   
PhantomH
post Feb 25 2008, 04:23 PM
Post #4


Ushiromiya Battler
Group Icon

Group: Revolutionary
Posts: 758
Type: Writer
RM Skill: Skilled




Ah, thanks smile.gif . I'll give it a go.


__________________________
Go to the top of the page
 
+Quote Post
   
Nechi
post Feb 25 2008, 08:20 PM
Post #5


Certamen Promus
Group Icon

Group: Revolutionary
Posts: 117
Type: None
RM Skill: Beginner




Nice Work!! wor-kun.


__________________________


Now, I 'm very busy.I'm work hard in the university. If you send me PM, sorry that I can't answer them at the moment.
Go to the top of the page
 
+Quote Post
   
LameSaint
post Feb 28 2008, 01:07 PM
Post #6



Group Icon

Group: Member
Posts: 3
Type: Event Designer
RM Skill: Advanced




I found a bug. When you use the Choose option after a message with a face in the events, the border still there, like it was a normal message. (Sorry for the bad english rolleyes.gif ) and thanks for the script wink.gif

This post has been edited by LameSaint: Feb 28 2008, 01:14 PM
Go to the top of the page
 
+Quote Post
   
woratana
post Feb 28 2008, 03:59 PM
Post #7


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




@Lamesaint

Your English is fine for me smile.gif

Have you try version 1.5 of this script? because I've fixed that bug in 1.5 smile.gif


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   
Nechi
post Feb 28 2008, 04:19 PM
Post #8


Certamen Promus
Group Icon

Group: Revolutionary
Posts: 117
Type: None
RM Skill: Beginner




Ask something.
Can you make option to edit setting with Call Script control and save that in game save?
I think i want to use that option.

This post has been edited by Nechi: Feb 28 2008, 04:20 PM


__________________________


Now, I 'm very busy.I'm work hard in the university. If you send me PM, sorry that I can't answer them at the moment.
Go to the top of the page
 
+Quote Post
   
woratana
post Feb 28 2008, 04:55 PM
Post #9


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




Can you tell me what part of script you want to be editable? smile.gif so I can do that tongue.gif


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   
Nechi
post Feb 28 2008, 04:58 PM
Post #10


Certamen Promus
Group Icon

Group: Revolutionary
Posts: 117
Type: None
RM Skill: Beginner




CODE
  #------------------------------
  # START SETUP SCRIPT
  #---------------------------
  BORDER_MODE = 0 # Choose Border Mode (0: Use Windowskin, 1:Use Image)
  BORDER_SKIN = "Window" # Name of Window Skin for Border (Mode 0)
  BORDER_IMAGE = "borderpic" # Custom Image for Border (Mode 1)
  # Custom image must be in folder "Graphics/Pictures" and size 96 x 96 pixel
  
  BORDER_OPACITY = 255 # Face Border's Opacity (0 - 255)
  
  # (true/false)
  USE_BORDER_IN_MENU = true
  USE_BORDER_IN_MESSAGE = true
  USE_BORDER_IN_STATUS_WINDOW = true
  USE_BORDER_IN_NAME_WINDOW = true
  #------------------------------
  # END SETUP SCRIPT
  #---------------------------

All over Here.


__________________________


Now, I 'm very busy.I'm work hard in the university. If you send me PM, sorry that I can't answer them at the moment.
Go to the top of the page
 
+Quote Post
   
LameSaint
post Feb 29 2008, 08:40 AM
Post #11



Group Icon

Group: Member
Posts: 3
Type: Event Designer
RM Skill: Advanced




I have the 1.5 version huh.gif. The Neo Message System was making the Face Border get some bugs, but I've changed the order of them in the scripts, and the bug was solved. But this bug on the choses stil there. sad.gif I've tried remove the Neo Message System to see if that is it what caused the bug. But nothing happens, the bug continue. And, again, if I've writed something wrong, sorry pinch.gif

This post has been edited by LameSaint: Feb 29 2008, 08:42 AM
Go to the top of the page
 
+Quote Post
   
woratana
post Feb 29 2008, 03:55 PM
Post #12


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




Can you show me screeny for that bug? smile.gif

Edit
Got report from other member too! tongue.gif

I'm going to fix it in moment and do Nechi's request before release new version smile.gif


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   
Ciaron
post Mar 8 2008, 06:14 PM
Post #13


Level 5
Group Icon

Group: Member
Posts: 71
Type: Developer
RM Skill: Skilled




for some reason, every time i show a message with no face next to it after placing a message with a face, the border still stays on the message window.
Note: all messages unless they are from finding an item is displayed at the bottom.


__________________________
Go to the top of the page
 
+Quote Post
   
woratana
post Mar 8 2008, 06:24 PM
Post #14


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




I've plan to fix it for a while, but never have a time yet tongue.gif

Sorry about that~


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   
Ciaron
post Mar 8 2008, 10:12 PM
Post #15


Level 5
Group Icon

Group: Member
Posts: 71
Type: Developer
RM Skill: Skilled




no problem happy.gif handy script though! I'll be eyeballing your scripts!


__________________________
Go to the top of the page
 
+Quote Post
   
darkwiz666
post Mar 18 2008, 08:22 AM
Post #16


Level 2
Group Icon

Group: Member
Posts: 18
Type: Developer
RM Skill: Skilled




Hmm...I dont quite understand the instructions... where am I supposed to put "BORDER_MODE = 0", in the script option?
Ah, I get it now (it goes in the script menu for an event)

This post has been edited by darkwiz666: Mar 18 2008, 09:15 AM


__________________________
CURRENT PROJECT : Ragnor - Legend to the Bottom
Procent complete : .5%
Go to the top of the page
 
+Quote Post
   
Dark Koji
post Mar 26 2008, 11:19 AM
Post #17


Level 1
Group Icon

Group: Member
Posts: 8
Type: Artist
RM Skill: Beginner




Yoz~

Sorry, got a little problem/question regarding this script.
I just cannot figure out how to get the borders to appear properly for messages. The borders seemed to be working just fine for the menu interface though. Everything is also already set to "true", as default.
Is there still a step I am missing out here? I am using ver. 1.5 btw. Thanks in advance!

The only other script currently in my game is the Neo Message System 2.0.
Go to the top of the page
 
+Quote Post
   
woratana
post Mar 26 2008, 05:02 PM
Post #18


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




This script still have bug when using it with message box.

So I think I may just add this feature in Neo Message System tongue.gif (Not decided yet, I will add if you guys say so)


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   
Dark Koji
post Mar 28 2008, 05:08 AM
Post #19


Level 1
Group Icon

Group: Member
Posts: 8
Type: Artist
RM Skill: Beginner




oic... So it was some kind of compatibility issue with the Neo Message.
I will just stick with your NMS then, since that is one awesome VX script I can't do without. happy.gif

Although not necessary, I won't mind you integrating the Face Border into the NMS too.
Go to the top of the page
 
+Quote Post
   
Transient Black
post Aug 14 2008, 12:47 AM
Post #20


Level 4
Group Icon

Group: Member
Posts: 47
Type: Artist
RM Skill: Undisclosed




thumbsup.gif Much appreciated for the script, woratana. Helped alot with my custom images.
I'll be sure to add you in my credits!...Whenever I'm done...

Sayo je!


__________________________
Go to the top of the page
 
+Quote Post
   

2 Pages V   1 2 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Lo-Fi Version Time is now: 25th May 2013 - 09:19 AM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker