Raised This Month: $7 Target: $400
 1% 

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: ThatKidWhoGames
Forum: Plugin/Gameplay Ideas and Requests 09-04-2022, 13:56
Replies: 3
Views: 717
Posted By ThatKidWhoGames
Re: [TF2] Give addcond effect to a player who calls "MEDIC"

Untested. Added a couple of ConVars for controlling plugin functionality, which is evident and self-explainable in the source code. Feel free to use it if you like!
#include <sourcemod>
#include...
Forum: Extensions 03-29-2022, 14:29
Replies: 115
Views: 43,084
Posted By ThatKidWhoGames
Re: [L4D2] Actions

Just a suggestion, but when writing code, you should define the include files before adding these lines:

#pragma newdecls required
#pragma semicolon 1

This way, any include files which may be...
Forum: Scripting 03-12-2022, 09:25
Replies: 0
Views: 327
Posted By ThatKidWhoGames
Tag Mismatch?

I am encountering a very strange issue with the compilation of plugins. This could be a simple mistake on my end, but I am very confused. First, let me show you my code:

#include <sourcemod>...
Forum: Plugin/Gameplay Ideas and Requests 08-08-2021, 07:32
Replies: 2
Views: 1,102
Posted By ThatKidWhoGames
Forum: Plugin/Gameplay Ideas and Requests 06-22-2021, 09:58
Replies: 5
Views: 1,086
Posted By ThatKidWhoGames
Forum: Plugin/Gameplay Ideas and Requests 06-21-2021, 10:35
Replies: 5
Views: 1,086
Posted By ThatKidWhoGames
Re: L4D2 - A simple chat notice when someone dies

Untested. Edit the translations file (death_chat_notice.phrases.txt) to your liking to customize the chat message that displays.
Forum: Plugin/Gameplay Ideas and Requests 06-03-2021, 20:59
Replies: 3
Views: 696
Posted By ThatKidWhoGames
Re: menu additem to admin

https://wiki.alliedmods.net/Admin_Menu_(SourceMod_Scripting)
Forum: Scripting 05-05-2021, 10:13
Replies: 15
Views: 9,550
Posted By ThatKidWhoGames
Re: [TF2] How to disable player picks up weapons?

In the OnPlayerUse callback, why did you define a new variable for client instead of just changing activator to client?
Forum: Plugins 04-29-2021, 15:50
Replies: 8
Views: 3,611
Posted By ThatKidWhoGames
Re: [TF2] Covid-19 Mask

Haha this is great! :)
Forum: Plugin/Gameplay Ideas and Requests 04-29-2021, 14:21
Replies: 4
Views: 916
Posted By ThatKidWhoGames
Re: [CSGO] Play a sound to player

PM me, I started work on this and I can finish it for you for free if you would like!
Forum: Plugin/Gameplay Ideas and Requests 04-19-2021, 19:36
Replies: 2
Views: 701
Posted By ThatKidWhoGames
Re: Player Connection

Untested but should work.
Forum: Plugin/Gameplay Ideas and Requests 04-19-2021, 19:26
Replies: 1
Views: 694
Posted By ThatKidWhoGames
Re: Kick player on death

Untested but should work.
Forum: Scripting 04-07-2021, 23:43
Replies: 9
Views: 2,437
Posted By ThatKidWhoGames
Re: How do I create a minimap?

There is one called PakRat from what I remember.
Forum: Scripting 04-04-2021, 18:38
Replies: 5
Views: 1,323
Posted By ThatKidWhoGames
Re: [TF2][HELP] How to detect market garden

Not saying it won’t work, however, they already attempted to check if they were in the condition that is applied while rocket jumping.
Forum: Scripting 04-01-2021, 22:01
Replies: 5
Views: 893
Posted By ThatKidWhoGames
Re: First time creating natives

You can directly check if they have a certain flag through GetUserAdmin and checking if they have access to a certain flag.
Forum: Plugins 03-30-2021, 17:45
Replies: 2
Views: 2,372
Posted By ThatKidWhoGames
Re: [TF2] Juggling BOT

Nice plugin! :)
Forum: Plugin/Gameplay Ideas and Requests 03-26-2021, 07:33
Replies: 8
Views: 1,217
Posted By ThatKidWhoGames
Re: [TF2]Simple change team on suicide.

My bad, for some reason I read your post as disabling it during the waiting for players period!
Forum: Scripting 03-25-2021, 13:22
Replies: 9
Views: 1,920
Posted By ThatKidWhoGames
Re: player_spawn - fails to keep setting after respawn.

#pragma semicolon 1

#include <sourcemod>

bool g_bEnableKson[MAXPLAYERS + 1];

public void OnPluginStart()
{
RegAdminCmd("sm_kson", Cmd_Enable, ADMFLAG_CUSTOM6);
Forum: Plugins 03-24-2021, 19:43
Replies: 5
Views: 2,950
Posted By ThatKidWhoGames
Re: [ANY] Simple Discord Link

Here is an updated version. Comes with one ConVar:
sm_discord_link - URL to Discord server
Forum: Plugins 03-23-2021, 07:06
Replies: 23
Views: 6,033
Posted By ThatKidWhoGames
Re: [ANY] Command Shortcuts

Beat me to it, nicely done! :)
Forum: Plugins 03-22-2021, 14:44
Replies: 5
Views: 2,950
Posted By ThatKidWhoGames
Re: [ANY] Simple Discord Link

Nice plugin! Quick suggestion: the argument amount check is unnecessary, as no arguments need to be supplied anyways.
Forum: Plugin/Gameplay Ideas and Requests 03-22-2021, 14:31
Replies: 1
Views: 685
Posted By ThatKidWhoGames
Re: Admin logging commands

Logs admin commands to the file admin_commands.txt. Comes with one ConVar:
sm_admin_command_logger_sm_only - Only log commands starting with sm_ (1 = Enable (Default), 0 = Disable)
Forum: Plugin/Gameplay Ideas and Requests 03-20-2021, 09:34
Replies: 8
Views: 1,217
Posted By ThatKidWhoGames
Re: [TF2]Simple change team on suicide.

Updated my post, let me know how it goes! :)
Forum: Plugin/Gameplay Ideas and Requests 03-16-2021, 11:03
Replies: 11
Views: 1,647
Posted By ThatKidWhoGames
Re: [TF2][REQ] Block Sticky Jumper & Rocket Jumper

Don’t quit, I was only trying to help you! I have been coding in SourcePawn for years now, and I make mistake after mistake year after year (to this day I still do). It’s all a learning experience,...
Forum: Plugin/Gameplay Ideas and Requests 03-15-2021, 14:43
Replies: 11
Views: 1,647
Posted By ThatKidWhoGames
Re: [TF2][REQ] Block Sticky Jumper & Rocket Jumper

Why are you looping all clients every map start? You can just do it once in OnPluginStart for handling late loading. Also, while looping clients you should start from 1 and go until it’s <=...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT -4. The time now is 02:31.


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