Jump to content
New account registrations are disabed. This website is now an archive. Read more here.

damasterofthearts

Member
  • Content Count

    10
  • Joined

  • Last visited

1 Follower

About damasterofthearts

  • Rank
    Newbie
  • Birthday 05/08/1999

Other

  • Referer
    Browsing

Profile Information

  • Gender
    Male
  • Interests
    RMXP

Engines

  • Prefered Engine
    RPG Maker XP
  • Engine Level
    Good
  • Class Title
    Eventer
  • Other Skills
    idk
  • Project(s)
    Light Extraction
  1. NEVER MIND I FIGURED IT OUT! I just had to place the script above the the GTBS all together. Now It works fine.
  2. Okay. So once again I ran into a problem in some other script. I've found a very good title script and have been using it for a while. I made a really cool title, but it doesn't work with Gubids Tactical Battle System. (This Again) The defect only happens when I use the title script. It says: "Script '-Game_Char_Iso_Update-' line 35: NoMethodError Occurred. Undefined method `[]' for nil:NilClass And then shuts off. Does anyone know how to fix it?
  3. Thanks so much this script works very well. And you only have to click ESC to X it out. Thousand time thanks.
  4. Okay I'll get back to you on what happens. Btw nice Caterpillar script. Its really vital to my game
  5. Okay. If you don't know how to read/write scripts then I don't think you should try to help. If you do, then I need some help. I recently found this new script that lets you play .AVI files in RMXP. But it always goes into fullscreen and I don't know how to stop it from going in there. Does anyone know how to NOT make it go into fullscreen. Here it is. --------------------------------------------------------------------------------------------------------------------- class Scene_Movie def initialize(movie) @readini = Win32API.new 'kernel32', 'GetPrivateProfileStringA', %w(p p p p l p), 'l' @movie_name = Dir.getwd()+"\\Movies\\"+movie+".avi" main end def main game_name = "\0" * 256 @readini.call('Game','Title','',game_name,255,".\\Game.ini") game_name.delete!("\0") @wnd = Win32API.new('user32','FindWindowEx','%w(l,l,p,p)','L') @temp = @wnd.call(0,0,nil,game_name).to_s movie = Win32API.new('winmm','mciSendString','%w(p,p,l,l)','V') movie.call("open \""+@movie_name+"\" alias FILE style 1073741824 parent " + @temp.to_s,0,0,0) @message = Win32API.new('user32','SendMessage','%w(l,l,l,l)','V') @detector = Win32API.new('user32','GetSystemMetrics','%w(l)','L') @width = @detector.call(0) if @width == 640 fullscreen Graphics.update sleep(1) Graphics.update sleep(1) Graphics.update sleep(1) end status = " " * 255 movie.call("play FILE",0,0,0) loop do sleep(0.1) @message.call(@temp.to_i,11,0,0) Graphics.update @message.call(@temp.to_i,11,1,0) Input.update movie.call("status FILE mode",status,255,0) true_status = status.unpack("aaaa") if true_status.to_s != "play" break end if Input.trigger?(Input::B) Input.update break end end movie.call("close FILE",0,0,0) bail end def bail if @width == 640 fullscreen end end end def fullscreen() $full.call(18,0,0,0) $full.call(13,0,0,0) $full.call(18,0,2,0) $full.call(13,0,2,0) end $full = Win32API.new('user32','keybd_event','%w(l,l,l,l)','') ---------------------------------------------------------------------------------------------------------------------- How? I can't write script very well.
  6. Thanks, now I think I understand
  7. Thanks, but Do you know any other battle systems like GTBS?
  8. Okay. I Just ran into a pretty big bump. I recently downloaded Zeriab's Caterpillar Script that needs RMXP Standard development kit v1.0 It's a really good script btw. Then, I went on a search for a new battle system for my game. I then found a really good one called Gubids Tactical Battle System, which fits perfectly for the game I'm making. But that requires RMXP Standard Development Kit v1.3, so when I tried posting them both into my game, neither of them work. The also both have to be above the script called "MAIN". So what do I have to do to fix his if it can be fixed. Can it? If not then are there other battle systems like GTBS that don't require the RMXP SDK or have to be pasted above main? Thanks.
  9. Help

    1. kellessdee

      kellessdee

      What may you need help with

    2. damasterofthearts

      damasterofthearts

      I need help with the UMS. Didn't u see my topic post?

    3. damasterofthearts

      damasterofthearts

      Is there any Elderly women face graphcics?

  10. Well, I downloaded Ccao's UMS a while ago and it works great except that I dont know how to cancel the script when i need to. Example: $game_system.add_shortcut('\c1', '\nm[Zoey]\face[bHG SMIR]\fr') $game_system.add_shortcut('\c2', '\nm[You]\face[t2_12 A]\fl') \c1 Hey main Character! = Zoey:Hey! \c2 Hey random Character! = You: Hey! But then when I try to do this in the same event: You are trying to make a fire. The UMS will paste the main characters pic and name on the message that has nothing to do with him! Help! It crumps my game.
×
×
  • Create New...