본문 바로가기

분류 전체보기104

Screenshot - RPG Maker MV IntroductionThis plugin allows you to create the screenshot file in the screenshots folder when you are taking the screen shots by using pressing specific key. In ScreenShots Preview Window, It shows the file name at the left top of the screen and plays the sound when you are taking the screenshots. So its window allows you to distinguish between screen shots and normal game screens. Change Log .. 2020. 7. 7.
RS Input Core - RPG Maker VX Ace Introduction This script allows you to use a full keyboard access and mouse input in the RPG Maker VX Ace. How to Setup Insert a new script between below Materials and above Main. Features - Supports All Key Input - Shows mouse pointer - Supports Mouse Input - Smart Move (A*) - Mouse Wheel Extension - 목적지 좌표 표시 기능. - Supports Unicode Window Title Usage To use this code called 'p', You can output.. 2020. 5. 1.
Font Patch Tool (Font Patcher) | RPG Maker VX Ace IntroductionThe Font Patcher is a great tool that can change the game font without editing the game. DownloadThis tool is possible to change the font face of the game that has been made using RPG Maker VX Ace. EXE : https://github.com/biud436/RGSS3/raw/master/FontPatcher/bin/FontPatcher.exeDLL : https://github.com/biud436/RGSS3/raw/master/FontPatcher/bin/RSFont.dll You must need the file named M.. 2020. 4. 22.
ZIP 압축 해제(UnZip) 모듈 - RPG Maker VX Ace Introduction This script allows you to decompress a specific zip file (base on Deflate, BZip2) in RPG Maker VX Ace and other RGSS system. But the progress message will print out in Korean. if you don't need to use it, you should compile DLL file directly using Rust in below link. https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/biud436/RGSS3/tree/master/unzip Usage In the scri.. 2020. 4. 13.
Choice Position - RPG Maker MV Introduction This plugin allows you change the position of choice window during the game. Plugin Commands The command called 'Choice pos' is possible to place the choice window to the certain coordinates on the screen. Choice pos x y - x or y : Specify the screen coordinates. This will be going to move the location of the choice window to the position of specific event or player characters. Choi.. 2020. 3. 31.
RS Movie Ex - RPG Maker VX Ace Introduction This script allows you to playback a video of specific video format such as *.mp4, *.webm This script requires an FFMPEG tool. On Windows 10, Downloads ffmpeg automatically! However, it will not download automatically on other Windows. So before starting this script, you must download the ffmpeg executable files. it is available at https://ffmpeg.zeranoe.com/builds/win64/static/ffmp.. 2020. 3. 26.
Resource Rejector - RPG Maker MV Introduction This plugin allows you to reject requesting a specific file during the game. You must write File Rules below plugin parameter called 'File Rules'. This plugin parameter can set an extension of file to reject. For example, if you load a file from 'img/characters/Actor1.rpgmvp' after deployed the game, it will be loaded success. But if the user has decrypted the game, the file extensi.. 2020. 3. 6.
Custom Information Window - RPG Maker MV IntroductionThis plugin provides the Information Window that adds a text via the global variable. How to Use This plugin command allows you to add a text. MenuInformation add textMenuInformation add Hello, World MenuInformation add \image textMenuInformation add \image text MenuInformation add \image wow This plugin command allows you to delete all texts. MenuInformation clear Change Log 2016.01.. 2020. 2. 13.
Show detailed errors - RPG Maker VX Ace Introduction This script allows you to show a more details error on the game screen, as follows. Link https://github.com/biud436/RGSS3/raw/master/RS_ConsoleWarnDetails.rb Scripts #============================================================================== # ** 자세한 오류 출력 및 로그 저장 # Author : biud436 # Version Log : # 2019.12.21 (v1.0.0) : First Release # 2020.02.07 (v1.0.1) : # - Fixed an issue .. 2020. 2. 7.
RPG Maker MV에서 Cordova를 이용하여 안드로이드 실시간 업데이트 구현하기 보통 안드로이드 게임들은 초기에 웹에서 추가 리소스를 받는 경우가 상당히 많다. 앱 용량이 많이 나가면 받지 않는 경우가 있기 때문이다. 추가 리소스를 다운로드 받게 하려면 PHP 기반 웹 서버와 간단한 HTTP 프로토콜을 이용하면 된다. 이를 통해 데이터를 송수신을 할 수 있게 된다. 모바일에서는 다소 느릴 수 있지만 구체적으로 예를 들면 안드로이드에서는 보통 java.net의 HttpURLConnection 객체로 직접 데이터를 웹에 요청하여 수신하는 방법이 있다. 데이터 요청 시 서버가 반환하는 데이터를 한 줄씩 받아오면서 진행률을 표시하고 실제 파일로 저장하는 것은 어려운 일이 아니다. 또한 이러한 리소스를 웹에서 내려 받게 되면, 앱을 4MB 미만의 초 저용량으로 배포할 수 있다는 굉장한 장점이.. 2020. 2. 3.