Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

13 Pages V  « < 9 10 11 12 13 >  
Reply to this topicStart new topic
> Game Engine - Visual RPG Studio, Free 30 day trial
Klokinator
post Jan 14 2011, 10:33 PM
Post #201


IM THE BET MEMEBER ON RRR
Group Icon

Group: Revolutionary
Posts: 1,394
Type: Developer
RM Skill: Advanced




This is the first I've heard of this game maker. I can't believe I missed out on something like this for so long, but I took the time to read EVERY SINGLE POST in this thread. Took me around 30-50 minutes.

I don't have any suggestions (Yet) as I haven't DL'd it. I will DL it though. I have a question that you're probably already answered somewhere, but I'll be more specific about it.

There's a guy who's making a really cool Fire Emblem game for RMXP (And yes it works and does not suck) and he'll release a kit for it within the next year, at which point I will be using it. However, for other people who are not specifically looking to make Fire Emblem games, but just turn based strategy games similiar to it, will it be possible to make those kind of games with your game maker? With or without scripting? (Or a limited amount if any)

In case you've never played it, Fire Emblem operates by moving around on a grid based map. (16x16 tiles) When the units attack, it cuts to a cutscene, and they fight. The motions are all preprogrammed, and the values such as damage and such are all based solely on unit Stats. (So pressing button while they attack won't affect the fighting in the slightest.) This is very similiar to Advance Wars, especially because both series were made by Intelligent Systems.

So is it possible?


__________________________
Want to be a part of the biggest new Fandom Game? Check out the already popular....
Fire Emblem: The Medallion of Hope
(Based on the semi-popular Ragefest 3 submission, Generic War!)

(Sorry, this game is currently on hiatus and possibly discontinued.)
Go to the top of the page
 
+Quote Post
   
JohnCoyne
post Jan 15 2011, 01:17 PM
Post #202


Level 2
Group Icon

Group: Member
Posts: 23
Type: Musician
RM Skill: Intermediate




It's free, I'm downloading. Can't see a reason not to, I guess.
Go to the top of the page
 
+Quote Post
   
lastend
post Jan 18 2011, 12:42 AM
Post #203


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




Yes turn based can be done with no problem using the visual interface editor.


Version 0.7.43 Beta

Updates

1. Added loading splash screen for when the application frist loads.
2. Updated Texture layout editor.
a.Animation Palette now shows tile IDs.
b. Animation Palette now shows frame IDs.
c. Backgouds has been updated to checkers.
d. Animation Preveiw now shows current frame.
e. Animation Preview now has play, pause, last, and next buttons.
f. Animation FPS max is now 30.
g. Animation Start cell is no longer zero based.
h. Added zoom in/out to preview area.


Bug Fixes

1. Fixed Texure Layout Editor animation mode timing.
2. Fixed reset board collision right-click menu optioon.
3. Fixed reset board right-click menu optioon.

Free Download


__________________________
Go to the top of the page
 
+Quote Post
   
lastend
post Jan 25 2011, 05:10 AM
Post #204


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful






Blackjack is being made from VRS blank template using 1 Visual Lua file and 1 Lua Card class. I will add a few more features to it later like Double, Rules, Credits, Better button art, and insurance.

You can find this demo under the LastEnd Games link at the top of the LastEnd.com website.

This post has been edited by lastend: Feb 9 2011, 02:10 AM


__________________________
Go to the top of the page
 
+Quote Post
   
Rukiri
post Jan 25 2011, 12:23 PM
Post #205


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

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




Will you be able to modify the map engine with lua for a Mode7 effect?
You might wanna update the XNA end as it's now in it's 4th release.


__________________________
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
   
lastend
post Jan 25 2011, 04:54 PM
Post #206


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




Does It still run on the newest XNA release?

Not sure what Mode 7 is; however yes Lua can have full control over the game board. Here is the properties the gameboard has so far. Its a wrapper class that bridges Lua to the gameboard (built-in).

CODE
GameboardClass = { }
function GameboardClass.create()
   local class = {}             -- our new object
   setmetatable(class,GameboardClass)  -- make handle lookup
   class.Clear = Gameboard_RegisterFunction("ClearBoard")
   class.GetTileSetFileName = Gameboard_RegisterFunction("GetTileSetFileName")
   class.GetTileSize = Gameboard_RegisterFunction("GetTileSize")
   class.SetBackground = Gameboard_RegisterFunction("SetBackground")
   class.ClearCollision = Gameboard_RegisterFunction("ClearCollision")
   class.SetBackground = Gameboard_RegisterFunction("SetBackground")
   class.GetTileTextureID = Gameboard_RegisterFunction("GetTileTextureID")
   class.SetTileTextureID = Gameboard_RegisterFunction("SetTileTextureID")
   class.GetTileCollision = Gameboard_RegisterFunction("GetTileCollision")
   class.SetTileCollision = Gameboard_RegisterFunction("SetTileCollision")     
   return class
