Foros DeCeMuLaDoReS

Retroceder   Foros DeCeMuLaDoReS > Diseño de Juegos > Juegos en general

Juegos en general Si el tema que buscas trata de diseño y la creación de juegos, este es tu foro

Respuesta
 
LinkBack Herramientas
  #1 (permalink)  
Antiguo 24-Aug-2007, 07:15
Avatar de democracy
democracy es realmente agradable democracy es realmente agradable democracy es realmente agradable democracy es realmente agradable democracy es realmente agradable
DC Avanzado
 
Fecha de Ingreso: 16-March-2007
Mensajes: 103
Posts agradecidos: 4
Agradecido 19 veces en 11 posts
Icon4 RPG Tool kit para que veas que no solo de RPG maker vive le hombre

Buenas a todos aca posteo algo que quizas sea de interes general, como muchos sabemos la poderosa y versatil herramienta RPG Maker (en todas sus versiones) nos ha ayudado a crear rpgs de una manera rapida y precisa pero bueno el programa en si ya no saca mas versiones ya que Eterbrain en el pasado amenazo a todas las webs dedicadas a su franquicia con bajar el programa de sus hots, bueno eso no es lo que nos importa porque simpre podremos bajar una copia de aqui o de algun p2p, sin embargo existen opciones y una de ellas es una opcion gratis y en constante actualización se trata de RPG tool Kit, un set de herramientas gratis para la creacion de rpg que hasta donde e investigado se ve bastante bien.

Info general:

Nombre RPG Tool Kit

Autor: ToolkitZone (Xavier)

Web:http://www.toolkitzone.com/

peso archivo 5,230kb

Introducción : (inglés)

The RPG Toolkit is a free, open source project delivering a simple, flexible and powerful tool for the creation of role-playing games on your personal computer.

The Toolkit has various easy to use tools that allow you to put together enemies, special moves and much more with a few clicks of the button.

With its own programming language, RPG Code, you can build unique and personalised game features that make your game stand out

F.A.Q. Del programa (en inglés)

Frequently Asked Questions

This is a collection of common questions on the Toolkit and game-making. Technical problems can be found separately in Technical Issues. If you can't find what you're looking for, then please post a question in the support forums at ToolkitZone. This list is under constant revision; feel free to submit your questions (with answers) in the same forums.
General

* Can I use the Toolkit to create an online game or MMORPG (massive, multiplayer online RPG)?
* Can I play/edit a Toolkit version 2 game with Toolkit version 3?

Editor

* I made a (insert object here) but it doesn't work!
* How do I make walking graphics for characters/items/enemies?
* How do I place more than one tile in an animation frame?
* How do I make an NPC walk around?
* How do I make a door that sends the player to another board?
* I've made a warp tile, but nothing happens when I walk on it!

RPGCode

* Is the TK2 * comment still valid?
* What's this I hear about not using branch?

Gameplay

* I've made a board and a player, but when I test-run my game, my player and/or board doesn't appear!
* My player moves really slowly; what's wrong?
* What's GameSpeed() for then, if it should be set at zero?

Open Source and Development

* Where can I download the source code?
* May I sell my game made with Toolkit 3?

Technical Issues
General
Can I use the Toolkit to create an online game or MMORPG (massive, multiplayer online RPG)?

Generally speaking, no. Technically it is possible through plugins, but it has not yet been achieved. More information can be found in a TKZ article here.
Can I play/edit a Toolkit version 2 game with Toolkit version 3?

Yes—although you may have to edit some parts of your programs and remake some of your game files.

To start, copy your game files from your Toolkit2Game folder to the Toolkit3Game and the main game file from Toolkit2Main to Toolkit3Main—make sure you keep a copy of the old files in case anything goes wrong. As a precaution, open your game files in the TK3 editor and resave them to convert their format to TK3; specifically for character, item, board and animation files (tiles and programs do not require conversion). You may find in the case of characters and items you need to reconstruct the file completely.

With your programs, you will find that some commands have been removed or upgraded for TK3—watch for the debugger when testing them for information on upgrading.
Editor
I made a (insert object here) but it doesn't work!

