Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

> Status Enhanced, A enhanced version of the menu status.
SojaBird
post May 23 2008, 09:35 AM
Post #1


Level 51
Group Icon

Group: Revolutionary
Posts: 1,573
Type: Scripter
RM Skill: Advanced




Status Enhanced

Version v2.2
Author SojaBird
Release Date
v1.0 > 23-05-08
v1.5 > 26-05-08
v2.0 > 04-06-08
v2.1 > 24-08-08
v2.2 > 26-06-09


Introduction
This script is from a request from @speed. I just made it a bit more customisable so that it could be use by any of U.


Features
v1.0
- Pluy and Play with customasation options avalible.
v1.5
- Fixed the in battle-bug status. It's useing the old battle-status now.
v2.0
- Better compatibility with other scripts.
v2.1
- Fixed the facesize. Useable by all size of pictures.
v2.2
- Fixed states and added exp2nxtLV

To come features
On request only for this one.


Script
Attached File  Status_Enhanced.txt ( 5.87K ) Number of downloads: 750


Customization
The whole setup is in the script self.
All you have to do is change it to your own style.

the setup in the script starts from
CODE
#############
# Start SETUP
#############


and ends with
CODE
############
# End SETUP
############


Compatibility
VX only.

Screenshot
v2.1


Installation
Put the script above main.
Set the script up by changing it to your project.
Credit me pls.

FAQ
Non jet...

Terms and Conditions
Credit me pls with site, and the script is yours.
If anyone want some changes, pls pm me or post it here, I'll track the topic.


__________________________
Art from the highest shelf?

Scriptology, scripting podcast



HUD's Request Lobby (multiple hud-scripts)


------------------------------------------------------------------

Random Stuff
OMG, it's Hab!!


This is a crazy drawing application! (by me)

How did I learned to script
QUOTE
Hey pim! I'm the Law G14!

For the past couple of months I've been learning RGSS and I've got the basic stuff down such windows, variables, conditional statements, ect. But, I can't see myself making big scripts such as a jumping system or a side view battle system. I was wondering how you learned to script because I really want to know how to script really well.

Thanks in advance.


Hey there,

Well I don't make battle neither though I can still teach you some things :)...
The way I've learned to script is by reading other scripts for the most part.
I've allways been interested in other peoples work but this time I though I had to try to make something myself...and it worked!!
The most importand thing when you go scripting is (at least in my case) that you want to make something to help an other wich can't script.
You also need to feel the competition that's around in the scripting-community.
Cause, I have to say, if you get pushed to get a sertain request done before an other scripter does, you feel POWERFULL!! :P
So that's an other thing...
You also don't need to be afraid to learn from others or helpfiles.
When I write my scripts, I actualy always have the helpfiles open to look things up I don't know or remember.
Then, you must be calm, cause you need to try the script a lot of times.
When I write a script, I test it after almost every changes.
First I set up the major structure.
Like when I make a window-script or part of a script I start with something like this:
CODE
class Window_Name < Window_Base
def initialize(x,y,width,height)
super(x,y,width,height)
refresh
end

def refresh
self.contents.clear
draw_contents
end

def draw_contents
draw_something(with, some, parameters)
end

def update
refresh if @something != @what_it_should_be
end
end
So that's also very important.
Then, the biggest thing I learned scripting from is TRIAL AND ERROR.
That's the most irritating way to learn something, cause it's more ERROR than TRIAL, but it does the trick realy good.

