惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
J
Java Code Geeks
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
腾讯CDC
博客园 - 司徒正美
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
I
InfoQ
N
Netflix TechBlog - Medium
L
LangChain Blog
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
美团技术团队
The Cloudflare Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
H
Help Net Security
Martin Fowler
Martin Fowler
V
Visual Studio Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Expanding Gameplay with GOKI2 [Introduction to ModMessage...
HALO · 2026-05-16 · via DEV Community

HALO

Download

Avalanches & GOKI2 can download the latest environment from the Assets link of Avalanches-GOKI2-Release2.x.y.y.zip based on the release tag on the following site (written as Avalanches (GOKI2) release version 2.x.y.y).

https://github.com/halo1234/Avalanches/releases

ModMessage

ModMessage implements tags for processing scenario text.
First, load the module.

; Message layer related functions
@load_module name=ModMessage

Enter fullscreen mode Exit fullscreen mode

Initial Settings for Message Layers

First, specify how many message layers you want to use.
Use the message_layers tag as shown below.

; Number of message layers
@message_layers count=2

Enter fullscreen mode Exit fullscreen mode

Next, specify the size and position of the message layers.

; Message layer settings
@message_option layer=message0 left=10 top=400 width=780 height=190 margin_left=10 margin_top=10 margin_right=10 margin_bottom=10 opacity=128 color=0xFF0000 caption_color=0xFFFFFF shadow_color=0xFF0000 current
@message_option layer=message1 left=10 top=200 width=780 height=190 margin_left=10 margin_top=10 margin_right=10 margin_bottom=10 opacity=128 color=0xFF0000 caption_color=0xFFFFFF shadow_color=0xFF0000

Enter fullscreen mode Exit fullscreen mode

Since the message layer settings are long, let's look at them step by step.

Specify the target layer to operate on with layer=message0.
You can specify the same number of layers as the message layers indicated by the message_layers tag.
Since we are using two layers this time, the layer attribute can be set to either message0 or message1.

left=10 top=400 width=780 height=190 specifies the position and size of the message layer.

margin_left=10 margin_top=10 margin_right=10 margin_bottom=10 specifies the margins (padding) of the message display area.
Messages will not be displayed in positions smaller than the values specified here.

opacity=128 color=0xFF0000 specifies the color and opacity of the message layer itself.

caption_color=0xFFFFFF shadow_color=0xFF000 sets the color of the message text and the shadow color.

Specifying the current attribute makes that layer the current message layer.
The current message layer is considered the default if no layer attribute is specified in each tag.

By preparing multiple message layers in this way and placing message0 at the bottom and message1 at the top, it is possible to create advanced effects such as separating narration and dialogue.

Displaying Messages

To display messages, you first need to redirect the processing of scenario text from default tags such as ch to ch_mod_message.
A using_mod_message tag is provided to redirect each text processing tag to ModMessage.

; Set the scenario text output destination to ModMessage
@using_mod_message

Enter fullscreen mode Exit fullscreen mode

This tag conflicts with ModADV's using_mod_adv, so please choose one as the output destination. That concludes changing the output destination.

Next, the message layer will be displayed. If the message layer is not displayed, messages will not appear.

; Syntax extension (remember?)
@!show_message type=vista

; Display message layer 0 (using vista effect)
@show_message layer=message0 vista
; Wait for the message layer display to complete
@wait_show_message

Enter fullscreen mode Exit fullscreen mode

With this, text can now be processed with ModMessage. After that, you just write text as follows.

*label|
This is scenario text.[p][cm]

*label|
ModMessage is processing this.[p]

*label|
Clearing the message layer.[p]

; Clear the message layer
@hide_message layer=message0
; Wait for the message layer to finish clearing
@wait_hide_message layer=message0

Enter fullscreen mode Exit fullscreen mode

Looking at the script, those familiar with KAG3 will notice that there is no cm tag immediately after a saveable label. Unlike KAG3, GOKI2 saves the contents of the message layer, so there is no need to write the cm tag.

History Layer

ModMessage also manages the so-called history layer.

; Message history settings
@history_option width=800 height=600 slider_storage=sample_slider/sample_slider_button margin_left=50 margin_top=18 margin_right=18 margin_bottom=18 color=0x000000 caption_color=0xFFFFFF shadow_color=0x808080

Enter fullscreen mode Exit fullscreen mode

Let's look at each setting in order.

width=800 height=600 specifies the size of the message layer. The left/top attributes can also be specified, but here they are omitted, so the history layer area ranges from (0, 0) to (800, 600).

slider_storage=sample_slider/sample_slider_button specifies the images for the scrollbar (and knob) used for scrolling the history. If no images are specified, the default scrollbar is used.

margin_left=50 margin_top=18 margin_right=18 margin_bottom=18 specifies the margins (padding) of the history layer, just like with the message layer.

color=0x000000 specifies the color of the history layer.

caption_color=0xFFFFFF shadow_color=0x808080 specifies the color of the text displayed in the history and the color of its shadow.

Finally

By specifying images for all UI elements, you can use custom UI. For more details, please refer to the manual. (/doc/goki2/index.html)

The ModMessage module implements a large number of tags, so it is recommended to read the manual thoroughly.