본문 바로가기

RPG Maker VX Ace12

RGSS Script Compiler - Visual Studio Code Extension Introduction This extension allows you to edit scripts directly in Visual Studio Code without using the script editor of RPG Maker VX Ace or RPG Maker XP. You can use a few useful keyboard shortcut during editing ruby files. ## F5 Test Play (Windows Only) ## CTRL + s (CMD + s) Save script file and Compile bundle. https://youtu.be/_pJOx74hEFA https://youtu.be/0uqOVCvXC-E This extension is a beta .. 2022. 3. 23.
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.
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.
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.
Keeping Focus - RPG Maker VX Ace Introduction This script allows you to perform the game frame update even if the RGSS Player didn't have focus or there has an another operation is in progress. System Requirements RPG Maker VX Ace v1.02a (Steam)In case of the RPG Maker VX v1.03a(Steam), You should have a file called 'RGSS202E.dll' to Root Game Directory.RPG Maker XP v1.05a (Steam) API This function checks the status whether the.. 2019. 9. 12.
XML 파일 처리 - RPG Maker VX Ace IntroductionThis script allows you to write the XML file. Download DLL - https://github.com/biud436/RGSS3/raw/master/XMLWriter/XMLWriter.dll 소스 - https://github.com/biud436/RGSS3/tree/master/XMLWriter RB 파일 - https://raw.githubusercontent.com/biud436/RGSS3/master/XMLWriter/XMLWriter.rb​ 2019. 9. 10.
RPG Maker VX Ace의 DLL에서 float 또는 double 사용하기 - RPG Maker VX Ace RPG Maker VX Ace에서 C 언어로 확장을 할 수 있다는 건 아는 사람들은 다 아는 사실일 것이다. 필자도 유용하게 쓰고 있는데, 바로 Win32API로 DLL을 로드할 수 있는 기능이다. 하지만 테스트를 해보면 알겠지만 이 기능에도 문제가 있다. 바로 float나 double 같은 부동 소수점을 사용하면 오류가 난다는 점이다. 그 오류는 실수 형 인자 값이 4개 있는 함수이지만, 0개 있다고 판단하는 오류이다. ​ 필자는 해결 방법을 찾아보던 도중에 흥미로운 포스트를 발견했다. 알만툴 계에서도 이런 작업을 즐기는 사람들이 꽤 있기 때문에 구글링하면 다 나온다. RGSS Player와 RGSS Bitmap 구조를 리버싱으로 모두 풀어버린 중국이 레전드 반열에 올라있고, 독일 커뮤니티도 2K 쪽으.. 2019. 9. 10.
한글 이름 입력 처리 - RPG Maker VX Ace 소개본 스크립트는 Windows의 기본 한글 입력 기능을 통해 한글 이름을 입력할 수 있게 합니다. 한글 입력은 초성, 중성, 종성의 조합으로 한 글자가 완성되지만 단순한 결합되진 않으며 겹받침이나 겹모음, 그리고 영어나 특수 문자, 띄어쓰기가 오는 경우도 생각해야 합니다. 아래 링크는 제가 직접 구현한 한글 입력기입니다. Hangul Input - https://github.com/biud436/RGSS3/raw/master/RS_HangulInput.rb 본래는 자바스크립트로 작성을 했었고, 결과물을 루비로 변환했었습니다. 한글 입력 구현은 필자의 프로그래밍 적인 능력을 가늠해보기 위한 스스로의 시험 같은 것이었고, 결과적으로는 잘 동작했지만 만족스러운 코드는 만들지 못했습니다. 이런 직접 구현은 플.. 2019. 1. 29.