So that's it how I did it.
Now it's up to you.
Do some requests (if I didn't do it allready :P) and learn from them.

Hope that helped you out a little.
If not, keep your eye on the Scriptology-topic (see my sig) where I'll be updating for my scripting(video)tutorials.
Perhaps they're going to be usefull for you one day ;)


Greatzz,
SojaBird.
Go to the top of the page
 
+Quote Post
   
 
Start new topic
Replies
SojaBird
post May 23 2008, 04:00 PM
Post #2


Level 51
Group Icon

Group: Revolutionary
Posts: 1,573
Type: Scripter
RM Skill: Advanced




yea i think it came out pretty well dont ja think speedeyh tongue.gif hehe


__________________________
Art from the highest shelf?

Scriptology, scripting podcast



HUD's Request Lobby (multiple hud-scripts)


------------------------------------------------------------------

Random Stuff
OMG, it's Hab!!


This is a crazy drawing application! (by me)

How did I learned to script
QUOTE
Hey pim! I'm the Law G14!

For the past couple of months I've been learning RGSS and I've got the basic stuff down such windows, variables, conditional statements, ect. But, I can't see myself making big scripts such as a jumping system or a side view battle system. I was wondering how you learned to script because I really want to know how to script really well.

Thanks in advance.


Hey there,

Well I don't make battle neither though I can still teach you some things :)...
The way I've learned to script is by reading other scripts for the most part.
I've allways been interested in other peoples work but this time I though I had to try to make something myself...and it worked!!
The most importand thing when you go scripting is (at least in my case) that you want to make something to help an other wich can't script.
You also need to feel the competition that's around in the scripting-community.
Cause, I have to say, if you get pushed to get a sertain request done before an other scripter does, you feel POWERFULL!! :P
So that's an other thing...
You also don't need to be afraid to learn from others or helpfiles.
When I write my scripts, I actualy always have the helpfiles open to look things up I don't know or remember.
Then, you must be calm, cause you need to try the script a lot of times.
When I write a script, I test it after almost every changes.
First I set up the major structure.
Like when I make a window-script or part of a script I start with something like this:
CODE
class Window_Name < Window_Base
def initialize(x,y,width,height)
super(x,y,width,height)
refresh
end

def refresh
self.contents.clear
draw_contents
end

def draw_contents
draw_something(with, some, parameters)
end

def update
refresh if @something != @what_it_should_be
end
end
So that's also very important.
Then, the biggest thing I learned scripting from is TRIAL AND ERROR.
That's the most irritating way to learn something, cause it's more ERROR than TRIAL, but it does the trick realy good.

So that's it how I did it.
Now it's up to you.
Do some requests (if I didn't do it allready :P) and learn from them.

Hope that helped you out a little.
If not, keep your eye on the Scriptology-topic (see my sig) where I'll be updating for my scripting(video)tutorials.
Perhaps they're going to be usefull for you one day ;)


Greatzz,
SojaBird.
Go to the top of the page
 
+Quote Post
   
Speed@
post May 24 2008, 12:44 AM
Post #3


Level 12
Group Icon

Group: Revolutionary
Posts: 203
Type: None
RM Skill: Undisclosed




QUOTE (pim321 @ May 23 2008, 03:14 PM) *
yea i think it came out pretty well dont ja think speedeyh tongue.gif hehe

Yea it did, but you almost killed me with the wait time smile.gif
Go to the top of the page
 
+Quote Post
   

Posts in this topic
- pim321   Status Enhanced   May 23 2008, 09:35 AM
- - Speed@   If it hadn't benn for me, this wouldn't ha...   May 23 2008, 09:58 AM
|- - bladexproduction   Is there a way to edit this so it doesn't scre...   May 23 2008, 04:46 PM
||- - pim321   QUOTE (bladexproduction @ May 24 2008, 02...   May 24 2008, 12:03 AM
- - pim321   QUOTE Yea it did, but you almost killed me with th...   May 24 2008, 12:47 AM
|- - Speed@   QUOTE (pim321 @ May 24 2008, 12:01 AM) QU...   May 24 2008, 11:27 AM
- - ell   I have a problem, when i press esc instead of menu...   May 24 2008, 08:26 AM
|- - pim321   QUOTE (ell @ May 24 2008, 05:40 PM) I hav...   May 24 2008, 12:53 PM
- - puppeto4   Ok, if you want to chat with each other use either...   May 24 2008, 11:36 AM
|- - Ilikepie123   QUOTE (puppeto4 @ May 24 2008, 02:50 PM) ...   May 24 2008, 06:55 PM
|- - Speed@   QUOTE (Ilikepie123 @ May 24 2008, 06:09 P...   May 25 2008, 05:17 AM
- - ell   I'm only using neo save system script (or all ...   May 25 2008, 10:44 AM
- - Tenchu-San   What does this script exactly do? Just change how ...   May 25 2008, 12:38 PM
|- - pim321   QUOTE (Tenchu-San @ May 25 2008, 09...   May 25 2008, 04:20 PM
- - Chronno   did you see what it do to the battle system? the s...   May 25 2008, 10:48 PM
- - Tenchu-San   No, that's a screen shot of the Main Menu, the...   May 25 2008, 11:00 PM
- - pim321   @t-s dude what's ur problem i don't know w...   May 26 2008, 01:56 AM
- - pim321   Update 2 v1.5 Battle-bug fixed, it uses the old ba...   May 26 2008, 04:47 AM
|- - chipsadip101   QUOTE (pim321 @ May 26 2008, 04:47 AM) Up...   Nov 21 2008, 09:38 PM
- - Tenchu-San   The only problem I have is with your spelling/gram...   May 26 2008, 12:06 PM
- - Chronno   in the status menu if you change the "Status...   May 26 2008, 12:38 PM
|- - pim321   QUOTE (Chronno @ May 26 2008, 09:52 PM) i...   May 26 2008, 02:25 PM
- - puppeto4   Ok, everybody calm down ,there is no need for argu...   May 26 2008, 12:48 PM
- - Chronno   look this is the screen, the explanation of the er...   May 26 2008, 03:14 PM
- - pim321   yea i see, u probebly need to changes the size of ...   May 27 2008, 02:04 AM
- - puppeto4   Whoaa, I just realized that you modified the defau...   May 28 2008, 12:29 PM
- - pim321   so then using alias or sth? thanks for the advice,...   May 28 2008, 03:04 PM
- - puppeto4   Right now what this script do is rewriting the old...   May 28 2008, 03:11 PM
- - ell   I got the newer version it worked fine but it was ...   Jun 1 2008, 12:43 PM
- - Chronno   hey i edited the scritp like puppeto said, and add...   Jun 1 2008, 01:24 PM
- - pim321   Update to v2.0!   Jun 4 2008, 03:08 AM
- - ToryToTheMax   [Show/Hide] What Solja Bird Just SedQUOTE (pim321 ...   Jun 30 2008, 10:06 AM
- - pim321   pls dont quote a whole first post, it's useles...   Jul 5 2008, 04:29 PM
- - Vanisher   Umm, I have a question: -Does this script compatib...   Jul 5 2008, 10:31 PM
- - pim321   I guess it does. Just place it beneath your script...   Jul 6 2008, 01:26 AM
- - GunZz   Okay,now for the script. First -it's so easy t...   Aug 10 2008, 02:40 PM
- - pim321   Haha! Cool that you apprisiate my work. I hope...   Aug 11 2008, 04:08 PM
- - semajames   I've noticed a small mistake you've made w...   Aug 23 2008, 08:58 PM
- - pim321   Oke thanks for the tip. Updated to v2.1 All siz...   Aug 24 2008, 08:18 AM
- - Sniper Wolf   Hi, Im having a problem with your script. When I p...   Sep 24 2008, 09:40 AM
- - pim321   Mmmm...interesting, could ya pm me yar version of ...   Sep 24 2008, 09:48 AM
|- - Sniper Wolf   QUOTE (pim321 @ Sep 24 2008, 09:10 AM) Mm...   Sep 24 2008, 11:34 AM
- - lato22   Wow great script and so easy to use ty!   Oct 21 2008, 01:58 AM
|- - pim321   QUOTE (lato22 @ Oct 21 2008, 11:58 AM) Wo...   Oct 21 2008, 03:13 AM
- - pim321   all ya have to do is insert the script above main....   Nov 22 2008, 05:46 AM
- - Sabera   Thank you very much for making this, I shall be us...   Jan 25 2009, 12:12 PM
- - pim321   No thanks I hope I can figure out how to get tha...   Jan 25 2009, 02:50 PM
- - ichigo83   Just wanted to say thanks for the script, it worke...   Apr 22 2009, 09:17 PM
- - pim321   Well thanks you If you have some improvementpoint...   Apr 22 2009, 11:37 PM
- - EpicChronicles   This script worked for me without any problems. T...   May 18 2009, 03:23 PM
- - pim321   Good you like it Enjoy. Greatzz, SojaBird.   May 18 2009, 11:06 PM
- - pim321   Did an update, cuase: a request (add exp2nxtLV) H...   Jun 26 2009, 08:08 AM
- - tehpwnerer   Just wanted to say 2 things.. Pim .. Nice script m...   Jul 24 2009, 10:32 AM
- - pim321   Hey, Thanks for the nice words It's good to ...   Aug 4 2009, 11:17 AM
- - DestinySeraphim   I just want to say I adore this script in combinat...   Apr 7 2010, 09:44 PM
- - SojaBird   Oke so hey I'm kinda back now Thanks for ador...   Apr 18 2010, 02:54 AM
- - Madnessguy10   Great script! But one question, could you upda...   Aug 2 2010, 01:43 PM
- - SojaBird   Hey, First of all, thanks. Second, sorry but no....   Aug 3 2010, 12:41 AM
- - Madnessguy10   QUOTE (SojaBird @ Aug 3 2010, 04:41 AM) H...   Aug 4 2010, 03:24 PM


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 - 05:02 AM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker