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

Showing results 1 to 25 of 99
Search took 0.01 seconds.
Search: Posts Made By: BeepIsla
Forum: General 10-07-2023, 08:34
Replies: 5
Views: 8,219
Posted By BeepIsla
Re: CS2 game ID

Login with a random throw away account and download AppID 730 then launch with "-dedicated" launch option
Forum: Scripting 08-09-2023, 04:36
Replies: 1
Views: 913
Posted By BeepIsla
Re: [TF2] Is it possible to wrangle a Sentry without holding a Wrangler?

According to the TF2 source code leak it should be something along the lines of

1. Create "env_laserdot" / Teleport it around where the player is looking based on a trace ray
2. Call...
Forum: Source Servers (SRCDS) 07-29-2023, 11:58
Replies: 3
Views: 2,134
Posted By BeepIsla
Re: TF2 100 player servers questions?

I have privately with bots, it runs okay you will have crashes every now and then due to the edict limit being reached (I heard its getting increased some time in the future though). For SourceMod...
Forum: Scripting 07-25-2023, 07:24
Replies: 4
Views: 1,419
Posted By BeepIsla
Re: How do I increase the Origin Engine limit

You can't. You used to be able to go up to 64 max but it was fixed.

Its probably technically possible to do some very weird magic with transmitting players as regular entities like a prop_dynamic...
Forum: Scripting 05-31-2023, 16:49
Replies: 7
Views: 989
Posted By BeepIsla
Re: Zeus with clip size 10, how?

Just count how many times a client has fired the taser and remove the weapon once the limit is reached. For the cooldown just use the built in "mp_taser_recharge_time".
Forum: Source Servers (SRCDS) 05-30-2023, 16:44
Replies: 5
Views: 1,585
Posted By BeepIsla
Re: How to run a dedicated server on an old cs:go build?

The message does not prevent you from running or joining your server. You have setup the server incorrectly if it does not work. You are giving too little information to work with here. What are your...
Forum: Source Servers (SRCDS) 05-28-2023, 14:11
Replies: 5
Views: 1,585
Posted By BeepIsla
Re: How to run a dedicated server on an old cs:go build?

You can ignore this message. Its just a warning, if on Linux and setup correctly it will also automatically shutdown the server. But otherwise just ignore the "Out of date" message
Forum: General 05-26-2023, 08:03
Replies: 5
Views: 640
Posted By BeepIsla
Re: CSGO How can i turn off end map vote?

Not sure if this is still the case but the convar "mp_endmatch_votenextmap" does not work anymore since the Panorama update, maybe it was fixed since then idk.

The solution back then was to create...
Forum: General 05-14-2023, 09:42
Replies: 4
Views: 521
Posted By BeepIsla
Re: How to handle flash-assisted

You would probably have to track every flashbang and the owner of it (Player who threw the flashbang) with the "flashbang_detonate" event...
Forum: Scripting 05-13-2023, 18:32
Replies: 1
Views: 335
Posted By BeepIsla
Re: [TF2] Run code when point is captured?

See the TF2 events list on the wiki (https://wiki.alliedmods.net/Team_Fortress_2_Events#teamplay_point_captured)
Forum: General 05-13-2023, 18:30
Replies: 4
Views: 521
Posted By BeepIsla
Re: How to handle flash-assisted

What game? I assume CSGO. I don't know any other Source game with flash assists

See the CSGO event list on the wiki...
Forum: General 04-25-2023, 23:12
Replies: 2
Views: 1,022
Posted By BeepIsla
Re: Anti Cheat Vaccoin

This has nothing to do with SourceMod, reports are better than a token.

9 out of 10 times players would use the token on someone who isn't cheating but is just having a good day or got lucky,...
Forum: General 03-14-2023, 09:35
Replies: 102
Views: 49,108
Posted By BeepIsla
Re: Source 2 is finally coming to CS:GO ???

They would never make another game to replace CSGO, it makes no sense to do that. It will most definitely be an update
Forum: General 03-03-2023, 20:17
Replies: 4
Views: 1,072
Posted By BeepIsla
Re: [CS:GO]Explanation plugin

It probably just modifies the response the server sends or builds its entirely own response to queries: https://developer.valvesoftware.com/wiki/Server_queries

Most likely stopped working because...
Forum: General 03-01-2023, 22:53
Replies: 4
Views: 1,072
Posted By BeepIsla
Re: [CS:GO]Explanation plugin

When you connect to a server the server can reject your connection with a special reason starting with "ConnectRedirectAddress:" if the disconnect reason starts with that string the rest of it is...
Forum: General 02-27-2023, 16:46
Replies: 6
Views: 775
Posted By BeepIsla
Re: clients freeze when they execute a loop alias

What game? Some games have the wait command forcefully disabled like CSGO iirc. Depending on what the command does you can just rewrite the plugin logic to be automatic server-side
Forum: General 01-26-2023, 05:57
Replies: 3
Views: 740
Posted By BeepIsla
Re: CSGO Timeout Delay issue

sv_vote_command_delay
Forum: Scripting 01-16-2023, 19:51
Replies: 7
Views: 904
Posted By BeepIsla
Re: [HELP] TF2 Flamethrower Halloween particle

In theory you have to ignite the target with a specific weapon and set that weapon to have green flames via attributes.

So you have to create a flamethrower, put it anywhere in the world doesn't...
Forum: Source Servers (SRCDS) 01-15-2023, 17:01
Replies: 3
Views: 1,068
Posted By BeepIsla
Re: CSGO Workshop maps causing official maps to disappear from map voting menu

mapcycle.txt is not used - You must use mapgroups via gamemodes_server.txt and the "mapgroup" convar
Forum: Scripting 01-14-2023, 16:38
Replies: 5
Views: 1,037
Posted By BeepIsla
Re: [TF2] Calling Card Attribute

The player needs the attribute, not the weapon. It just a death particle effect as far as I can tell

Edit: I can't read you said you put it on the client or weapon and neither works. What do you...
Forum: General 12-19-2022, 15:38
Replies: 5
Views: 1,840
Posted By BeepIsla
Re: Is ProtectCMDs extension safe?

This? https://github.com/PowerTakeDev/ProtectCmds

You can just read the source code and compile it yourself if you don't trust the version uploaded on the releases section of the page
Forum: Scripting 12-04-2022, 01:40
Replies: 3
Views: 844
Posted By BeepIsla
Re: [CSGO] Retrieve Steam Avatar

Probably through the ISteamUser/GetPlayerSummaries (https://steamapi.xpaw.me/#ISteamUser/GetPlayerSummaries) Steam API
Forum: Scripting 11-14-2022, 05:13
Replies: 2
Views: 476
Posted By BeepIsla
Re: [Rest in pawn] get a value from a json object

According to the documentation of the extension used: (https://github.com/ErikMinekus/sm-ripext/blob/c2a5fd78d20d791dc0e7851ed1a6464c3be5ee81/pawn/scripting/include/ripext/json.inc#L56)


char...
Forum: Source Servers (SRCDS) 11-14-2022, 05:03
Replies: 5
Views: 1,076
Posted By BeepIsla
Re: [CS:GO] Questions regarding -autoupdate server parameter

The only thing the game does with the "-autoupdate" launch option is shut off the server the next time hibernation starts (or immediately when already hibernating) when the server is marked as "Out...
Forum: Scripting 11-07-2022, 06:10
Replies: 3
Views: 640
Posted By BeepIsla
Re: [CSGO] Stop round end from incrementing team score

CSGO has a function with the same name, the docs are most probably talking about that one, not the SourceMod function
Showing results 1 to 25 of 99

 
Forum Jump

All times are GMT -4. The time now is 01:32.


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