Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 26
Search took 0.02 seconds.
Search: Posts Made By: Brum Brum
Forum: Plugins 07-30-2020, 23:32
Replies: 20
Views: 14,164
Posted By Brum Brum
Re: [CS:GO] Custom Status

Hello there im here to notification you about new update :D What was changed?
1. Added player name characters limit to 16 (if you want change this for more characters edit 103 line). This still not...
Forum: Plugins 07-19-2020, 04:58
Replies: 20
Views: 14,164
Posted By Brum Brum
Re: [CS:GO] Custom Status

Added, check newest version :wink:
Forum: Plugins 07-16-2020, 13:32
Replies: 20
Views: 14,164
Posted By Brum Brum
Re: [CS:GO] Custom Status

Ohh, thanks for report. Fixed.
https://i.imgur.com/KNPiX9j.png
Forum: Plugins 07-16-2020, 11:26
Replies: 20
Views: 14,164
Posted By Brum Brum
[CS:GO] Custom Status

Simple plugin to make your server status as custom.

Requirements:
PTah (https://ptah.zizt.ru/) - newest version

https://i.imgur.com/cDFKxdk.png
https://i.imgur.com/kZLeZ6k.png
...
Forum: General 04-15-2020, 12:55
Replies: 22
Views: 130,607
Posted By Brum Brum
Forum: Plugins 01-25-2020, 22:05
Replies: 7
Views: 5,590
Posted By Brum Brum
Re: [CS:GO] NoScope Round

Yes /addons/sourcemod/configs


Yes ;P I will do this later
Forum: Plugins 10-12-2019, 22:25
Replies: 7
Views: 5,590
Posted By Brum Brum
[CS:GO] NoScope Round

Commands
!fns - Enable/Disable NoScope round. ADMIN Only
!nscreload - reload config
Config

"NoScope"
{
"MOD_TAG" "ADEPT"
"NoScope_Round_Type" "2" //0 - off 1 - every x rounds 2 - % chances...
Forum: Plugin/Gameplay Ideas and Requests 09-29-2019, 10:06
Replies: 1
Views: 841
Posted By Brum Brum
Re: [REQ] Plugin to set max hp

void SetClientMaxHealth(int client, int hp)
{
SetEntProp(client, Prop_Data, "m_iMaxHealth", hp);
}
Forum: Plugin/Gameplay Ideas and Requests 08-26-2019, 17:45
Replies: 3
Views: 1,645
Posted By Brum Brum
Re: [CSGO] Request help/plugin with damage through teammates

ff_damage_bullet_penetration 1
ff_damage_reduction_bullets 1
ff_damage_reduction_grenade 1
ff_damage_reduction_grenade_self 1
ff_damage_reduction_other 1
mp_friendlyfire 1
Forum: Scripting 08-26-2019, 17:35
Replies: 6
Views: 2,198
Posted By Brum Brum
Re: Getting random place on map

He means a random place on the map from which, for example, a props or weapon crate can be respawn. Not a random player spawn :P
Forum: Plugins 08-08-2019, 15:42
Replies: 5
Views: 14,417
Posted By Brum Brum
Re: [CS:GO] Hud Text Message

so you only show the message to the person who used it?




for (int i = 1; i <= MaxClients;i++)
{
if (!IsClientInGame(i) || IsFakeClient(i))continue;

ShowSyncHudText(i, HTM, message);
Forum: Plugin/Gameplay Ideas and Requests 01-29-2019, 09:07
Replies: 1
Views: 1,025
Posted By Brum Brum
Re: [CSGO] How to set ammo clip

My stock to change ammo

stock void SetAmmo(int entity, int Ammo, int ReserveAmmo)
{
SetVariantInt(Ammo);
AcceptEntityInput(entity, "SetAmmoAmount");
SetVariantInt(ReserveAmmo);...
Forum: Scripting 01-23-2019, 12:00
Replies: 7
Views: 2,449
Posted By Brum Brum
Re: how to make prop_weapon_upgrade_armor_helmet glow?

If you spawn prop_weapon_upgrade_helmet you don't have to hook the touch, the armor will add to you as soon as you touch it.
I using this to make it

stock int SpawnArmor(float[3] location)
{...
Forum: Plugin/Gameplay Ideas and Requests 01-17-2019, 16:09
Replies: 4
Views: 1,396
Posted By Brum Brum
Re: I need help with my plugin

You closed the DoVoteMenu function too early.
Forum: Plugin/Gameplay Ideas and Requests 01-07-2019, 17:48
Replies: 2
Views: 1,175
Posted By Brum Brum
Re: [CSGO] Dead players spawn in halloween ghost mode spectator

public void OnPluginStart()
{
HookEvent("player_death", Event_PlayerDeath);
}

public Action Event_PlayerDeath(Event event, const char[] name, bool dontBroadcast)
{
int client =...
Forum: Plugin/Gameplay Ideas and Requests 12-28-2018, 17:12
Replies: 5
Views: 1,265
Posted By Brum Brum
Re: speedometer plugin csgo

https://forums.alliedmods.net/showthread.php?p=1335264
Forum: Plugin/Gameplay Ideas and Requests 12-28-2018, 16:34
Replies: 5
Views: 4,118
Posted By Brum Brum
Re: DeathRun knife mod

I moved this plugin https://forums.alliedmods.net/showthread.php?p=378952 to csgo ;-) I haven't made a version with models because I'm lazy.
Forum: Scripting 12-27-2018, 15:56
Replies: 2
Views: 1,094
Posted By Brum Brum
Re: [CSGO] Get Random Weapon On Warmup

#include <sdktools>

char WeaponList[][] =
{
"weapon_glock", "weapon_usp_silencer", "weapon_deagle", "weapon_tec9", "weapon_hkp2000", "weapon_p250", "weapon_fiveseven", "weapon_elite",...
Forum: Plugin/Gameplay Ideas and Requests 12-24-2018, 04:48
Replies: 6
Views: 1,406
Posted By Brum Brum
Re: [REQ] Round chooser

After all, this is how it works. When I tested it worked, make sure that no other plug-in interferes with it.



if you mean autoexec then yes, you have information about it in the 37th line.
Forum: Plugin/Gameplay Ideas and Requests 12-21-2018, 12:27
Replies: 6
Views: 1,406
Posted By Brum Brum
Re: [REQ] Round chooser

#include <sdktools>

#pragma semicolon 1
#pragma newdecls required

#define MOD_TAG "\x01\x0B★ \x07[Round Chooser]\x04 "
#define WATER_LEVEL_FEET_IN_WATER 1

char RoundName[][] =
{
Forum: Plugin/Gameplay Ideas and Requests 12-21-2018, 08:08
Replies: 4
Views: 946
Posted By Brum Brum
Re: Request a plugin Vip Menu Jb

#pragma semicolon 1
#pragma newdecls required

#define MOD_TAG "\x01\x0B★ \x07[VIP Menu]\x04 "

public Plugin myinfo =
{
name = "VIP Menu",
author = "Brum Brum",
...
Forum: Plugin/Gameplay Ideas and Requests 12-21-2018, 05:29
Replies: 4
Views: 946
Posted By Brum Brum
Re: Request a plugin Vip Menu Jb

#pragma semicolon 1
#pragma newdecls required

#define MOD_TAG "\x01\x0B★ \x07[VIP Menu-]\x04 "

public Plugin myinfo =
{
name = "VIP Menu",
author = "Brum Brum",
description = "Vip...
Forum: Plugin/Gameplay Ideas and Requests 12-19-2018, 15:22
Replies: 9
Views: 1,588
Posted By Brum Brum
Re: Start health ct

#pragma semicolon 1
#pragma newdecls required

#define CS_TEAM_CT 3

ConVar CTHealth, enable;

public Plugin myinfo =
{
name = "Change HP",
Forum: Plugin/Gameplay Ideas and Requests 12-19-2018, 09:49
Replies: 9
Views: 1,588
Posted By Brum Brum
Re: Start health ct

Ooh i forgot about that, sorry
Forum: Plugin/Gameplay Ideas and Requests 12-19-2018, 02:24
Replies: 9
Views: 1,588
Posted By Brum Brum
Re: Start health ct

#pragma semicolon 1
#pragma newdecls required

ConVar CTHealth, enable;

public void OnPluginStart()
{
CTHealth = CreateConVar("sm_cthp_on_spawn", "1000", "Change CT health");
enable =...
Showing results 1 to 25 of 26

 
Forum Jump

All times are GMT -4. The time now is 11:58.


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