something more or less so.
I want to make the sky map change for everyone, but do not want anything like that
with those plugin customization file. cfg
I want everything inside the script.
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Plugin Name"
#define VERSION "1.0"
#define AUTHOR "AMXX-Studio"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
// Add your code here...
}
public precache_sky(){
client_cmd(0, "sv_skycolor_b 0")
client_cmd(0, "sv_skycolor_g 0")
client_cmd(0, "sv_skycolor_r 0")
client_cmd(0, "sv_skyname space")
client_cmd(0, "sv_skyvec_x 0.365677")
client_cmd(0, "sv_skyvec_y 0.340999")
client_cmd(0, "sv_skyvec_z -0.896025")
}