Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

> New Menu Items, The best way to control your menu-item list!!
SojaBird
post Jun 5 2009, 04:04 AM
Post #1


Level 51
Group Icon

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




New Menu Items

Version v1.0.3
Author SojaBird
Release Date
v1.0 > 05-06-'09
v1.0.1 > 05-06-'09
v1.0.2 > 07-06-'09
v1.0.3 > 07-06-'09
v1.0.4 > 12-06-'09


Introduction
Are you tierd of all those scripts who change the way your menu is going to look?
A script that adds an menu-option wich causes you to put in lost of effort to get a good scripter to make your menu compatible with others with doe the same?

That time is gone!!
With New Menu Items you can easily manage your menucommand-list and add ones of your own.
But what's more!?
Scripters can implent a function in their script so that you don't have to add their menu-items to your list...they'll appear on their own!

No more hard scripting, just a few clicks and New Menu Items is installed on your game.
Now you can add every script that modifies the menucommand-list that you want withouth the pain of letting them work to gether properly!


Features
v1.0
  • Simple menu-items management;
  • Make menu-disformer scripts compatible with each other in no time (follow the video-tutorial on how to get the correct information);
  • Easy implentation for scripters to make their scripts compatible with New Menu Items (look at the video how to do it);
  • The default menu-items are allready redesigned for the script!
v1.0.1
  • Bug fix: scripters add function moved from the ENGINE to the CONFIG part.
v1.0.2
  • The return_scene function is redefined, as well as the '$Menu_Items.new' creation for scripters.
v1.0.3
  • The '$Menu_Items.new' function can now also hold a string for the position. The new menu-item will be placed below the item with the string as name (for example,
    CODE
    $Menu_Items.new(Vocab::skill, "New Function", false, "p 'This is the new function!'")
    Will place the function with the name "New Function" below the menu-item with the name wich is equil to the System-vocabular of 'Skill').
  • You can now turn of the default return_scene fix in the engine (just below the warning). This can, for example, be usefull in combination with my 'The Lost Menu'-script.
v1.0.4
  • Fixed the return of the load screen.


To come features
- More if sugested...


Script
Attached File  New_Menu_Items_CONFIG.txt ( 3.51K ) Number of downloads: 601

Attached File  New_Menu_Items_ENGINE.txt ( 3.8K ) Number of downloads: 527



Video



Customization
  • The top part of the script, the CONFIG, allows you to control the menu-items and their functions. In this way you can easily add commands to the menu from other scripts wich change the scene-menu optionlist. This part should be at least above all other custom scripts. If not the script will cause errors or disfunctionality.
  • The bottom part, the ENGINE, should be pasted, just above "Main". No script should be put below, since it can cause problems or disfunctionality of the script.



Compatibility
VX only.
Can be used to make all scripts that modify the the menu-item list compatible with each other.


Installation
Put the CONFIG part of the script above all other custom scripts.
Put the ENGINE part of the script just above main and below all other scripts.
Configure the script if needed (when other scripts didn't implent the auto-add function for New Menu Items).
Credit me pls.


FAQ
Video's comming soon.


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 Jul 5 2009, 08:39 AM
Post #2


Level 51
Group Icon

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




Well actualy the video is allready done but a bit large...so I didn't manage to upload it yet.

Greatzzz,
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   New Menu Items   Jun 5 2009, 04:04 AM
- - pim321   I've done some updates... Check version 1.0.2...   Jun 7 2009, 12:22 AM
- - BioDioxyde   Hey Soja, I enjoy using your scripts, but this on...   Jun 7 2009, 03:36 AM
- - pim321   Hey, I'm not quite femiliar with KGC's sc...   Jun 7 2009, 03:45 AM
- - BioDioxyde   It's all good, thanks anyway. I just discovere...   Jun 7 2009, 05:20 AM
- - pim321   Well let's hope that you'll come back and ...   Jun 7 2009, 05:59 AM
- - Yanfly   Oh wow. =o You created one of these, too? Σ(゚Д...   Jun 7 2009, 06:10 AM
- - pim321   Yep... So whut ya think? Greatzz, SojaBird.   Jun 11 2009, 03:15 PM
- - Garlyle   I think I'd need a bit more info on how it wor...   Jun 11 2009, 06:05 PM
- - Octople Threat   Well I don't know... Yanfly's Custom Menu ...   Jun 11 2009, 06:14 PM
- - Yanfly   The nice thing about having different scripters cr...   Jun 11 2009, 06:38 PM
|- - Octople Threat   QUOTE (Yanfly @ Jun 11 2009, 06:38 PM) Th...   Jun 11 2009, 07:42 PM
- - pim321   Thanks for the feedback all. Well at first I want...   Jun 12 2009, 01:07 AM
|- - Octople Threat   QUOTE (pim321 @ Jun 12 2009, 02:07 AM) PP...   Jun 12 2009, 08:10 AM
- - baikanp   I think I found a bug here. When I start a game a...   Jun 12 2009, 06:00 AM
- - pim321   Yes you're right. I've posted an update (v...   Jun 12 2009, 06:55 AM
- - pim321   Oke so sorry for "Lie'ng"... But no...   Jun 14 2009, 02:41 PM
|- - Octople Threat   QUOTE (pim321 @ Jun 14 2009, 02:41 PM) Ok...   Jun 14 2009, 07:09 PM
- - pim321   Not sure... The engine part is like done I guess.....   Jun 15 2009, 04:48 AM
- - DanielRussell4   I need this but i can not get it to work, i need t...   Jul 5 2009, 06:45 AM
- - tarzanboy   Pl help here: www.rpgmakervx.net/index.php?showtop...   Jul 5 2009, 09:43 AM
- - pim321   I've got the video up and working now Enjoy t...   Jul 11 2009, 04:35 AM


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: 21st May 2013 - 11:35 PM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker