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

Showing results 1 to 25 of 155
Search took 0.01 seconds.
Search: Posts Made By: srvmil
Forum: Plugin/Gameplay Ideas and Requests 03-25-2018, 02:24
Replies: 4
Views: 2,276
Posted By srvmil
Re: [CSGO] Set invisible knife model

Wouldn't predator knife model works? From http://www.andi67.bplaced.net/Forum/viewtopic.php?f=39&t=396 as you can see the;

Knife files:
materials/models/weapons/v_models/avp/dtb.vmt...
Forum: Plugin/Gameplay Ideas and Requests 03-24-2018, 23:17
Replies: 4
Views: 2,276
Posted By srvmil
[CSGO] Set invisible knife model

I've found a predator model from http://www.andi67.bplaced.net/Forum/viewtopic.php?f=39&t=396 as it has a knife invisible model which Andi67 is member on this forum.

With the knife plugin, I'm...
Forum: Plugin/Gameplay Ideas and Requests 03-23-2018, 21:46
Replies: 20
Views: 5,347
Posted By srvmil
Re: CS:GO slow when hit

My code doesn't work but you can use Indarello's code as it is working. Use his as it few posts above. Or get it the quote reply!! Click on "Show" in the Spoiler part.
Forum: Plugin/Gameplay Ideas and Requests 03-22-2018, 02:24
Replies: 20
Views: 5,347
Posted By srvmil
Re: CS:GO slow when hit

So you are saying when you are jumping around, it is slowing you down? But running (by default) does work? If that is the case, as least running and silent walking both kept you going.

Maybe...
Forum: Plugin/Gameplay Ideas and Requests 03-18-2018, 03:30
Replies: 0
Views: 496
Posted By srvmil
[CSGO] High Damage get to play terrorist

Im looking for plugin where CTs do a high damage gets to play on Terrorist next round and so on. So based on higher damage, gets to be swapped to terrorist.

Im not sure what it is called, I've...
Forum: Plugin/Gameplay Ideas and Requests 03-18-2018, 03:00
Replies: 20
Views: 5,347
Posted By srvmil
Re: CS:GO slow when hit

Would it be something like this? I'm not an expert at SourcePawn.

#include <sourcemod>
#include <sdkhooks>
#include <sdktools>
#include <cstrike>

