Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Eternal

1
I'm well aware I'm necroposting here, but I thought I'd just say that I cannot wait, and that I think it's hilariously awesome that you're making a 2k game. :up:
2
RMVX Script Database / Re: [VX] Skill Script
June 02, 2011, 09:09:46 pm
This looks interesting, and pretty advanced too, so I haven't taken a thorough look at the full capabilities (yet).
Still, it looks pretty cool, from what I understand so far.

I hope you will focus on making the script function perfectly before adding all the visual stuff. We can always add that with pictures in common events and animations ;).

So, try to focus on making it work both in and out of combat for the player first, and then look into making it work for enemy skills.
3
Aaaahh, so there is a good reason :D
4
I have a question. Why use your visual equipment instead of another one? I mean it seems like a great one, don't get me wrong, in fact it's the best I've ever seen, but why do we need to use this one if we're using Blizz-ABS? Why does it require Blizz-ABS? I trust you highly as a scripter, but why it this the only one working with Blizz-ABS?

I'd also like to say that it looks in every way perfect. You've done it again :P You should
5
Script Requests / Re: screenshot script for vx
February 14, 2010, 11:39:28 am
great :)
6
Note that this guide is still WIP. Feel free to ask or reply anything at all (except spam, I'd rather like to avoid spam...).

THE BIG FAT GUIDE ON CREATING A POKEMON GAME IN RPG MAKER XP!


Well, as I (again) came upon a website talking about HeartGold and SoulSilver, the Gold and Silver remakes for DS if you're unaware, I came to thinking about how much I loved playing Pokémon as a kid. See, my first game was Silver, and I really liked it even though my parents had to translate everything, since english isn't my first language. I beat the game easily and I could beat it again and again and still have fun. So when I saw the Soul Silver game, I thought about buying it. But then I thought about making it (or making a Pokémon game at least)! So I returned to the Pokémon Essentials Kit, and have been working a bit with it for a little while now, working on Amethyst and Jet Version, and I thought someone might've wanted a more or less complete tour of the system, and how to use it.

This guide is/will be divided into two parts, the first part about the system and the creating of the game itself, whilst the second part is about the creation of an original Pokémon game, including the name, new pokemon, a story etc. If you are already familiar with Poccil's Pokemon Essentials Kit then you can skip right to the second part. Still, you might find something useful in the first section as well.

PART I: THE SYSTEM

To start off, you'll want to go to the website: http://upokecenter.com/projects/pokestarter/

It's updated two or three times a month in general, so check back now and then.

So, extract the file (Do not choose "Extract To Here", but "Extract to /Pokestarter", since the files aren't stored in one folder), and take a look at what it contained; lots of crap.

Well it's not crap, but rather lots of files required for the lots of scripts. That's pretty much the only crappy part about it. You will only be using the database for animations, actors, common events, tilesets, and system, since most everything is done with the Editor.exe file.

Now, to make sure your game doesn't crash, don't mess with any of the text documents. As soon as you change anything (unless you're lucky if you ask me) in a text document both the Editor and the Editor.exe will crash. Or just one of them. Either way, if one of them crashes, you'll have to re-install the starterkit (install meaning extract).

Now the first thing you might want to do is to simply play the Game.app, to get a feel of the graphics and what you can accomplish in the game.
The starter kit includes a crappy gym, a crappy Pokémon Center, a few trainers, a pair of trainers working together (if you use them, the events need a slight configuration, since you can fight them twice...), reflecting water, surfable water, rock smash-able rocks, strength-able boulders, headbutt- and cutable trees, and a safari zone. Oh yeah, also PCs, door events, pokemarts, trainers joining you for co-op battles, online trading, the Battle Palace, the Battle Tower, and underwater area, an extremely crappy cave (not the tileset, the map), pokedex, pokegear (with radio and phone etc., which allows you to register beaten trainers for calling them later and fighting them another time), running shoes, hidden items, tall grass (wow...), taller grass, some weird minigame with cards, coin cases and slot machines (no examples though, so I have no idea how to use them, quite frankly :P)

So, open up the game.rpgxp and start creating your own map. You're sure to have fun, but you will actually have to edit the passability with the lower part of the tileset, since it's not set there.

More tilesets?

If you'd like some more tilesets and autotiles, a guy named Mortenkein has created some, and uploaded them here!
There's no passability on them, it's just the graphics, so you might have to spend some time on that. When I say some I mean a lot by the way.

TERRAIN TAGS!
They're used a bit in this system, and below is a "tabel":

Terrain Tag ::: What It Does
0                     Nothing
1                     Ledges
2                     On these you can encounter wild Pokémon
3                     This is for use on sand, but my Emerald got stolen long ago, so i dont remember what that does (help me out, anyone?)  
4                     Rocky ground (dont know what this means either, sorry :(
5                     Dive spot here
6                     Here, you're reflected
7                     Surf here

Those are the normal editor tags. The system, however, has 13 tags, though the last 6 are only possible to give to a tile through the Editor.exe.

8                    Waterfall
9                    Crest of waterfall (I think that's the top, but I'm too lazy to go look it up :P)
10                  Tall grass
11                  Underwater grass (For grass... underwater!)
12                  Ice (Slide around!)
13                  Neutral. These are for when you have a tile with a different terrain tag underneath. Use it on a bridge for example, so that the player can't surf under it)

That's sure to be useful! Remember to put in priorities as well, so that the player doesn't walk on top of Team Dumbass' HQ.


Code

This system needs lots of custom code, because apparently easy stuff wasn't good enough for Poccil. Note that some may need to be in a conditional branch. It is recommended that you find a pre-created event for adding items from a ball for example, to get an idea of how to use it.

Kernel.pbReceiveItem(::PBItems::POTION)

Receive an item from a person.

$PokemonBag.pbStoreItem(::PBItems::POTION)

The same as above, just newer. Which means it's better, right?

$PokemonBag.pbDeleteItem(
   PBItems::POTION
  )

That's how to delete and item.

5.times do
 $PokemonBag.pbStoreItem(
    PBItems::POKeBALL
 )
end

That's the old way of adding more items.

$PokemonBag.pbStoreItem(
    PBItems::POKeBALL, 5
)

That's the new way of adding more items.

Kernel.pbItemBall(::PBItems::POKeBALL)

When you find a ball in the wild, it has to have this code.

pbPokemonMart([
PBItems::POKeBALL,
PBItems::POTION,
PBItems::ANTIDOTE,
PBItems::TM20,
PBItems::TM21,
PBItems::TM22,
PBItems::ICEHEAL,
PBItems::REPEL,
PBItems::ESCAPEROPE])

The usual shop command wasn't badass enough for these guys. That's what a PokéMart event should look like. You might want to make the merchant say something beforehand though.

pbPokeCenterPC

So simple even I can remember it without looking for the test map in my project! It's the PC in Pokécenters!

Script: $PokemonGlobal.seenStorageCreator=true

Until this is called, it'll be "SOMEONE'S PC" you're accessing to store Pokémon. That would be Bill in Kanto and Johto, and Lanette in Ruby and Sapphire Hoeen, Brigette in Ruby Sapphire box, and an upgraded Lanette box in Emerald, FireRed, and LeafGreen, and finally Bebe's in Pearl, Diamond, and Platinum. Thanks to Bulbapedia.bulbapediagarden.net, the PkMn Wiki). I'll get back to you ASAP how to choose the creator of the storage system :P

pbTrainerPC

The trainer's home PC.

That was the boring stuff, now on to the slightly more advanced stuff!

Trainers! No game is complete without trainers and wild battles! Read on to learn how to... create a trainer, create a called wild pokemon battle, create a gym (only the technical stuff, the rest if for the next section), recieve pokemon from someone, lose your pokemon (perhaps your starter gets stolen by a Team Universe Grunt or something like that?), and maybe even more (read on to know if there's more!)!

The trainers in the kit are actually way more advanced than they need to be. All you have to do is set your event up like in these two screenshots:

[COMING WHEN IMAGESHACK DECIDES TO WORK]

In the conditional branch script:
pbTrainerBattle(PBTrainers::CAMPER,"Ted",_I("I guess I underestimated you..."),false,0)

The "I guess.." bla bla bla thing, is what the trainer says after the battle, if you're too lazy to do it through the editor.
The "0" I believe is used to identify trainers of the same types and name. So if you have two CAMPER Teds in the database, you will have to give them each a number in the editor.exe, and the number is what you should replace "0" with.


MORE WILL COME LATER. I WILL TRY TO GET IT FINISHED DURING THE WINTER HOLIDAYS.
7
RMXP Script Database / Re: [XP] Legacy Atlas Script
February 09, 2010, 04:49:02 am
very useful, I'm most definetely be using this :)
8
RPG Maker Scripts / Re: Heat Chain
February 09, 2010, 04:47:13 am
HOLY *********** ********* of a ************ *********** ***** **** with ***** ********* on a sandwich, that's amazing!! I am SOOOO using this!
9
Script Requests / Re: Reach level 100
February 09, 2010, 04:42:37 am
Great :)
10
BUMPELIBUMPED

I need this too, but no rush, bro (or sis. or both :huh:)
11
Script Requests / Re: Reach level 100
February 04, 2010, 11:44:37 am
great, cant wait  :^_^':
12
Script Requests / Re: Reach level 100
February 04, 2010, 10:46:14 am
blizz, sounds cool, but what if I got ambitious and wanted a sick level cap (for a god of war-ish game maybe?), would that be possible too...?
13
Script Requests / Re: [XP]{Simple}Hud
February 04, 2010, 10:24:45 am
yeah i was gonna say it was only one person who'd voted, but i'd like it for me to look like i had found an extremely uhmazing script lol xD
14
Script Requests / Re: screenshot script for vx
February 03, 2010, 08:13:07 am
Depends of if you plan on Alt+PrtSc or press an in-game key I guess. If in-game, I believe the Screenshot.dll is needed, plus a script...
15
Script Requests / Re: [XP]{Simple}Hud
February 03, 2010, 08:09:59 am
All credit goes to Raziel. It was posted here and it's gotten 5/5 stars.
Quote from: RazielIntroduction

A short script I did when I was bored.

Features

Turn the Hud on and off by using a switch.
Includes HP, SP, Exp and gradient bars.
The feature to center the HUD.
Now Lag and Bug free

Instructions

Turn the HUD on/off by using a switch. Turn the HUD off, turn the switch to off, to turn the HUD on, change the switch to on. The default switch is 1. To change it, just change the 1 in SWITCH_ID = 1 to the number of the switch you want to use.
To center the HUD just turn Center_hud to true. Turn it off when you don't want to center the HUD.

Credits and Thanks

Thanks and credits to SephirothSpawn for the gradient bars. Thanks to Trickster for pushing me to update it. (I did it, are you happy now?

Authors Notes

Enjoy.

Spoiler: ShowHide
#==============================================================================
# ** Hud Menu
#==============================================================================
# Raziel
# Version 2.0
# 2007-08-18
#------------------------------------------------------------------------------
#===============================================================================

# * Module Raz_Hud
#===============================================================================


module Raz_Hud
#switch to show/hide the hud
SWITCH_ID = 1
#set it to true to center the hud if there are less than four party members
Center_hud = true
end
#==============================================================================
# ** Scene_Map
#------------------------------------------------------------------------------
#  This class performs map screen processing.
#==============================================================================

class Scene_Map
#----------------------------------------------------------------------------
# * Alias Listings
#----------------------------------------------------------------------------
alias raz_hud_main main
alias raz_hud_update update
#--------------------------------------------------------------------------
# * Main Processing
#--------------------------------------------------------------------------
def main
   @hud_dummy = []
   for i in 0...$game_party.actors.size
     @hud_dummy[i] = Window_Dummy.new(i)
   end
   @hud_window = Window_HUD.new
   raz_hud_main
   @hud_window.dispose
   @hud_dummy.each { |hud| hud.dispose }
end
#--------------------------------------------------------------------------
# * Frame Update
#--------------------------------------------------------------------------
def update
   @hud_dummy.each {|hud| hud.visible = $game_switches[Raz_Hud::SWITCH_ID]}
   if @hud_dummy[$game_party.actors.size] != nil
     @hud_dummy.each{|hud| hud.dispose}
     @hud_dummy = []
     for i in 0...$game_party.actors.size
       @hud_dummy[i] = Window_Dummy.new(i)
     end
   end
   @hud_window.update
   raz_hud_update
end
end
#===============================================================================

# * Window_HUD
#===============================================================================


class Window_HUD < Window_Base
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
def initialize
   super(0, 0, 800, 600)
   self.contents = Bitmap.new(width - 32, height - 32)
   self.opacity = 0
   self.visible = $game_switches[Raz_Hud::SWITCH_ID]
   refresh
end
#--------------------------------------------------------------------------
# * Refresh
#--------------------------------------------------------------------------
def refresh
   self.contents.clear
   @old_hp, @old_sp, @old_exp, @old_size = [],[],[],$game_party.actors.size
   for actor in $game_party.actors
     @old_hp << actor.hp; @old_sp << actor.sp; @old_exp << actor.exp
     a = $game_party.actors.size - 1
     center = Raz_Hud::Center_hud == true ? (240 - (a * 80)) : 0
     x = ($game_party.actors.index(actor) * 160 + 25) + center
     self.contents.font.size = 21
     draw_actor_graphic(actor, x - 15, 445)
     self.contents.font.color = normal_color
     self.contents.draw_text(x - 25, 360, 100, 32, actor.name)
     draw_slant_bar(x + 8, 396, actor.hp, actor.maxhp, 100, 6)
     draw_slant_bar(x + 8, 416, actor.sp, actor.maxsp, 100, 6, Color.new(0, 0, 150), Color.new(60, 155, 155))
     now_exp = actor.level == 99 ? 1 : actor.now_exp
     next_exp = actor.level == 99 ? 1 : actor.next_exp
     draw_slant_bar(x + 8, 436, now_exp, next_exp, 100, 6, Color.new(0, 150, 0), Color.new(60, 255, 60))
     self.contents.font.size = 16
     draw_actor_state(actor, x + 45, 360)
     self.contents.font.color = normal_color
     self.contents.font.bold = true
     self.contents.font.color = actor.hp == 0 ? knockout_color : actor.hp <= actor.maxhp / 4 ? crisis_color : normal_color
     self.contents.draw_text(x + 16, 382, 100, 32, "#{actor.hp}/#{actor.maxhp}", 1)
     self.contents.font.color = actor.sp == 0 ? crisis_color : actor.sp <= actor.maxsp / 4 ? crisis_color : normal_color
     self.contents.draw_text(x + 16, 402, 100, 32, "#{actor.sp}/#{actor.maxsp}", 1)
     self.contents.font.color = system_color
     self.contents.font.size = 20
     self.contents.font.bold = false
     self.contents.draw_text(x, 384, 50, 32, $data_system.words.hp)
     self.contents.draw_text(x, 404, 50, 32, $data_system.words.sp)
     self.contents.draw_text(x, 424, 50, 32, "Exp")
   end
end
#--------------------------------------------------------------------------
# * Frame Update
#--------------------------------------------------------------------------
def update
   refresh if @old_size != $game_party.actors.size
   @old_hp.each_with_index {|hp, index| refresh if hp != $game_party.actors[index].hp}   
   @old_sp.each_with_index {|sp, index| refresh if sp != $game_party.actors[index].sp}   
   @old_exp.each_with_index {|exp, index| refresh if exp != $game_party.actors[index].exp}
   self.visible = $game_switches[Raz_Hud::SWITCH_ID]
end
end
#===============================================================================

# * Window_Dummy
#===============================================================================


class Window_Dummy < Window_Base
#--------------------------------------------------------------------------
# * Object Initialization
#   size: Party's size
#--------------------------------------------------------------------------
def initialize(size)
   @old_size = $game_party.actors.size
   x = Raz_Hud::Center_hud == true ? 240 - ($game_party.actors.size - 1) * 80 : 0
   super(160 * size + x, 372,160, 108)
   self.visible = $game_switches[Raz_Hud::SWITCH_ID]
   self.opacity = 200
end
end
#==============================================================================
# ** Window_Base
#------------------------------------------------------------------------------
#  This class is for all in-game windows.
#==============================================================================

class Window_Base < Window
#--------------------------------------------------------------------------
# * Draw Slant Bar (by SephirothSpawn)
#--------------------------------------------------------------------------
def draw_slant_bar(x, y, min, max, width = 152, height = 6,
bar_color = Color.new(150, 0, 0, 255), end_color = Color.new(255, 255, 60, 255))
   for i in 0..height
     self.contents.fill_rect(x + i, y + height - i, width + 1, 1, Color.new(50, 50, 50, 255))
   end
   for i in 1..(height - 1)
     r = 100 * (height - i) / height + 0 * i / height
     g = 100 * (height - i) / height + 0 * i / height
     b = 100 * (height - i) / height + 0 * i / height
     a = 255 * (height - i) / height + 255 * i / height
     self.contents.fill_rect(x + i, y + height - i, width, 1, Color.new(r, b, g, a))
   end
   for i in 1..( (min / max.to_f) * width - 1)
     for j in 1..(height - 1)
       r = bar_color.red * (width - i) / width + end_color.red * i / width
       g = bar_color.green * (width - i) / width + end_color.green * i / width
       b = bar_color.blue * (width - i) / width + end_color.blue * i / width
       a = bar_color.alpha * (width - i) / width + end_color.alpha * i / width
       self.contents.fill_rect(x + i + j, y + height - j, 1, 1, Color.new(r, g, b, a))
     end
   end
end
end
#==============================================================================
# ** Game_Actor
#------------------------------------------------------------------------------
#  This class handles the actor. It's used within the Game_Actors class
#  ($game_actors) and refers to the Game_Party class ($game_party).
#==============================================================================

class Game_Actor
#--------------------------------------------------------------------------
# * Now Exp
#--------------------------------------------------------------------------
def now_exp
   return @exp - @exp_list[@level]
end
#--------------------------------------------------------------------------
# * Next Exp
#--------------------------------------------------------------------------
def next_exp
   return @exp_list[@level+1] > 0 ? @exp_list[@level+1] - @exp_list[@level] : 0
end
end
16
Script Requests / Re: screenshot script for vx
February 03, 2010, 07:58:39 am
I'm 99% sure I've seen that, I'll have a look around the net.
17
RMXP Script Database / Re: [XP] Character Races
February 03, 2010, 04:02:07 am
 8-O
18
RMXP Script Database / Re: [XP] Custom Blizz-ABS HUD
February 02, 2010, 04:20:24 am
well expect this to be in pretty much all of my blizz abs games from now on.

kinda embarrasing i didn't notice it earlier actually..
19
RMXP Script Database / Re: [XP] Skill Equipment System
February 02, 2010, 04:18:47 am
Well, im using it anyway :P
20
RMXP Script Database / Re: [XP] Character Races
February 02, 2010, 04:17:31 am
@faint aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhh. +@game_guy not too stupid actually...