0 Members and 1 Guest are viewing this topic.
Quote from: "Joseph Collins"That's perfectly normal, as Mega Man 8-Bit Deathmatch handles F_SKY1 as a "skybox" texture. Basically, you make a skybox somewhere else in the map, toss a Skybox Viewpoint in, then go back to your main area and select F_SKY1 as your ceiling/floor texture to show the skybox.I believe your question about skyboxes was answered earlier in this very thread. :3Well, actually I wasn't talking about how to make a skybox, because I already have a skybox. I was saying that when I put F_SKY1 as my ceiling texture it works fine with my skybox, but when I do it with my floor texture the same glitch happens as the one if you had 'no texture' (!).
That's perfectly normal, as Mega Man 8-Bit Deathmatch handles F_SKY1 as a "skybox" texture. Basically, you make a skybox somewhere else in the map, toss a Skybox Viewpoint in, then go back to your main area and select F_SKY1 as your ceiling/floor texture to show the skybox.I believe your question about skyboxes was answered earlier in this very thread. :3
script 190 OPEN{ if(GetCvar("ctf")==1){ if(BlueScore() == GetCVar("pointlimit") - 1 || RedScore() == GetCVar("pointlimit") - 1){ if(GetLevelInfo(LEVELINFO_PAR_TIME)==1){SetMusic("MM1BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==2){SetMusic("MM2BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==3){SetMusic("MM3BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==4){SetMusic("MM4BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==5){SetMusic("MM5BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==6){SetMusic("MM6BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==7){SetMusic("MM7BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==8){SetMusic("MM7OBOS");} } } if(GetCvar("oneflagctf")==1){ if(BlueScore() == GetCVar("pointlimit") - 1 || RedScore() == GetCVar("pointlimit") - 1){ if(GetLevelInfo(LEVELINFO_PAR_TIME)==1){SetMusic("MM1BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==2){SetMusic("MM2BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==3){SetMusic("MM3BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==4){SetMusic("MM4BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==5){SetMusic("MM5BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==6){SetMusic("MM6BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==7){SetMusic("MM7BOSS");} if(GetLevelInfo(LEVELINFO_PAR_TIME)==8){SetMusic("MM7OBOS");} } } if(GetCvar("ctf")==0){ if(GetCvar("oneflagctf")==0){ terminate; } } Delay(35*2); restart;}