public OnPluginStart()
{
...
Forum: Plugin/Gameplay Ideas and Requests 03-11-2018, 08:51
Replies: 20
Views: 5,347
Posted By srvmil
Re: CS:GO slow when hit

I'm looking for this too, that sm_cvar mp_tagging_scale does not solve anything anymore I guess. Valve might have updated it.

This is what I've posted on -...
Forum: Plugin/Gameplay Ideas and Requests 03-06-2018, 18:58
Replies: 3
Views: 1,220
Posted By srvmil
Re: [CSGO] Invisible Grenades & Knife for Terrorist

Anyone? The last post I tried doesn't work. Does anyone know what I did wrong in the code?
Forum: Scripting 03-06-2018, 18:53
Replies: 17
Views: 3,517
Posted By srvmil
Re: CS:GO - Tagging "Slowing Down When Attacked"

Then you are saying to set it to client?

SetEntPropFloat(client, Prop_Send, "m_flVelocityModifier", 1.0);

but then again, will the health still go down even the slow down is being ignored? I've...
Forum: Plugins 03-04-2018, 05:06
Replies: 2,258
Views: 1,425,083
Posted By srvmil
Re: [CSS/CS:GO] Weapon Restrict

Like I mentioned, I can't find "PrintToChat" in weapon_restrict.sp, why dont you have a look because it is not in there. So there no way to remove the chat.
Forum: Plugins 03-03-2018, 22:45
Replies: 2,258
Views: 1,425,083
Posted By srvmil
Re: [CSS/CS:GO] Weapon Restrict

Easily to put them back on, but I would like to know how to stop these restrict message? To hide the message from chat for the mods on CSGO?

Spamming [SM] Weapon is restricted blah blah every...
Forum: Plugins 03-03-2018, 02:34
Replies: 2,258
Views: 1,425,083
Posted By srvmil
Re: [CSS/CS:GO] Weapon Restrict

PrintToChat doesn't exist in weapon_restrict.sp, I don't know where they have put them in?


EDIT:
Yes I did delete the translation but then now the console is spammed with those messages, it...
Forum: Plugin/Gameplay Ideas and Requests 03-03-2018, 00:16
Replies: 3
Views: 1,220
Posted By srvmil
Re: [CSGO] Invisible Grenades & Knife for Terrorist

Would it be something like this?

#include <sdkhooks>
#include <sdktools>

#define CSAddon_NONE 0
#define CSAddon_Flashbang1 (1<<0)
#define CSAddon_Flashbang2 (1<<1)...
Forum: Scripting 03-03-2018, 00:06
Replies: 17
Views: 3,517
Posted By srvmil
Re: CS:GO - Tagging "Slowing Down When Attacked"

So something like this?

#include <sourcemod>
#include <sdktools>
#include <sdkhooks>

public OnPluginStart()
{
for (new client = 1; client <= MaxClients; client++)
{
Forum: Plugins 03-02-2018, 22:14
Replies: 2,258
Views: 1,425,083
Posted By srvmil
Re: [CSS/CS:GO] Weapon Restrict

Is there any way to hide the message from chat for the mods on CSGO?

Spamming [SM] Weapon is restricted blah blah every rounds is kinda annoying and everyone knows what weapons are restricted....
Forum: Plugin/Gameplay Ideas and Requests 03-02-2018, 08:32
Replies: 3
Views: 1,220
Posted By srvmil
Forum: Scripting 03-02-2018, 08:31
Replies: 17
Views: 3,517
Posted By srvmil
Re: CS:GO - Tagging "Slowing Down When Attacked"

I have no idea what I have to do, can anybody do this for me please?
Forum: Plugin/Gameplay Ideas and Requests 03-01-2018, 08:03
Replies: 1
Views: 825
Posted By srvmil
Re: csgo Slowed on hit

sm_cvar mp_tagging_scale "0" or sm_cvar mp_tagging_scale "7" in your sourcemod.cfg

That didn't work for me but might work for others.

EDIT: This might be what you're looking for -...
Forum: Plugin/Gameplay Ideas and Requests 03-01-2018, 07:04
Replies: 3
Views: 1,220
Posted By srvmil
[CSGO] Invisible Grenades & Knife for Terrorist

Can somebody make a plugin that can have some invisibility to the knife and grenades at certain percentage?

Eg, 30% invisible for knife and 15% for grenades. Is this possible?

Make sure it is...
Forum: Scripting 03-01-2018, 04:41
Replies: 9
Views: 1,959
Posted By srvmil
Re: cs:go Flash light and nightvision for my server

I tested Rohanlogs's plugins and his one only works for CT. Click the spoiler and then try that, it definitely what we're after :)
Forum: Plugins 03-01-2018, 02:02
Replies: 7
Views: 7,782
Posted By srvmil
Re: [CSGO] Gun Menu With Currency Support

Ah its ok, not a big deal anyway.

How do I remove an space at the start of the [GUNS] for annoucement and others.


[GUNS] Type !guns for menu (is what your is currently showing)
[GUNS]...
Forum: Scripting 03-01-2018, 00:34
Replies: 9
Views: 1,959
Posted By srvmil
Re: cs:go Flash light and nightvision for my server

Will test it Rohanlogs and will report back :)

EDIT: Can confirm that one is working now for CT only. Thanks :)
Forum: Scripting 02-28-2018, 23:36
Replies: 9
Views: 1,959
Posted By srvmil
Re: cs:go Flash light and nightvision for my server

I can confirm flashlight does work if you press the "F" key on your keyboard.

However, I tested it, the terrorist team still get the flashlight with the F key. I thought this is for CT only?
Forum: Scripting 02-28-2018, 22:51
Replies: 17
Views: 3,517
Posted By srvmil
Re: CS:GO - Tagging "Slowing Down When Attacked"

Thanks, I did tried that tagging scale but it didnt work as it still slow down when being attacked.

From what I understand with this plugin is taking no damage from all weapons? But I'd like to...
Forum: Scripting 02-28-2018, 21:38
Replies: 17
Views: 3,517
Posted By srvmil
Re: CS:GO - Tagging "Slowing Down When Attacked"

To which part? Can you up your newest one as I'm using your plugin.

Would love to use this as it is annoying being slowed down when attacked.
Showing results 1 to 25 of 155

 
Forum Jump

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


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