mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 09:54:10 +03:00
Change the text of custom activity zones
When an activity zone is spawned through the use of `createactivityzone`, and `i` is 35, then it'll change the activity zone text to "Press ENTER to interact".
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
1cbc3bdc7c
commit
0685cade69
@@ -1896,11 +1896,11 @@ void scriptclass::run(void)
|
||||
int crewman = obj.getcrewman(i);
|
||||
if (INBOUNDS_VEC(crewman, obj.entities) && i == 4)
|
||||
{
|
||||
obj.createblock(5, obj.entities[crewman].xp - 32, obj.entities[crewman].yp-20, 96, 60, i);
|
||||
obj.createblock(5, obj.entities[crewman].xp - 32, obj.entities[crewman].yp-20, 96, 60, i, "", (i == 35));
|
||||
}
|
||||
else if (INBOUNDS_VEC(crewman, obj.entities))
|
||||
{
|
||||
obj.createblock(5, obj.entities[crewman].xp - 32, 0, 96, 240, i);
|
||||
obj.createblock(5, obj.entities[crewman].xp - 32, 0, 96, 240, i, "", (i == 35));
|
||||
}
|
||||
}
|
||||
else if (words[0] == "createrescuedcrew")
|
||||
|
||||
Reference in New Issue
Block a user