AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   [REQ] mp_flashlight (https://forums.alliedmods.net/showthread.php?t=235341)

Chikizo 02-12-2014 18:28

[REQ] mp_flashlight
 
Please I want a plugin to Team He terrorist:
mp_flashlight "0"
But counter-terrorist:
mp_flashlight "1"

^SmileY 02-12-2014 20:47

Re: [REQ] mp_flashlight
 
Quote:

Originally Posted by Chikizo (Post 2099473)
Please I want a plugin to Team He terrorist:
mp_flashlight "0"
But counter-terrorist:
mp_flashlight "1"

Hi, i launched this: http://forums.alliedmods.net/showthr...25#post2099525


:bee:

ConnorMcLeod 02-13-2014 01:16

Re: [REQ] mp_flashlight
 
Better to use following plugin with amxx 1.8.3, but it works with 1.8.2.

PHP Code:

#include < amxmodx >
#include < engine >

#pragma semicolon 1

#define PLUGIN "Teams FlashLight"
#define VERSION "0.0.1"

new mp_flashlight_teams;

public 
plugin_init()
{
    
register_pluginPLUGINVERSION"ConnorMcLeod" );

    
mp_flashlight_teams register_cvar("mp_flashlight_teams""3"); // 0:none (plugin useless mp_flashlight 0 is enough), 1:Ts only, 2:CTs only, 3:All (useless plugin mp_flashlight 1 is enough)

    
register_impulse(100"OnImpulse_100");
}

public 
OnImpulse_100id )
{
    return 
is_user_alive(id) && ~entity_get_int(idEV_INT_effects) & EF_DIMLIGHT && ~get_pcvar_num(mp_flashlight_teams) & get_user_team(id);



UchihaSkills 02-13-2014 11:48

Re: [REQ] mp_flashlight
 
He is using dproto

ConnorMcLeod 02-13-2014 12:19

Re: [REQ] mp_flashlight
 
His request is ok because he is not asking support for something nosteam related.

But the signature is against rules, yes, please remove it.

Also, creating new account in order to evade ban is forbidden, i suspect following previous accounts :

https://forums.alliedmods.net/member.php?u=245672
https://forums.alliedmods.net/member.php?u=245903
https://forums.alliedmods.net/member.php?u=246044


All times are GMT -4. The time now is 22:33.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.