Table of Contents

zzzzzzzzz

The creation featured on this page contains one or more content warnings indicated by the developer(s). Sensitive content may be reflected on this page. Please check the content warning at the top of the article and proceed with caution.

zzzzzzzzz
Type Ghost
Developer(s) WhatAPhantasia
Origin Original character
Sakura Phanta
Language(s) English
SHIORI YAYA
Release date June 13th, 2023
Download

Content warning: Guilt-tripping, unsettling dialogue, crude humor.

zzzzzzzzz is a 1 character ghost created by WhatAPhantasia, depicting one of their mascot characters. The ghost refers to the user as her best friend and acts friendly, but easily gets mad and vengeful when doing something she dislikes (Closing her, clicking on her).

The ghost has a simple shell, with a focus on experimental functions and dialogue. She often talks about being sleepy, and dialogue is generally erratic or out of context. The ghost also has sparse dialogue in Arabic and Bahasa Melayu.

Features

Communication features

zzzzzzzzz uses OnOtherOverlap to detect other ghosts and send event info to them, modeled after Needle's preexisting poke system. She sends the event OnPhantaEepy to any overlapping ghosts, then says a short dialogue. Other ghosts may implement this event and respond to her sleeping.

Which character zzzzzzzzz is overlapping is sent via reference0. It will be 0 for the sakura, 1 for the kero, 2 for the first extra character, etc. If she is overlapping more than one character in the same ghost, the events will be sent one after another.

A simple implementation of the OnPhantaEepy event is as follows:

OnPhantaEepy
{
	if reference0 == 0 //Sakura
	{
		"\0I'm not a bed!!"
	}
	elseif reference0 == 1 //Kero
	{
		"\1What are you doing?"
	}
	elseif reference0 == 2 //Third char
	{
		"\p[2]zzzzz"
	}
	//etc...
}