Cytus Wiki
mNo edit summary
Tags: Visual edit apiedit
(Adding categories)
(One intermediate revision by one other user not shown)
Line 38: Line 38:
 
|6-1 || [[File:L6-1.png|25px|link=Dragon Warrior]] || [[Dragon Warrior]] || HOSKEY || 3 || 7 || 100
 
|6-1 || [[File:L6-1.png|25px|link=Dragon Warrior]] || [[Dragon Warrior]] || HOSKEY || 3 || 7 || 100
 
|-
 
|-
|6-2 || [[File:L6-2.png|25px|link=Selfish Gene]] || [[Selfish Gene]] || ani feat. Rin || 3 || 6 || 100
+
|6-2 || [[File:L6-2.png|25px|link=Selfish Gene]] || [[Selfish Gene]] || ani vocal by Rin || 3 || 6 || 100
 
|-
 
|-
 
|6-3 || [[File:L6-3.png|25px|link=Realize]] || [[Realize]] || Persona || 5 || 7 || 181
 
|6-3 || [[File:L6-3.png|25px|link=Realize]] || [[Realize]] || Persona || 5 || 7 || 181
Line 62: Line 62:
 
[[Category:Chapters]]
 
[[Category:Chapters]]
 
[[Category:Free Chapters]]
 
[[Category:Free Chapters]]
  +
[[Category:Cytus Alpha Chapters]]

Revision as of 01:47, 22 July 2019

Chapters
Story Chapters 1 2 3 4 5 6 7 8 9 10
Side Chapters 0 S K R T D L N M
Alpha Chapters Ω DJMAX


Previous
Chapter 5
Chapter 6
The Lost
Next
Chapter 7
function Operator:allocateStorage(size)
    local db = self:acquireDatabase()

    while db:getAvailableSpace() < size do
        local dated_item = db:query{
            number = 1,
            tag = "emotion",
            sort = "timestamp",
        }
        db:remove(dated_item)
    end

    local chunk = db:reserveSpace(size)
    zeroMemory(chunk)
    return chunk
end
Part6
No. Logo Song Artist Easy Hard BPM
A-6 LA-6 Alive: The Lost Sta 4 7 140
6-1 L6-1 Dragon Warrior HOSKEY 3 7 100
6-2 L6-2 Selfish Gene ani vocal by Rin 3 6 100
6-3 L6-3 Realize Persona 5 7 181
6-4 L6-4 Colorful Skies 3R2 4 9 146
6-5 L6-5 It's A Wonderful World HAMO 3 6 152
6-6 L6-6 Bloody Purity Eyemedia 8 9 155
6-7 L6-7 Logical Steps yamajet 3 8 130
6-8 L6-8 Niflheimr xi 3 8 180
6-9 L6-9 Old Gold Cranky 3 8 155
6-10 L6-10 The Blocks We Loved Killerblood 2 9 134

Trivia

  • This chapter introduces HOSKEY.
  • The code shown in the cutscenes is written in the programming language Lua. It means: Every emotion entry inserted into the database will be compared with the database's available space. If the size of the inserted emotion is larger than the size of the available space, the old emotion will be deleted to reserve the space for the inserted emotion.