Mapo tamsumas
Posted: 2013 Feb 05 18:56
Sveiki, noriu padaryti serveryje kad butu visur labai tamsu, bet nemoku padaryti.
Gal galite pasakyti?
Naudoju admin pack'ą public'o.
Gal galite pasakyti?
Naudoju admin pack'ą public'o.
Code: Select all
set_lights("a")
Code: Select all
set_lights("#OFF")
Code: Select all
#include <amxmodx>#include <engine> public plugin_init(){ set_task(40.0, "OnTerroristFreeze"); set_lights("a");} public OnTerroristFreeze(){ new players[32], playerCount; get_players(players, playerCount, "aceh", "TERRORIST"); if (!playerCount) return; for (new i; i < playerCount; i++) set_entity_flags(players[i], FL_FROZEN, true);}