Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

> Battle Skill/Item Resize, A smaller and better looking way of skill- and itemdisplay in battle.
SojaBird
post Aug 16 2009, 08:32 AM
Post #1


Level 51
Group Icon

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




Battle Skill/Item Resize


Version 1.0
Author SojaBird
Release Date
v1.0 (full release) > 16-08-'09


Features
v1.0 (full release)
  • Plug-and-play, moves skill- and itemwindows during battle.


[Show/Hide] Screenshots


Script
Attached File  Battle_SkillItem_Resize.txt ( 2.04K ) Number of downloads: 532



Customization
It's plug-and-play so no customization needed smile.gif


Compatibility
VX only.
Rewrites the "start_skill_selection"- and "start_item_selection"-methode of the "Scene_Battle"-class.


Installation
Put the script above main.
Credit me pls.


FAQ
Comming if needed.


Terms and Conditions
Credit me with site, and the script is free for use in NONCOMERCIAL projects.
If anyone want some changes, please 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 Aug 17 2009, 01:29 AM
Post #2


Level 51
Group Icon

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




U're welcome wink.gif
If ya want some other features or small editing of the battle...I'm in to it since I'm making a crazy hard lookin one atm tongue.gif (well for my experince with battle-systems (don't expect a ABS tongue.gif )).

Anyway, thanks.


Greatzz,
SojaBird.


__________________________
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
   

Posts in this topic
- pim321   Battle Skill/Item Resize   Aug 16 2009, 08:32 AM
- - platipus   wat does it look like? o.o   Aug 16 2009, 08:44 AM
- - WillH3iZ   QUOTE (pim321 @ Aug 16 2009, 09:32 AM) Sm...   Aug 16 2009, 08:50 AM
- - pim321   Hey. Have you allready tried to start a new, clea...   Aug 16 2009, 09:12 AM
|- - WillH3iZ   QUOTE (pim321 @ Aug 16 2009, 10:12 AM) He...   Aug 16 2009, 09:38 AM
- - pim321   Haha your welcome. Well actualy I saw your reques...   Aug 16 2009, 11:52 AM
- - Lockheart   Awesome, this script works wonderfully, especially...   Aug 16 2009, 03:25 PM
- - Lockheart   quick question, what part of the script do I or ca...   Aug 17 2009, 05:42 AM
- - pim321   I'm not sure what you meen with semi-transpare...   Aug 17 2009, 06:24 AM
- - Lockheart   What I mean by Semi-transparent is if I have open ...   Aug 17 2009, 12:48 PM
- - pim321   Oke I guess I know what you're saying Lol did...   Aug 18 2009, 01:15 AM
- - Guyver1   Somehow my item screen in battle works, but my ski...   Aug 19 2009, 02:17 PM
- - pim321   Mmm that's kinda odd. I guess it has something...   Aug 19 2009, 02:26 PM
- - icecold49   Omg ive been looking for something like this for s...   Aug 22 2009, 11:25 PM
- - pim321   Hey, Thanks for enjoying You've a idea how t...   Aug 23 2009, 01:05 AM
- - icecold49   This script works great for the most part and it...   Aug 24 2009, 09:54 AM
- - pim321   Mmm wel that's the problem with ABS right...th...   Aug 24 2009, 02:24 PM
- - Guyver1   If you can make one that works with the Atb system...   Sep 11 2009, 11:24 AM
- - SojaBird   Nop sry. I just think ATB should be more compatib...   Sep 12 2009, 02:57 AM
- - Neosky5k   Oh MY god!!! thank you so freakin MUC...   Sep 26 2009, 02:38 PM
- - SojaBird   Hey, Oke so for the battle help thing...here it c...   Sep 27 2009, 02:44 AM
- - Neosky5k   this is going to sound so noobish, which is weird....   Sep 27 2009, 02:12 PM
- - Mascarpone   By the way there's no text resizing so any ski...   Sep 28 2009, 10:29 PM
- - SojaBird   Whoops has been a long time and my email-service d...   Apr 18 2010, 02:09 AM
- - hnmitch   Sorry I know this post is old but I wanted to use ...   May 5 2011, 03:15 PM
- - omegaskye   Dude, it was a necro post, but you really helped m...   May 10 2011, 07:20 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: 23rd May 2013 - 12:57 AM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker