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 >  
Closed TopicStart new topic
> RPG Maker VXR, Calling all scipters! And those of you with good ideas!
Night5h4d3
post Oct 24 2010, 04:51 PM
Post #1


The past tense
Group Icon

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




Okay, so I was using RMVX the other day, and I really hate it's mapping system.. (among other things) And so the idea came to me, why can't I just use RMXP and throw in most if not all of the functions that VX has? Well VXR(VX-Retro) will be just that, you get RMXP's GUI with all the script-end functions of RPG Maker VX, maybe even more. Of course, most of these edits are pretty easy, but I didn't want to stop there, and that's where you guys come in.

Here is a list of features I've currently implemented, the ones in bold were originally VX only, and the others are completely new.
spoiler

Bitmap.gradient_fill_rect(x, y, width, height, color1, color2[, vertical])

Bitmap.gradient_fill_rect(rect, color1, color2[, vertical])

Bitmap.clear_rect(x, y, width, height)

Bitmap.clear_rect(rect)

Bitmap.draw_text(rect, str[, align])
If str is not a character string object, it will be converted to a character string using the to_s method before processing is performed.

Bitmap.text_size(str)
If str is not a character string object, it will be converted to a character string using the to_s method before processing is performed.

Graphics.wait(duration)

Graphics.fadeout(duration)

Graphics.fadein(duration)

Graphics.snap_to_bitmap
{This requires screenshot.dll}

Graphics.width

Graphics.height

Graphics.brightness =
{this changes the current brightness}

Graphics.brightness
{this returns the current brightness}

Sprite.width

Sprite.height