This is quite a common complaint, and a lot of the time it's due to the object not being saved before test-running the game. Try hitting "Save All" in the toolbar before testing. It might not always be the case though! Of course, you should consult the relevant editor help page too.
How do I make walking graphics for characters/items/enemies?

In TK3, movement graphics have to be created using Animations (*.anm). One animation has to be created for each direction (that you want the player/item to move in) or action. To make an animation, load its editor and click the white box to add an image for the first frame. Use the toolbar buttons to add more frames.
How do I place more than one tile in an animation frame?

Each frame can only hold one "image", so you need to make an image out of the tiles you want in the frame—a Tile Bitmap. To make a tile bitmap (*.tbm), load its editor and resize the image to the required dimensions. Then add tiles to it as you would the board editor. Tile bitmaps can be selected as images for animation frames.
How do I make an NPC walk around?

In Tk3, an NPC (non-player character) is an Item with walking graphics. After creating and animating the NPC, check the "Board Driven" option to let this item be active on a board and click the corresponding "Edit". For "Program to run while item is on board" select "wander.prg" for basic wandering, or you can write a more complex routine using the PushItem() command and a loop. Then place the item on a board (RPGCode > Set Item in the board editor).
How do I make a door that sends the player to another board?

As well as directional links, players can also move between boards using Warp Tiles (and the Send() command). To make a door, first make the origin and target boards (e.g., the outside and inside areas of a house) and remember the location where you want the player to appear (x, y and layer). On the origin board, go to RPGCode > Set Warp Tile and click the tile on the board that corresponds to the door, then fill out the details of the target location in the window that appears. Note that this is only a "one-way" connection and you must add another Warp Tile if you want the door to work in reverse.
I've made a warp tile, but nothing happens when I walk on it!

There are several possibilities:

* Check you saved the board before testing.
* Check that the target board exists and the details were typed in correctly.
* Check that the Warp Tile has been set on the same layer that the player is walking on.
* If your player appears at the edge or corner of a board, check the target coordinates of the warp tile (warp tiles are just standard programs of the form warpxxx.prg where xxx is a number)

RPGCode
Is the TK2 * comment still valid?

To a degree.

The comment used in TK1–2, *, was picked by Christopher B. Matthews when long term development was not a consideration. It managed to stay throughout all TK2 releases because of that version's simple line-by-line RPGCode parser. With the introduction of a much more elaborate, less restrictive, parser in recent TK3 releases, the *, due to it being the multiplication operator, can no longer be successfully understood as well as in TK2. For whole-line comments, it will continue to function in the foreseeable future, but we recommend consistent usage of the far superior // comment.
What's this I hear about not using branch?

Because branch performs an unconditional jump to what could possibly be a whole other area of a program, it creates illogical, unreadable, and unmaintainable code. It is generally regarded as a very poor programming practice, and is never required in favour of more friendly language features (e.g., while loops). A more detailed answer can be found in the famous essay Go To Statement Considered Harmful, by Edsger W. Dijkstra.
Gameplay
I've made a board and a player, but when I test-run my game, my player and/or board doesn't appear!

Make sure you've set the "Initial Board File" and "Initial Character File" options in the Main File Editor, you've given your player graphics and you've set a starting location for the player to appear at, through Board Settings > Set Player Position in the Board Editor.
My player moves really slowly; what's wrong?

Player speeds are dependent on a number of factors. Firstly, as of 3.0.5 all players and items can have individual speeds assigned to them in the Graphics window of their editors. The value here is a delay, in seconds, rather than a speed so lower numbers correspond to faster movement. A value of between 0.05 and 0.2 is recommended, but you can set any value you wish.

This is an absolute value and the Toolkit will endeavour to move the object as this speed on all machines. However, it may be the case that your pc is unable to match this speed, in which case it will run them as close to it as possible. A way to gauge the performance of your pc is through the frames-per-second rate (fps) of the engine. This can be seen in windowed mode by enabling the option in the graphics tab of the Main File Editor. A low fps (< 20) is indicative of the pc running at maximum capacity.

