Everything posted by MESYETI
-
What are your computer specs?
-
What are your computer specs?
- classicube dos port?
well classicube probably supports 8-bit colour (which you can use in MS-DOS with mode 0x13) and im pretty sure there's a way to use opengl in it- Don't hire bad admins for your server,
I think I hosted that server 😞- How can i change server map?
there are message blocks but they can't be chained (iirc) /help mb- How can i change server map?
there's /help change map with /g mapname- Shaders
- Shaders
well i found some GLSL in the classicube source code /* Generates source code for a GLSL vertex shader, based on shader's flags */ static void GenVertexShader(const struct GLShader* shader, cc_string* dst) { int uv = shader->features & FTR_TEXTURE_UV; int tm = shader->features & FTR_TEX_OFFSET; String_AppendConst(dst, "attribute vec3 in_pos;\n"); String_AppendConst(dst, "attribute vec4 in_col;\n"); if (uv) String_AppendConst(dst, "attribute vec2 in_uv;\n"); String_AppendConst(dst, "varying vec4 out_col;\n"); if (uv) String_AppendConst(dst, "varying vec2 out_uv;\n"); String_AppendConst(dst, "uniform mat4 mvp;\n"); if (tm) String_AppendConst(dst, "uniform vec2 texOffset;\n"); String_AppendConst(dst, "void main() {\n"); String_AppendConst(dst, " gl_Position = mvp * vec4(in_pos, 1.0);\n"); String_AppendConst(dst, " out_col = in_col;\n"); if (uv) String_AppendConst(dst, " out_uv = in_uv;\n"); if (tm) String_AppendConst(dst, " out_uv = out_uv + texOffset;\n"); String_AppendConst(dst, "}"); }- How to create a server without downloading the software
>goes on month old post >says what everyone else said- just my opinion but
tell that to Hayden lol- Freedom Over Dictatorship: Our Call For Change
i think gay4 was Hernan Lorccan- Freedom Over Dictatorship: Our Call For Change
- Freedom Over Dictatorship: Our Call For Change
someone else must have asked them- Freedom Over Dictatorship: Our Call For Change
i didn't ask anyone to join lol- Freedom Over Dictatorship: Our Call For Change
i already told you the "raid" wasn't organised- Freedom Over Dictatorship: Our Call For Change
your server is just a chromie freebuild but 10 times more deranged- Freedom Over Dictatorship: Our Call For Change
a good example being 2d2t - i have put no effort at all into it and it has some nice stuff on there- Freedom Over Dictatorship: Our Call For Change
i like builds when they aren't just big boxes- Freedom Over Dictatorship: Our Call For Change
well chromies aren't great builders- Freedom Over Dictatorship: Our Call For Change
RIP New The30s then- Whats the oldest version of linux classicube can run on?
macOS is not linux- Is there a way to get up in the rank?
that is the right page lol- What is you most faborite gaem?
- Shaders
openGL Shading Language- Shaders
go find some GLSL in the source code - classicube dos port?