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

1
RMXP Script Database / Re: [XP] RMX-OS
September 01, 2014, 09:53:13 am
Ok i installed Ruby and mysql and it doesn't work, the server says "offline" What do I do?
2
Script Requests / Re: EXP level 1 max Change
August 28, 2014, 09:55:38 pm
it laggs the system
3
Script Requests / Re: EXP level 1 max Change
August 22, 2014, 10:46:15 am
It works thank you
4
Script Requests / Re: EXP level 1 max Change
August 22, 2014, 01:29:30 am
i know but the max for level 1 is 50 i want it to be 250 Exp you need to Level up
5
Script Requests / EXP level 1 max Change
August 21, 2014, 10:38:30 pm
Ok so is there any script that can change the max exp, it is to the next level like for example, My exp it is max to 50 i want it to be more than 50 Exp you have to go to next level also I am using rmxp!!!
6
I know I did the directions and it and tried it now but I wont even enter the edit
7
plus when I downloaded RMX-OS it said unable to connect
8
I wanted to try it out to see if it works found no bugs so far!!
9
Ok i want to know if there is a script for getting characters to transform on netplay master v4.0.7 for example (using GOku) goku's original graphic is Goku then if you want to go transform the graphic would be Goku (SSJ) or something then if transformation is off then let is be regular graphics i know this could be done with common events but i have custom characters and many of them.
10
I already tried winrar still the same result
11
thanks i'll try both of those and see if it works!!!
12
Ok so I extracted and put my rpg maker xp game online but, when someone and myself tried to download it it stopped at a certain audio and didn't play again and in the folder it says Audio  and account and that is it please help me!!!
13
Thanks :), Ok so I am using Netplay master v4.0.7 is it possible to make into a Transformation script?
14
I was wondering if you could make anyone can make this script into a transformation Script i need it to be like you have to have the character Say _trans and then make the Skill work for if you press a certain key and you have the skill here is the script:

Spoiler: ShowHide
    #==============================================================
   # http://thiagodd.blogspot.com.br
   #
   # [TSDA] Fly System
   #   --> Version 1.1
   # by thiago_d_d
   #
   #--------------------------------------------------------------
   # * Features
   #--------------------------------------------------------------
   # + Adds an flyght system.
   #
   #--------------------------------------------------------------
   # * Install
   #--------------------------------------------------------------
   # Put this script above main
   # And, you need the graphics of the characters flying, so put them
   # with the -voar suffix.
   # For Example, if your character normal graphics is 001-Fighter01,
   # you need to have another graphic with the name 001-Fighter01-voar
   #
   #--------------------------------------------------------------
   # * Configuration
   #--------------------------------------------------------------
   # You can make the hero fly only if it have an item equipped.
   # For that, configure USE_WINGS below to true.
   # And you have to put "wings items" IDs to ASAS_IDS
   #==============================================================
   class TSDA
     #Id of items that are wings
     ASAS_IDS = [59]
     #Use wings?
     USE_WINGS = true
   end
   #--------------------------------------------------------------
   class Game_Character
     attr_accessor   :through
     attr_accessor   :move_speed
     attr_accessor   :always_on_top
     attr_accessor   :character_name
   end
   #--------------------------------------------------------------
   class Scene_Map
     alias old_update_voar update
     def update
       old_update_voar
       if Input.press?(Input::Y)
         if ($game_party.actors[0].character_name + "-voar") ==
           $game_player.character_name
           return
         end
         if TSDA::USE_WINGS
           id = $game_party.actors[0].armor4_id
           if TSDA::ASAS_IDS.include?(id)
             $game_player.through = true
             $game_player.move_speed = 4.5
             $game_player.always_on_top = true
             $game_player.character_name =
             $game_party.actors[0].character_name + "-voar"
           end
         else
           $game_player.through = true
           $game_player.move_speed = 4.5
           $game_player.always_on_top = true
           $game_player.character_name =
           $game_party.actors[0].character_name + "-voar"
         end
       else
         if $game_party.actors[0].character_name ==
           $game_player.character_name
           return
         end
         $game_player.through = false
         $game_player.move_speed = 4
         $game_player.always_on_top = false
         $game_player.refresh
       end
     end
   end
16
I seen it done with events on rpg maker vx ace. :???:
17
There is also another way.... Prt sc is the other way!
18
Ok so i want to make a armour, that can See enemies stats and show it on the screen. I know there is a evented way, how to do it, but i cant figure it out please help me. :)
19
Wait If Map ID? I know it is a conditional Branch but where is Map I know variable has map ID but, Wait do you mean make a variable set to the map Id and make the variable Equal to the Map ID?
20
It is ok thank you So much, now I can make my game with gravity.