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 - G_G

6181
Resource Database / Re: Some of My resources
August 15, 2008, 12:38:10 am
I'm not giving up, its just I want to see if anybody can do it better is all. Then I can improve on that. Thats how I improve I look at other people's work and see how they do it. Then I learn from it and I turn out better, but great idea on looking at the Fire Elemental never thought of it and shes even in the cutscene where they fuse. Yea I'm just saying I look at other people's work and use it to make me better. Yea look forward to better results tomorrow, because I have a date with Aron, the Fire Elemental and a few cups a coffee.  :beer:
Oh and Derek should as well be done with Fire Haired Aron tomorrow, I need to make a few more shades of grey and it should turn out good.
6182
Resource Database / Re: Some of My resources
August 14, 2008, 02:54:52 pm
Ooooh O.o thats what it means. It makes sense now! I am smarticle ^_^! Wait thats a word right? Oh well it is in my language now :evil:

Oh anyways here is Aron with Fire Hair, Do take note I was never good with fire so if you can edit and make it better please do and post the results. In my project Aron gets fused with this summon Ifra as well as other members with other summons but they are taken care of. Ok here is Aron with fire hair woot  :dance: and  :clap:


Oh just to give in image of myself this is me  :gunz: well i wish anyway lol  :rofl: this is me most of the time when I don't take my medication. I am part phsycho so....>.>
6183
Resource Database / Re: Some of My resources
August 14, 2008, 12:34:28 pm
Frankenspriting? Whats that?????? Sorry I  don't understand fancy terms like that >.> anything I understand is either my own language I made up or things that don't sound fancy >.<

But I'm guessing you're complimenting me so thank you, and the sprites are free to use I just want credit is all for editing them and mixing them together. Oh and my new Aron with Fire Hair is done, I'll post it in a few minutes!!!
6184
Yes most recent and all in order. Here is the error message

Script 'Add-Ons 3' line 1327: No method error ocurred
undefined method 'size'for nil:Nilclass

and here is the script line under the add ons


     if ids.size > 0 <= line 1327
          skill = $data_skills[ids[rand(ids.size)]]
          if battler.skills.include?(skill.id)
            target.damage
          else
            battler.learn_skill(skill.id)
            target.damage = "New Skill"
          end
        else
          target.damage = 'Miss'
        end
      else
        target.damage = 'Miss'
      end
    end
  end
   
end
6185
I have the scripts the order they are in but when I go into battle and I use the Blue Skill it causes an error and when I take out the reflect it works fine. Any idead?
6186
Resource Database / Some of My resources
August 13, 2008, 05:17:31 pm
OK these are my main characters in my game. The game will be posted here soon as soon as I fix a few bugs.

Aron
Spoiler: ShowHide






Lisa
Spoiler: ShowHide




Brandon
Spoiler: ShowHide




Ronnie
Spoiler: ShowHide




Derek
Spoiler: ShowHide


Character Set in progress


These are edited by me, most resources are from enterbrain and then there were some templates I used.
EDIT::Sorry blizzard I didn't mean to crowd up you're forum. Oh and I cant get Fire Haired Aron on this post this moment because I have to go to doctor's for my monthly check up. I will change it ASAP however. Sorry
EDIT EDIT:::::::I added Fire Haired Aron back at first post. And Derek's character set should be ready to post tomorrow just got to add finishing touches to his hair is all.
6187
Event Systems / Re: Hold Shift to Run
August 13, 2008, 05:06:17 pm
I guess you're right and thank you. I will start posting some detailed instructions and what each command does next time.
6188
Event Systems / Bank System with Interest
August 13, 2008, 05:03:55 pm
Ok here is a bank system made by me with interest every 150 frames.

First make these 3 variables, [xxxx:Current Money] [xxxx:Bank Money] [xxxx:Input]
Now make a guy who is the banker and enter this

VarOper:[xxxx:Current Money] set = Current Gold
Hello Sir how may I help you?
ShowChoicesDeposit/Withdraw/Nothing
Deposit Handler
InputNumber[xxxx:Input]
Branch if [xxxx:Input] greater than[xxxx:Current Money]
  Sorry you dont have that much money
Else
  VarOper[xxxx:Bank Money] set = [xxxx:Input]'s Value
  Change Money Decrease by [xxxx:Input]'s value
  VarOper[xxxx:Input] set = 0
End
Withdraw Handler
InputNumber[xxxx:Input]
Branch if [xxxx:Input] greater than [xxxx:Bank Money]
  Sorry you don't have that much in your account.
Else
  VarOper[xxxx:Bank Money] minus - [xxxx:Input]'s valuej
  Change Money Increase by [xxxx:Input]'s Value
  VarOper[xxxx:Input] set = 0
End
Nothing Handler


Ok so theres the withdraw/deposit part, now into the interest, go to common events and make this

Label 1
Wait 150 Frames
Branch if [xxxx:Bank Money] = 0
Jump to Label 1
Else
VarOper[xxxx:Bank Money] add + 10
Jump to Label 1
End

Note there is alot more that can be done like in the else have a branch if Bank Money greater than 100
then VarOper add 25 to bank money. I hope you get the point but I hope you like it!
6189
Event Systems / Hold Shift to Run
August 13, 2008, 04:47:34 pm
Ok this was an easy tutorial and thoughtI'd share it. On the Map or in Common events make the event parallel and enter this

Loop
Label 1
Wait 1 Frame
Branch if A Button is Held
Branch if Var[xxxx:Run] = 0
   Move Event Player:Set Speed 5
   VarOper:[xxxx:Run] set = 0
   Jump to Label 1
  Else
   Jump to Label 1
End
Else
Branch if Var[xxxx:Run] = 1
   Move Event Player:Set Speed 4
   VarOper[xxxx:Run] set = 0
   Jump to Label 1
Else
   Jump to Label 1
End
End

I don't know if alot of you know this but I decided to post anyways as my first post! :)