One other option that you may be tempted to use is GameSpeed(), and its main file option. One cause of slow movement may be the fact this is set to a low value; set it at zero for unaffected gameplay. If your pc is running at capacity, increasing GameSpeed() won't have any effect on movement.
What's GameSpeed() for then, if it should be set at zero?

The idea of GameSpeed() is that it gives the players a mechanism for altering the speed of your game. For instance, you could create a menu option with a graphic slider, or a run-time program with associated keys to increase or decrease the setting.
Open Source and Development
Where can I download the source code?

The SourceForge page, sourceforge.net/projects/rpgtoolkit, contains the latest official sources. The current development source can be found here.
May I sell my game made with Toolkit 3?

You are free to sell games you make in the RPG Toolkit (Version 3.0.x). You must, however, give credit for the use of the RPG Toolkit itself. You must either own all resources used in your game or have full permission from the author of the resources to use them in a commercial product.

Espero les sea útil.
Responder Citando
  #2 (permalink)  
Antiguo 26-Aug-2007, 03:08
Avatar de Gifxio
Gifxio es un glorioso faro de luz Gifxio es un glorioso faro de luz Gifxio es un glorioso faro de luz Gifxio es un glorioso faro de luz Gifxio es un glorioso faro de luz Gifxio es un glorioso faro de luz
DC Adicto
 
Fecha de Ingreso: 10-August-2007
Ubicación: Aqui...Pedazo de user xD...
Mensajes: 124
Posts agradecidos: 1
Agradecido 19 veces en 13 posts
Icon3 Re: RPG Tool kit para que veas que no solo de RPG maker vive le hombre

Traducire(Yo,no con un traductor),la introduccion,para que puedan entender un poco mas
Spoiler para Traduccion:
Cita:
Iniciado por Introducción : (inglés)
The RPG Toolkit is a free, open source project delivering a simple, flexible and powerful tool for the creation of role-playing games on your personal computer.

The Toolkit has various easy to use tools that allow you to put together enemies, special moves and much more with a few clicks of the button.

With its own programming language, RPG Code, you can build unique and personalised game features that make your game stand out
El Rpg ToolKit es un proyecto de codigo abierto,gratis,flexible y poderoso para la creacion de juegos de rol en tu compurtador personal.

Las Herramientas del Toolkit son faciles de usar,para poner enemigos,movimientos especiales y muchas cosas mas en pocos clicks en el boton.

Con este lenguaje de programacion,Codigo Rpg,Puedes construir y personalizar caracteristicos juegos que esten fuera de serie.

Nota:Hice coincidir los parrafos con los colores
Perdon por poner tantos colores en la traduccion
PD:si quieren la tradducion de la Faq,mandenme un Mp y asi edito...
__________________

Nadie es tan viejo para no poder vivir un dia mas,ni tan joven para no poder morir mañana.
...
Responder Citando
Respuesta


(0 miembros y 1 visitantes)
 
Herramientas

Normas de Publicación
No puedes crear nuevos temas
No puedes responder mensajes
No puedes subir archivos adjuntos
No puedes editar tus mensajes

Los Códigos BB están Activado
Las Caritas están Activado
[IMG] está Activado
El Código HTML está Desactivado
Trackbacks are Activado
Pingbacks are Activado
Refbacks are Activado

Ir al Foro

Temas Similares
Tema Autor Foro Respuestas Último mensaje
[OT] Que tipo de genero te gusta kawako Emulación en general 106 09-Apr-2011 11:44
[OT] Foro Pokemon (soluciones a los problemas más frecuentes) es3ado GBA, GBC Y GB 393 22-Feb-2011 16:06
Manual para ser un buen forero r-daddy Documentación 20 24-Jan-2008 07:17
duda de digimon world 2003 scisor PSX 5 20-Aug-2007 18:19
Rιηcóη dєl Juєgo Frox22 Juegos (On-line, Off-line) 0 05-Aug-2007 02:59


Torneo DC 2012
Torneo DC 2012

La franja horaria es GMT +1. Ahora son las 23:12.


Desarrollado por: vBulletin® Versión 3.8.2
Derechos de Autor ©2000 - 2012, Jelsoft Enterprises Ltd.
Traducido por mcloud de vBhispano.com
 

Content Relevant URLs by vBSEO 3.2.0