end

Gameboard = GameboardClass.create()


__________________________
Go to the top of the page
 
+Quote Post
   
Rukiri
post Jan 25 2011, 05:49 PM
Post #207


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

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




http://en.wikipedia.org/wiki/Mode_7
This is mode 7.


__________________________
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
   
lastend
post Jan 29 2011, 07:14 AM
Post #208


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




Good read, but Nope no Mode 7. The engine will have 2D and 3D in version 2.0 making it a bit pointless.


__________________________
Go to the top of the page
 
+Quote Post
   
lastend
post Feb 25 2011, 03:22 PM
Post #209


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful






The Maze demo has gone beta. Check it out at LastEnd Games Download


__________________________
Go to the top of the page
 
+Quote Post
   
lastend
post Mar 1 2011, 03:59 AM
Post #210


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




I added a few starter tutorials [Check them out here]


__________________________
Go to the top of the page
 
+Quote Post
   
Shadyone
post Mar 1 2011, 03:53 PM
Post #211


K@w411ii~desudesu:3<(^^)>s@$uk3Kun$0h0T~.~kyaaaa
Group Icon

Group: Revolutionary
Posts: 1,211
Type: Developer
RM Skill: Beginner
Rev Points: 20




Would you say it is easier to make rpgs with this than RPG Maker VX?


__________________________







Speedtest



ISML 2012

ARENA 01: [Elucia de Lute Ima] Kasugano Sora
ARENA 02: Gasai Yuno [Aragaki Ayase]
ARENA 03: Irisviel von Einzbern [Abstained] Haruna
ARENA 04: Shimada Minami [Iwasawa Masami]
ARENA 05: [Nakagawa Kanon] Kirishima Shōko
ARENA 06: [Fear Kubrick] Himeji Mizuki
ARENA 07: [Eucliwood Hellscythe] Kanzaki H. Aria
ARENA 08: Gokō Ruri (Kuroneko) [Makise Kurisu]
ARENA 09: [Yui] Victorique de Blois
ARENA 10: [Shiomiya Shiori] Mine Riko
ARENA 11: Mikazuki Yozora [Sakura Kyōko]
ARENA 12: Charlotte Dunois [Abstained] Yuzuriha Inori
ARENA 13: [Akemi Homura] Tōwa Erio
ARENA 14: Hasegawa Kobato [Kuroi Mato]
ARENA 15: [Kōsaka Kirino] Kashiwazaki Sena
ARENA 16: [Tachibana Kanade] Nakamura Yuri
ARENA 17: Suzutsuki Kanade [Haqua du Lot Herminium]
ARENA 18: [Honma Meiko] Konoe Subaru
ARENA 19: [Nagato Yuki, Asakura Ryōko] Misaka Mikoto, Shirai Kuroko
ARENA 20: [Hiiragi Kagami] Shiina Mafuyu
ARENA 21: Ichinose Kotomi [Sanzen'in Nagi]
ARENA 22: [Last Order] Hirasawa Ui
ARENA 23: Shirai Kuroko [Izumi Konata]
ARENA 24: [Nymph] Ikaros
ARENA 25: Konjiki no Yami [Holo]
ARENA 26: [Nakano Azusa] Tōsaka Rin
ARENA 27: [Misaka Mikoto] Hirasawa Yui
ARENA 28: [Suzumiya Haruhi] Saber
ARENA 29: C.C. [Asahina Mikuru]
ARENA 30: [Sakagami Tomoyo] Index L. Prohibitorum
ARENA 31: Akiyama Mio [Oshino Shinobu]
ARENA 32: [Aisaka Taiga] Louise Vallière
ARENA 33: [Sengoku Nadeko] Katsura Hinagiku
ARENA 34: [Nagato Yuki] Senjōgahara Hitagi
ARENA 35: [Shana] Illyasviel von Einzbern
ARENA 36: Hecate [Fujibayashi Kyō]
ARENA 37: Kotobuki Tsumugi [Furukawa Nagisa]
ARENA 38: [Kamina, Yoko Littner] Natsu Dragneel, Lisanna Strauss
Go to the top of the page
 
+Quote Post
   
lastend
post Mar 10 2011, 09:11 PM
Post #212


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




Unlike RPG Maker VX this game engine is dynamicly forever changing based off of user input. So I would say yes, but give it a try yourself and let me know what you think.. It's beta so everything is subject to change, and the editor get easier to uses with each beta release.

This post has been edited by lastend: Mar 10 2011, 09:21 PM


__________________________
Go to the top of the page
 
+Quote Post
   
Zakerot
post Mar 11 2011, 05:27 PM
Post #213


Level 15
Group Icon

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




Ok, so I downloaded this but before I'm done with any installation I want to ask you something.

Will I be able to make a game even if the maker is still in its beta state? (Not that I'm planning to, I just feel like I should ask)

Are you planing to add "Spanish Language Support"? I checked on your forums and I saw Chinese, Japanese, Italian and German but no Spanish, if you don't have anyone to help you with Spanish I offer my help, just send me a PM.

I'm sure I'll ask you some more questions when I try this. Keep up the good work if this is really going to be this great I'll be buying a copy as soon as a full version is released.

EDIT: Ok dude when I try to run the program this error pops up.


I'm using Windows 7 and I downloaded Microsoft XNA from your site.

This post has been edited by Zakerot: Mar 11 2011, 05:58 PM
Go to the top of the page
 
+Quote Post
   
lastend
post Mar 20 2011, 01:07 AM
Post #214


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




Thank you for letting us know about this problem. I been running tests to try to simulate this error with no luck. Try the current version 0.7.64 Beta and let me know what the error dialog says. It will give a bit more detailed of whats going.

QUOTE
Ok, so I downloaded this but before I'm done with any installation I want to ask you something.

Will I be able to make a game even if the maker is still in its beta state? (Not that I'm planning to, I just feel like I should ask)

Yes you can release your game on Beta.

QUOTE
Are you planing to add "Spanish Language Support"? I checked on your forums and I saw Chinese, Japanese, Italian and German but no Spanish, if you don't have anyone to help you with Spanish I offer my help, just send me a PM.

I am looking to add all major languages.

This post has been edited by lastend: Mar 20 2011, 01:22 AM


__________________________
Go to the top of the page
 
+Quote Post
   
Zakerot
post Mar 20 2011, 07:04 AM
Post #215


Level 15
Group Icon

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




QUOTE (lastend @ Mar 20 2011, 05:07 AM) *
Thank you for letting us know about this problem. I been running tests to try to simulate this error with no luck. Try the current version 0.7.64 Beta and let me know what the error dialog says. It will give a bit more detailed of whats going.

Sure.



The first sentence changed, I hope it helps you out.
Go to the top of the page
 
+Quote Post
   
lastend
post Mar 20 2011, 09:34 PM
Post #216


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




Removed text

This post has been edited by lastend: Mar 23 2011, 02:26 AM


__________________________
Go to the top of the page
 
+Quote Post
   
lastend
post Mar 23 2011, 02:23 AM
Post #217


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




We updated the VRS project to uses Microsoft 4.0 .Net Framework. This will fix your problems running VRS, and its on the site ready for download.


__________________________
Go to the top of the page
 
+Quote Post
   
Zakerot
post Mar 23 2011, 07:06 AM
Post #218


Level 15
Group Icon

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




I downloaded .NET framework 4 and the VRS again but I still get this error:

Go to the top of the page
 
+Quote Post
   
lastend
post Mar 23 2011, 05:32 PM
Post #219


Level 11
Group Icon

Group: Revolutionary
Posts: 178
Type: Developer
RM Skill: Masterful




sad.gif Maybe time to upgrade VRS to DX10. the program uses DirectX 9.0 and it sould of worked with DirectX 10 I will look more into this problem and I hope I can simulate it; because once I do I can fix it in a matter of a few minutes.


__________________________
Go to the top of the page
 
+Quote Post
   
Zakerot
post Mar 23 2011, 06:12 PM
Post #220


Level 15
Group Icon

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




QUOTE (lastend @ Mar 23 2011, 09:32 PM) *
sad.gif Maybe time to upgrade VRS to DX10. the program uses DirectX 9.0 and it sould of worked with DirectX 10 I will look more into this problem and I hope I can simulate it; because once I do I can fix it in a matter of a few minutes.

Ok let me know once you upgrade VRS. I'll let you know of any errors I find, it's best to find them now before the full version is out.
Go to the top of the page
 
+Quote Post
   

13 Pages V  « < 9 10 11 12 13 >
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: 24th May 2013 - 02:54 AM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker