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

1
More Error when playing BGS Sound


2
Quote from: Blizzard on May 07, 2019, 12:46:24 pm
Does it affect the same files or not? It's possible that it has issues with playing MIDI files, but works fine with OGG.

Same for the transition files. Are they in a different file format? Do other images have this issue of not being able to be loaded?
It's .WMA file. I'll try converting it into .OGG.

UPDATENot work,ME Play once. after that, ME not playing at all.
3
I have some problem after using this system.

- Sometimes ME sound work fine. but sometimes It won't work. no ME sound playing at all.
- Transition not work. (It appear as fade-in instead)

4
RMXP Script Database / Re: [XP] Custom Resolution
March 25, 2018, 01:40:16 am

Try this script on my game.Script work so well.But Plane class is still 640 * 480 pixel.

Try on MOG scene menu...still the same.Plane class is still in 640 * 480 area pixel.

Can someone help me fix this?
5
i666iky939's Dread Arms Project is suck,Lot of resouce and script hack from Thailand RMXP project "Prana Arcadia : The Cursed Stigmata" release at 10-20-2012

Prana Arcadia : The Cursed Stigmata Original Game Link : http://www.irpg.in.th/thread-686.html

Video : Prana Arcadia : The Cursed Stigmata : Release Date 10-20-2012

https://youtu.be/5RKFk63ferA


Video : Dread Arms Battle System : Release Date 06-30-2013

https://youtu.be/MVNwbci6ojg


He stole other people hard work and say he's the one who make it. I'm really disgusting.

Please tell everyone.I can't stand what he doing! Scumbag Loser!
6
Quote from: KK20 on December 31, 2014, 05:01:56 pm
Err...Drago, he wants the screen to change between full-screen and windowed whenever he wants with a script call. So something like

module ToggleScreen
 def self.toggle
   # Enables ALT+ENTER
   Win32API.new('user32', 'UnregisterHotKey', 'li', 'i').call(0, 1)
   # Simulates ALT+ENTER key presses
   keybd = Win32API.new 'user32.dll', 'keybd_event', ['i', 'i', 'l', 'l'], 'v'
   keybd.call(0xA4, 0, 0, 0)
   keybd.call(13, 0, 0, 0)
   keybd.call(13, 0, 2, 0)
   keybd.call(0xA4, 0, 2, 0)
   # Disables ALT+ENTER
   Win32API.new('user32','RegisterHotKey','liii','i').call(0,1,1,0x0D)
 end
end

And you can use the script call

ToggleScreen.toggle

But yes, be sure to use the code Drago posted inside 'Main', right after begin, like so

#==============================================================================
# ** Main
#------------------------------------------------------------------------------
#  After defining each class, actual processing begins here.
#==============================================================================

begin
 Win32API.new('user32','RegisterHotKey','liii','i').call(0,1,1,0x0D)
 # Prepare for transition
 Graphics.freeze


Thank you Very Very Very much! You really save me!
7
Script Requests / [XP]Advance Full Screen script request.
December 31, 2014, 05:13:23 am
I need RGSS script to disable Alt+Enter button. Player can Switch between Fullscreen/Window mode with event(script call) only.

Can somebody help me?

Sorry.I'm no good in English.
8
Script Requests / Re: [RMXP] Mirage Effect
September 16, 2013, 09:33:51 am
Quote from: ForeverZer0 on September 15, 2013, 09:05:00 am
A copy of the script would be helpful.
I send it to you. check your PM.
9
Script Requests / [RMXP] Mirage Effect
September 15, 2013, 04:29:32 am
I try to make mirage effect to use in my RMXP game.It look pretty cool.but it still have a bug...


http://www.screenr.com/sf4H

when walk in small map,the mirage effect display is 100% correct,but in huge map it will not display when
player walk and screen scroll up-down or left-right.

I'm not advance scripter and don't known how to fix it.

is there anyone can make this script?

(sorry for my poor english)