Win32.GET_HWND_W {returns the screen's current width}

Win32.GET_HWND_H {returns the screen's current height}

Win32.CENTER_X(w) {Get's the center screen's x position, w being the game screen's width; used when resizing the client area}

Win32.CENTER_Y(h) {Get's the screen's center y position, h being the game screen's height; used when resizing the client area}

And this is what I plan/hope to implement:
spoiler

Font.shadow

Font.default_shadow

Plane.viewport

Sprite.viewport

Sprite.wave_amp

Sprite.wave_length

Sprite.wave_speed

Sprite.wave_phase

Sprite.bush_opacity {Perhaps have this changeable by certain terrain tags, or manually}

Tilemap.viewport


Tilemap's max width/height {so that one tilemap can be used to cover screens larger than 640x480 instead of 2 or 3}

Viewport's max width/height {so that one viewport can be used to cover screens larger than 640x480 instead of 2 or 3}

window.viewport

window.openness


Help++ {With basic coding commands such as newline, font color, bold, italic, etc}

Concerning the system's window size, I plan on making it so that the window will conform the the screen's size and yet still
show enough data so that it's not too crowded/empty.

Array functionality {additions such as shuffling values within an array, etc}

While I plan on implementing alot of functionality into VXR, I do not intend on adding 'personal scripts' such as Mode7, or custom systems.
So basically, I'd like your thoughts and ideas if possible. If I decide to implement your idea then I will give you credit. Also, if you're a skilled RGSS(2)/Ruby scripter, I could use your help with this project.

Member Ideas:
1 thus far

Ambient Lighting submitted by: benbarrett
Vehicles return! submitted by: nichodo (will attempt)

Scripters:
spoiler
Just me

Credits thus-far:
spoiler
Enterbrain
Night5h4d3
Andreas21 (screenshot.dll)

Side Notes:
All rewrites will be directly into the existing scripts, so as to save space and avoid aliasing methods that may be used with custom scripts.


__________________________
Got 30 minutes? Then you've enough time to play this awesome game:

- potentially promising project page
- thanks holder
My growing space of user-bars:

about me:







I made the following!





Go to the top of the page
 
+Quote Post
   
benbarrett
post Oct 24 2010, 06:01 PM
Post #2


Level 3
Group Icon

Group: Member
Posts: 30
Type: Writer
RM Skill: Advanced




I think this is a good idea. One of the things I'd like to see implemented into such a project would be native lighting support. It would be nice to be able to add lighting effects to games without going after any extra scripts. It would definitely give games a little bit more of a professional look to them.

-Ben


__________________________

"Ask for some palm trees, or tales from the South Seas, and I just might turn your head." -Twelve Volt Man, Jimmy Buffett
Go to the top of the page
 
+Quote Post
   
Albino Parakeet
post Oct 24 2010, 06:03 PM
Post #3


faiusdhfugiahdfghadhgfudhgudfighfughfghadfugihadufihuighduighduf
Group Icon

Group: Revolutionary
Posts: 781
Type: None
RM Skill: Masterful




Not bad. I too despise RMVX's mapping system but would love to have its features on RMXP. I might use this if I ever get around to making a project.


__________________________

Harryb412's Best Buddy
Shady0ne's Little Tsunbird
Go to the top of the page
 
+Quote Post
   
heisenman
post Oct 24 2010, 06:38 PM
Post #4


Level 13
Group Icon

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




It's a very nice idea, but I don't think RMXP could emulate RMVX best feature, noteboxes.


__________________________
Complainers gonna complain
Go to the top of the page
 
+Quote Post
   
Night5h4d3
post Oct 24 2010, 07:08 PM
Post #5


The past tense
Group Icon

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




QUOTE
I think this is a good idea. One of the things I'd like to see implemented into such a project would be native lighting support. It would be nice to be able to add lighting effects to games without going after any extra scripts. It would definitely give games a little bit more of a professional look to them.

-Ben

I'll consider this, however, RMXP does have a 'set tone' feature, and supports fogs, usually people with enough skill can use these to create sufficient lighting, thanks for the idea. biggrin.gif

QUOTE
It's a very nice idea, but I don't think RMXP could emulate RMVX best feature, noteboxes.


That's true, but since they dont really affect the gameplay, using a script block that has been commented out accomplishes almost the same thing. tongue.gif


__________________________
Got 30 minutes? Then you've enough time to play this awesome game:

- potentially promising project page
- thanks holder
My growing space of user-bars:

about me:







I made the following!





Go to the top of the page
 
+Quote Post
   
heisenman
post Oct 24 2010, 07:48 PM
Post #6


Level 13
Group Icon

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




QUOTE
That's true, but since they dont really affect the gameplay, using a script block that has been commented out accomplishes almost the same thing.
They do, they offer an extremely customizable and unique outcome both visually and mechanically to skills, equipment, items, enemies behaviour, and general permissions/restrictions, but I admitt my scripting knowledge is laughable, so I don't know if the same result could be accomplished without them.


Still, I hope this project suceeds, I'd love to see VX functionalities with RMXP mapping system smile.gif


__________________________
Complainers gonna complain
Go to the top of the page
 
+Quote Post
   
joey101
post Oct 29 2010, 05:45 PM
Post #7


DeadlyWeapon6
Group Icon

Group: Revolutionary
Posts: 196
Type: Developer
RM Skill: Skilled




i agree the VX mapping sucks
anyway this would be cool to have....
yes and i hope it does suceeds


__________________________
Go to the top of the page
 
+Quote Post
   
MagitekElite
post Oct 29 2010, 07:00 PM
Post #8


Mystic Creations Leader
Group Icon

Group: Revolutionary
Posts: 1,138
Type: Writer
RM Skill: Skilled




I don't like VX's mapping either, so good idea!


__________________________

The Project Zelda Engine!

Support, Projects & More!

Vacant Sky -- truly the best game made with the RM game makers ever!
LoMatsul's RPGVX Spriting Tutorial! Great for "newbies".
Lits' Sprite Emporium!
Text Editor & Guard Watching Script by Night_Runner
Thunderstorm Engine!
Final Fantasy 6 Tileset Ripping
Black Moon (Prophecy)
Mystic Studio!
Legacy's Ruby/RGSS Tutorial
Save-Point (a RPG VX/XP Community!)
RPG Creation (Game Creation (all makers))
RM/RPG World Community


Final Fantasy VI: Esper Realm (since 2003)
Black Moon (Prophecy) [since 2004]
Secret Project (still under thought and construction) [New!]
----------

Want a awesome program to make sprites with? Try out GraphicGale! The best editor/graphic program for RPG Game Maker XP/VX use!
___________________________________________________________________________
VX char creator for females. | XP male/Female char creator.
VX char creator for males. | Ragnarok Online char creator | RMVXP Forums
| RPG VX Resources -- extremely good!
| RPG-Maker.fr find sprites of all things! | RPGCreation -- a great, new forum! | | ChaosProject








Go to the top of the page
 
+Quote Post
   
joey101
post Oct 30 2010, 04:16 AM
Post #9


DeadlyWeapon6
Group Icon

Group: Revolutionary
Posts: 196
Type: Developer
RM Skill: Skilled




mabye this system can have script packs so the creators go look
for scripts that other people made and add it to VXR


__________________________
Go to the top of the page
 
+Quote Post
   
Rukiri
post Oct 30 2010, 05:12 AM
Post #10


emerge -avt awesome! Wait... it brings me.... HERE?!
Group Icon

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




QUOTE (joey101 @ Oct 29 2010, 05:45 PM) *
i agree the VX mapping sucks
anyway this would be cool to have....
yes and i hope it does suceeds

Hanzo sure made good use of it laugh.gif


__________________________
Xeilsoft
- Follow your dreams to the very end..

Kits that I'm working on.
[Unity3D 4.0] LTTP/Minish Cap - I don't have time for custom gfx like what the pze folks are doing but I will try and work on some enhanced LTTP graphics.

Main PC
Core i7 3820 overclocked @ 4.8GHZ
Galaxy: Nvidia Geforce GTX 680 GDDR5 2GB
Asrock X79 Extreme9 w' creative sound
64GB corsair platinum @ 1600MHZ
Muchkin 128GB SSD(boot), OZKIN 2TB SSD, Western Digital GREEN 1TB HDD.
Rosewill Lightning 1000W PSU
OS: Funtoo Linux, Windows 8 (Virtual Machine)

iMac (March 2013)
3.4GHz Quad-core Intel Core i7, Turbo Boost up to 3.9GHz
16GB 1600MHz DDR3 SDRAM - 2X8GB
1TB Serial ATA Drive @ 7200 rpm
NVIDIA GeForce GTX 680MX 2GB GDDR5
Go to the top of the page
 
+Quote Post
   
Night5h4d3
post Oct 30 2010, 08:20 AM
Post #11


The past tense
Group Icon

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




QUOTE (joey101 @ Oct 30 2010, 08:16 AM) *
mabye this system can have script packs so the creators go look
for scripts that other people made and add it to VXR

Not sure what you mean but I think it's a good idea, could you elaborate?


__________________________
Got 30 minutes? Then you've enough time to play this awesome game:

- potentially promising project page
- thanks holder
My growing space of user-bars:

about me:







I made the following!





Go to the top of the page
 
+Quote Post
   
Legacy
post Nov 1 2010, 07:58 AM
Post #12


B★RS Coding Ninja
Group Icon

Group: Global Mod
Posts: 1,414
Type: Scripter
RM Skill: Advanced
Rev Points: 15




If you need another scripter, let me know happy.gif


__________________________
Freelance Programmer (C#, C++, Ruby)
#onegameamonth


Have you seen the new Unity3D sections?..
Unity 3D Discussion
Unity Script Development
Unity Projects
Go to the top of the page
 
+Quote Post
   
Night5h4d3
post Nov 1 2010, 11:02 AM
Post #13


The past tense
Group Icon

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




QUOTE (Legacy @ Nov 1 2010, 11:58 AM) *
If you need another scripter, let me know happy.gif

The more the merrier, in a week or so I'll upload the project so the scripters can work with the VXR environment. smile.gif


__________________________
Got 30 minutes? Then you've enough time to play this awesome game:

- potentially promising project page
- thanks holder
My growing space of user-bars:

about me:







I made the following!





Go to the top of the page
 
+Quote Post
   
joey101
post Nov 11 2010, 05:00 PM
Post #14


DeadlyWeapon6
Group Icon

Group: Revolutionary
Posts: 196
Type: Developer
RM Skill: Skilled




QUOTE (Night5h4d3 @ Oct 30 2010, 08:20 AM) *
QUOTE (joey101 @ Oct 30 2010, 08:16 AM) *
mabye this system can have script packs so the creators go look
for scripts that other people made and add it to VXR

Not sure what you mean but I think it's a good idea, could you elaborate?

yea have'nt been on for a while dry.gif
what i mean is that you could make scrpits for VXR and when you download the program or sdk or whatever it is
it would come with the scripts in an ZIP. file
so lets say you download rpg maker xp there would be a zip file in the folder then the install file and all that
once you install it you extract the files and it has all these scripts
so for like XP
XAS
Blizz ABS
Blizz ABS online extension
Rice Feild CBS
then you can import them into your game so you dont have to look all over for some
plus you should use word press to make a blog for VXR

hoped that helped


__________________________
Go to the top of the page
 
+Quote Post
   
Night5h4d3
post Nov 12 2010, 05:37 AM
Post #15


The past tense
Group Icon

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




That does indeed sound interesting, however, VXR is only meant to be a .rxproj. No new flashy editor or sdk, but a pack of scripts that are only seen in RMVX, and a few others that RMXP could use. I'm not sure how I would implement that.. I could have the person place .rb files in the project folder and when they test a demo it auto imports them into the main scripts. How about that?

As for a blog, that's more promising, I'll see what I can do. My computer has been acting up lately and I almost lost my current progress on VXR, so it may be a while though.


__________________________
Got 30 minutes? Then you've enough time to play this awesome game:

- potentially promising project page
- thanks holder
My growing space of user-bars:

about me:







I made the following!





Go to the top of the page
 
+Quote Post
   
Legacy
post Nov 12 2010, 06:04 AM
Post #16


B★RS Coding Ninja
Group Icon

Group: Global Mod
Posts: 1,414
Type: Scripter
RM Skill: Advanced
Rev Points: 15




Night5h4d3, if you need a place for holding content and progress, let me know, i can set you up a private board over Legacy-studios which you can use if you like. Let me know if you want it happy.gif


__________________________
Freelance Programmer (C#, C++, Ruby)
#onegameamonth


Have you seen the new Unity3D sections?..
Unity 3D Discussion
Unity Script Development
Unity Projects
Go to the top of the page
 
+Quote Post
   
Night5h4d3
post Nov 12 2010, 08:22 AM
Post #17


The past tense
Group Icon

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




That'd be great regashi. I could use a place where the scripters on this project can plan and work, separate from a front-end place in which the projects can be released/discussions on additions be made.

Right now, unofficially we have myself, you, Kread-EX, and nightrunner willing to help out some on this project. 


__________________________
Got 30 minutes? Then you've enough time to play this awesome game:

- potentially promising project page
- thanks holder
My growing space of user-bars:

about me:







I made the following!





Go to the top of the page
 
+Quote Post
   
Legacy
post Nov 12 2010, 10:14 AM
Post #18


B★RS Coding Ninja
Group Icon

Group: Global Mod
Posts: 1,414
Type: Scripter
RM Skill: Advanced
Rev Points: 15




alrighty, well let me know when you want me to set up a place for you smile.gif


__________________________
Freelance Programmer (C#, C++, Ruby)
#onegameamonth


Have you seen the new Unity3D sections?..
Unity 3D Discussion
Unity Script Development
Unity Projects
Go to the top of the page
 
+Quote Post
   
joey101
post Nov 12 2010, 04:12 PM
Post #19


DeadlyWeapon6
Group Icon

Group: Revolutionary
Posts: 196
Type: Developer
RM Skill: Skilled




QUOTE (Night5h4d3 @ Nov 12 2010, 05:37 AM) *
That does indeed sound interesting, however, VXR is only meant to be a .rxproj. No new flashy editor or sdk, but a pack of scripts that are only seen in RMVX, and a few others that RMXP could use. I'm not sure how I would implement that.. I could have the person place .rb files in the project folder and when they test a demo it auto imports them into the main scripts. How about that?

As for a blog, that's more promising, I'll see what I can do. My computer has been acting up lately and I almost lost my current progress on VXR, so it may be a while though.

hey man i could do the blog but ill need a new wordpress account and you'll need to tell me the name of the blog and ill need the download for VXR when its out
otherwise good luck on this project


__________________________
Go to the top of the page
 
+Quote Post
   
joey101
post Nov 14 2010, 09:52 AM
Post #20


DeadlyWeapon6
Group Icon

Group: Revolutionary
Posts: 196
Type: Developer
RM Skill: Skilled




QUOTE (Rukiri @ Oct 30 2010, 06:12 AM) *
QUOTE (joey101 @ Oct 29 2010, 05:45 PM) *
i agree the VX mapping sucks
anyway this would be cool to have....
yes and i hope it does suceeds

Hanzo sure made good use of it laugh.gif

good for him


__________________________
Go to the top of the page
 
+Quote Post
   

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

 

Lo-Fi Version Time is now: 19th May 2013 - 03:39 PM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker