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

Showing results 1 to 25 of 61
Search took 0.01 seconds.
Search: Posts Made By: kondzixd
Forum: Scripting 10-22-2015, 03:46
Replies: 17
Views: 9,007
Posted By kondzixd
[CS GO] Set player invisible weapon

Hi. If someone does not know is the way to set player visibility alpha in cs go. U have to change this cvar:
sv_disable_immunity_alpha 1
It works, but my problem is how to change visibility of...
Forum: Scripting 08-08-2015, 15:28
Replies: 2
Views: 425
Posted By kondzixd
[CS GO] Player Visability

Hi.
Someone told me that he know how to set player visability at 30% (or other), but he want tell me how to do it.
Is that possible in cs go? Last time i checked no one know how to do it.
Forum: Source Servers (SRCDS) 07-08-2015, 11:43
Replies: 1
Views: 841
Posted By kondzixd
[CS GO] Free look for all and voice settings

Hi.
How to turn on free look for all players?
I set sv_alltalk 1 but i want to alive players cant hear and see chat dead players.

I looking for solution last 3 days.

Sorry for my english and...
Forum: General 07-08-2015, 07:45
Replies: 2
Views: 570
Posted By kondzixd
Re: Alive cant hear dead and admin free look

It is CS GO server
DHook shutting down server when first player join the game.
Forum: General 07-07-2015, 18:59
Replies: 2
Views: 570
Posted By kondzixd
Alive cant hear dead and admin free look

Hi. I am looking a plugins:
- I have cvar sv_alltalk 1 but i want to alive players cant hear and see chat dead players
- I looking for a plugin that admin can see all players when he's dead.
...
Forum: General 07-07-2015, 18:57
Replies: 1
Views: 837
Posted By kondzixd
Native "BfWriteByte" was not found

Hi. Some plugins call:

Native "BfWriteByte" was not found

It happend because of last update? How to fix it?

Sorry for my english :)
Forum: HL1 Servers (HLDS) 07-03-2015, 08:40
Replies: 10
Views: 5,050
Posted By kondzixd
Dynamic Sky Cs 1.6

Hi. Someone know how to do dynamic sky in Cs 1.6?
Video: https://www.youtube.com/watch?v=eCUfE8vPgrk
Forum: Scripting 06-28-2015, 04:16
Replies: 0
Views: 480
Posted By kondzixd
[CS GO] SetTransmit go give player visability skill

Hi. Player number one is invisible. I give player number two ability to see invisible players.
How to do it using SetTransmit?
public OnClientDisconnect(client)
{
SDKUnhook(client,...
Forum: Source Servers (SRCDS) 06-23-2015, 08:12
Replies: 1
Views: 1,573
Posted By kondzixd
Problem with GivePlayerItem(client, "weapon_usp");

Hi.

I have a problem. When i try to give player usp:

GivePlayerItem(client, "weapon_usp");

Server is crashing. Error logs:

Error reading weapon data file for: weapon_usp...
Forum: Scripting 06-23-2015, 04:48
Replies: 1
Views: 855
Posted By kondzixd
[CS GO] How to see invisible players and flash protection

Hi.
I have 2 problems:
- How give flash protection for players?
- How can i give player ability to see invisible players?

Sorry for my english :)
Forum: Scripting 04-09-2015, 10:13
Replies: 6
Views: 1,137
Posted By kondzixd
Re: [CS GO] Enter hostage zone or try to rescue hostage

I need to hook when i try to rescue hostage or touch them. My Code:

public OnClientPutInServer(client)
{
SDKHook(client, SDKHook_StartTouch, OnStartTouch);
SDKHook(client,...
Forum: Scripting 04-09-2015, 07:43
Replies: 6
Views: 1,137
Posted By kondzixd
[CS GO] Enter hostage zone or try to rescue hostage

Hi.

I need to hook when player enter to hostage zone or try to rescue host (I mean is push E near hostage).

It is possible to hook?
Forum: Scripting 04-06-2015, 06:00
Replies: 14
Views: 5,657
Posted By kondzixd
Re: [CS GO] Problem with silent footstep

It works! Thanks, but now i cant plant a bomb.
I will check if player enter and exit bomb site and got a bomb to give this flag.

If someone have better solution I will glad if u share :)
Forum: Scripting 04-05-2015, 20:57
Replies: 14
Views: 5,657
Posted By kondzixd
Re: [CS GO] Problem with silent footstep

I try this:

public OnPluginStart()
{
AddNormalSoundHook(SHook);
}
public Action:SHook(clients[64], &numClients, String:sample[PLATFORM_MAX_PATH], &entity, &channel, &Float:volume, &level,...
Forum: Scripting 04-05-2015, 12:16
Replies: 14
Views: 5,657
Posted By kondzixd
Re: [CS GO] Problem with silent footstep

Ok, i do it like this:

public OnPluginStart()
{
HookEvent("player_footstep", Event_FootStep, EventHookMode_Pre);
}

public Action:Event_FootStep(Handle:event, const String:name[],...
Forum: Scripting 04-04-2015, 17:00
Replies: 14
Views: 5,657
Posted By kondzixd
Re: [CS GO] Problem with silent footstep

How can I hook emit sound in cs go?
Forum: Scripting 04-04-2015, 07:17
Replies: 14
Views: 5,657
Posted By kondzixd
Re: [CS GO] Problem with silent footstep

I dont want to give all players silent footstep.
Forum: Scripting 04-04-2015, 00:50
Replies: 14
Views: 5,657
Posted By kondzixd
[CS GO] Problem with silent footstep

Hi. I have a problem with silenced footstep. When i turn it on player is ducking all the time and cant plant a bomb (u must be on the ground if u want plant a bomb)

My code:

public...
Forum: Scripting 03-30-2015, 11:11
Replies: 10
Views: 2,664
Posted By kondzixd
Re: [CS GO] Player visability like WarmUp

It does not work in cs go, i tested it.
Forum: Scripting 03-30-2015, 09:07
Replies: 0
Views: 583
Posted By kondzixd
Using models crashing server

Hi. I found some models for cs go but if i use it crash my server. There is a lot of extra files and i don't know what i have to do with it.

I download a main model .mdl like this:

#define...
Forum: Scripting 03-30-2015, 08:50
Replies: 5
Views: 1,114
Posted By kondzixd
Re: [CS:GO] Give player weapon when he already has one

Before u give player a weapon to player check that slot is empty:

weapon_index = GetPlayerWeaponSlot(client, 0);
if(weapon_index != -1)
RemovePlayerItem(client,...
Forum: Scripting 03-28-2015, 10:49
Replies: 10
Views: 2,664
Posted By kondzixd
Re: [CS GO] Player visability like WarmUp

U mean it included in engine but sourcemod don't support it yet?
Forum: Scripting 03-28-2015, 09:21
Replies: 10
Views: 2,664
Posted By kondzixd
[CS GO] Player visability like WarmUp

Hi.

Someone know how to change player visability like in WarmUp? (I mean when player spawn and have protection)

Screens:

http://iv.pl/images/28430188366838693589_thumb.jpg...
Forum: Scripting 03-26-2015, 18:12
Replies: 5
Views: 2,779
Posted By kondzixd
Re: [CS GO] Get and Set reserve ammo

Works fine for me, thanks :)
Forum: Scripting 03-26-2015, 13:22
Replies: 3
Views: 843
Posted By kondzixd
[CO GO] Norecoil

Hi.

Somebody have a code that give player norecoil?
Showing results 1 to 25 of 61

 
Forum Jump

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


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