Raised This Month: $12 Target: $400
 3% 

Showing results 1 to 25 of 327
Search took 0.02 seconds.
Search: Posts Made By: AuricYoutube
Forum: Scripting 02-21-2024, 02:59
Replies: 2
Views: 359
Posted By AuricYoutube
Re: Delayed Changelevel to CurrentMap on Server Startup

true, done here:

#include <sourcemod>

#pragma semicolon 1
#pragma newdecls required

bool haschanged;

public void OnPluginStart()
Forum: Scripting 02-20-2024, 07:23
Replies: 2
Views: 359
Posted By AuricYoutube
Delayed Changelevel to CurrentMap on Server Startup

Would like a plugin that reloads the currentmap only once (at server startup) after 30 seconds of the map being loaded. I know how to make a timer and change the level, but how do I make it run only...
Forum: Scripting 01-29-2023, 03:22
Replies: 2
Views: 543
Posted By AuricYoutube
Re: [CSGO] Existential problems sourcemod

This was possible prior to panorama through sourcemod. Here is the old thread if you are interested: https://forums.alliedmods.net/showthread.php?t=262722
Forum: Scripting 01-16-2023, 13:28
Replies: 4
Views: 950
Posted By AuricYoutube
Re: set sv_downloadurl to server ip

Thank you it works :bacon!::bacon!:
Forum: Scripting 01-12-2023, 15:31
Replies: 4
Views: 950
Posted By AuricYoutube
Re: set sv_downloadurl to server ip

I meant for the plugin to grab the server ip from the server by itself not hardcoded
Forum: Scripting 01-12-2023, 04:04
Replies: 4
Views: 950
Posted By AuricYoutube
set sv_downloadurl to server ip

how do I set sv_downloadurl cvar to server ip on plugin load?
Forum: Scripting 09-22-2022, 13:32
Replies: 4
Views: 877
Posted By AuricYoutube
Re: [CSGO] force hidehud command

Using this and typing !hidehud 9 in chat does not work. I am referring to the sv_cheats protected command hidehud 9 in console. (My server is sv_cheats 1 so it works)
Forum: Scripting 09-22-2022, 11:22
Replies: 4
Views: 877
Posted By AuricYoutube
[CSGO] force hidehud command

Is there any way to force run the command 'hidehud 9' on client?

On CSGO, this removes hp/armor and ammo count parts of hud.

// Hud Element hiding flags (possibly outdated)
#define ...
Forum: Plugins 09-02-2022, 14:19
Replies: 291
Views: 208,841
Posted By AuricYoutube
Re: [ANY] Goomba Stomp (2.0.2)

You can just comment out the PrintHintText in the source of the addon plugin you're using for this plugin.

For the TF2 one (goomba_tf.sp)

You can comment out this line:
PrintHintText(victim,...
Forum: Scripting 08-28-2022, 14:09
Replies: 6
Views: 915
Posted By AuricYoutube
Forum: Scripting 08-18-2022, 01:33
Replies: 6
Views: 915
Posted By AuricYoutube
Re: [CSGO] Workshop Collection Cycling

I tried using a timer for this but it did not really work because the while loop would still go on and the timer would not delay it at all.
Forum: Scripting 08-16-2022, 17:02
Replies: 6
Views: 915
Posted By AuricYoutube
Re: [CSGO] Workshop Collection Cycling

Based on https://raw.githubusercontent.com/kidfearless/Misc-Sourcemod-Plugins/master/collection_fix.sp

#include <sourcemod>
#include <sdktools>

#pragma newdecls required

public void...
Forum: Scripting 08-16-2022, 08:17
Replies: 6
Views: 915
Posted By AuricYoutube
Re: [CSGO] Workshop Collection Cycling

These commands change to the maps, while ds_get_newest_subscribed_files simply grabs the workshop collection id from subscribed_file/collection_ids.txt and compares the maps in there to the map files...
Forum: Scripting 08-16-2022, 06:02
Replies: 6
Views: 915
Posted By AuricYoutube
[CSGO] Workshop Collection Cycling

The steam workshop has trouble with updating multiple collections at once if the total map count is over 100 or 150 (about that much, it changes from time to time), it would return a HTTP 400 Error....
Forum: Scripting 07-02-2022, 04:35
Replies: 1
Views: 517
Posted By AuricYoutube
Kick/Ban Hook

#pragma semicolon 1
#include <sourcemod>
#include <sdktools>
#include <cstrike>

public OnPluginStart()
{
HookEvent("player_death", Event_PlayerDeath);
HookEvent("client_disconnect",...
Forum: Scripting 06-23-2022, 17:55
Replies: 17
Views: 3,731
Posted By AuricYoutube
Re: sv_cheats ONLY FOR HOST / ADMIN

It should automatically turn on sv_cheats for anyone with the root (z) flag, again untested
Forum: Scripting 06-23-2022, 12:34
Replies: 12
Views: 1,190
Posted By AuricYoutube
Re: plugin causing csgo srcds freeze

He also said that timer wouldn’t be good because it would not be accurate for simulating a tickrate
Forum: Scripting 06-23-2022, 09:17
Replies: 17
Views: 3,731
Posted By AuricYoutube
Re: sv_cheats ONLY FOR HOST / ADMIN

I do not know why it did not compile for you. Try the webcompiler below.
Forum: Scripting 06-23-2022, 09:12
Replies: 12
Views: 1,190
Posted By AuricYoutube
Re: plugin causing csgo srcds freeze

I am beginning to understand why it is crashing but I am unsure of how to solve it.

I have tried doing what you suggested but it still crashes.

static float oldyaw;
static float delta;
Forum: Scripting 06-22-2022, 17:00
Replies: 12
Views: 1,190
Posted By AuricYoutube
Re: plugin causing csgo srcds freeze

I tried to understand what you sent but there is nothing in the link which you have sent. I apologize for my lack of coding knowledge.
Forum: Scripting 06-22-2022, 13:41
Replies: 17
Views: 3,731
Posted By AuricYoutube
Forum: Scripting 06-22-2022, 04:32
Replies: 17
Views: 3,731
Posted By AuricYoutube
Re: sv_cheats ONLY FOR HOST / ADMIN

untested:

#include <sourcemod>

Handle sv_cheats = null;

public void OnPluginStart()
{
sv_cheats = FindConVar("sv_cheats");
Forum: Scripting 06-17-2022, 07:08
Replies: 12
Views: 1,190
Posted By AuricYoutube
Re: plugin causing csgo srcds freeze

Can you explain how to do it here for this plugin?
Forum: Scripting 06-16-2022, 19:12
Replies: 12
Views: 1,190
Posted By AuricYoutube
Forum: Scripting 06-16-2022, 10:27
Replies: 12
Views: 1,190
Posted By AuricYoutube
plugin causing csgo srcds freeze

#include <sourcemod>
#include <sdktools>
#pragma newdecls required
#pragma semicolon 1

float gF_LastSpeed[MAXPLAYERS + 1];
float g_flOldYawAngle[MAXPLAYERS + 1];
bool...
Showing results 1 to 25 of 327

 
Forum Jump

All times are GMT -4. The time now is 21:19.


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