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

[CSGO] help me with this plugin


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
darkboss
Member
Join Date: Mar 2020
Location: Street (Homeless)
Old 12-02-2021 , 19:45   [CSGO] help me with this plugin
Reply With Quote #1

Everytime when i drop the knife i can't pick up it back .. Any idea?

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

#define DATA "2.2"

public Plugin myinfo =
{
name = "SM CS:GO Spawn With Melee Weapons",
author = "Franc1sco franug",
description = "Force players to spawn different melee weapons",
version = DATA,
url = "http://steamcommunity.com/id/franug"
};

ConVar cv_team;
ConVar cv_fists;
ConVar cv_knife;
ConVar cv_axe;
ConVar cv_hammer;
ConVar cv_spanner;
ConVar cv_wtimer;

int g_iTeam;
int g_bFists;
int g_bKnife;
int g_bAxe;
int g_bHammer;
int g_bSpanner;
float g_fTimer;

public void OnPluginStart()
{
CreateConVar("sm_csgomeleeweapons_version", DATA, "Plugin Version", FCVAR_NONE|FCVAR_SPONLY|FCVAR_REPLICATED|FCVA R_NOTIFY|FCVAR_DONTRECORD);

cv_team = CreateConVar("sm_csgomeleeweapons_team", "4", "Apply only to a team. 2 = terrorist, 3 = counter-terrorist, 4 = both.", 0, true, 0.0, true, 4.0);
cv_fists = CreateConVar("sm_csgomeleeweapons_fists", "1", "Give fists? 1 = yes, 0 = no.", 0, true, 0.0, true, 1.0);
cv_knife = CreateConVar("sm_csgomeleeweapons_knife", "1", "Give knife? 1 = yes, 0 = no.", 0, true, 0.0, true, 1.0);
cv_axe = CreateConVar("sm_csgomeleeweapons_axe", "0", "Give axe on spawn? 1 = yes, 0 = no.", 0, true, 0.0, true, 1.0);
cv_hammer = CreateConVar("sm_csgomeleeweapons_hammer", "0", "Give hammer on spawn? 1 = yes, 0 = no.", 0, true, 0.0, true, 1.0);
cv_spanner = CreateConVar("sm_csgomeleeweapons_spanner", "0", "Give spanner on spawn? 1 = yes, 0 = no.", 0, true, 0.0, true, 1.0);
cv_wtimer = CreateConVar("sm_csgomeleeweapons_timer", "1.6", "Time in seconds after spawn to give melee weapons.", 0, true, 0.0);

g_iTeam = GetConVarInt(cv_team);
g_bFists = GetConVarInt(cv_fists);
g_bKnife = GetConVarInt(cv_knife);
g_bAxe = GetConVarInt(cv_axe);
g_bHammer = GetConVarInt(cv_hammer);
g_bSpanner = GetConVarInt(cv_spanner);
g_fTimer = GetConVarFloat(cv_wtimer);

HookConVarChange(cv_team, OnConVarChanged);
HookConVarChange(cv_fists, OnConVarChanged);
HookConVarChange(cv_knife, OnConVarChanged);
HookConVarChange(cv_axe, OnConVarChanged);
HookConVarChange(cv_hammer, OnConVarChanged);
HookConVarChange(cv_spanner, OnConVarChanged);
HookConVarChange(cv_wtimer, OnConVarChanged);

// Plugin only for csgo
if(GetEngineVersion() != Engine_CSGO)
SetFailState("This plugin is for CSGO only.");

// hook spawn event
HookEvent("player_spawn", Event_PlayerSpawn);

AutoExecConfig(true, "csgo_melee_weapons");
}

public void OnConVarChanged(ConVar convar, const char[] oldVal, const char[] newVal)
{
if (convar == cv_team) {
g_iTeam = StringToInt(newVal);
} else if (convar == cv_fists) {
g_bFists = StringToInt(newVal);
} else if (convar == cv_knife) {
g_bKnife = StringToInt(newVal);
} else if (convar == cv_axe) {
g_bAxe = StringToInt(newVal);
} else if (convar == cv_hammer) {
g_bHammer = StringToInt(newVal);
} else if (convar == cv_spanner) {
g_bSpanner = StringToInt(newVal);
} else if (convar == cv_wtimer) {
g_fTimer = StringToFloat(newVal);
}
}

public void Event_PlayerSpawn(Event event, const char[] name, bool dontBroadcast)
{
int client = GetClientOfUserId(GetEventInt(event, "userid"));

// delay for don't conflict with others plugins that give weapons on spawn (?)
CreateTimer(g_fTimer, Timer_Delay, GetClientUserId(client));
}

public Action Timer_Delay(Handle timer, int id)
{
// check if client valid
int client = GetClientOfUserId(id);
if(!client || !IsClientInGame(client) || !IsPlayerAlive(client) || (g_iTeam < 4 && g_iTeam != GetClientTeam(client)))
return;

// remove all the weapons on "melee slot" in order to prevent the bug of duplicated fists
int weapon;
while((weapon = GetPlayerWeaponSlot(client, CS_SLOT_KNIFE)) != -1)
{
RemovePlayerItem(client, weapon);
AcceptEntityInput(weapon, "Kill");
}

int iMelee;

//Fists
if (g_bFists)
{
iMelee = GivePlayerItem(client, "weapon_fists");
EquipPlayerWeapon(client, iMelee);
}

if (g_bAxe)
{
iMelee = GivePlayerItem(client, "weapon_axe");
EquipPlayerWeapon(client, iMelee);
}

if (g_bHammer)
{
iMelee = GivePlayerItem(client, "weapon_hammer");
EquipPlayerWeapon(client, iMelee);
}

if (g_bSpanner)
{
iMelee = GivePlayerItem(client, "weapon_spanner");
EquipPlayerWeapon(client, iMelee);
}

if (g_bKnife)
{
iMelee = GivePlayerItem(client, "weapon_knife");
EquipPlayerWeapon(client, iMelee); // if not then knife dropped :s
}
}

stock bool IsValidClient(int client)
{
if ((client <= 0) || (client > MaxClients)) {
return false;
}
if (!IsClientInGame(client)) {
return false;
}
return true;
}

Last edited by darkboss; 12-03-2021 at 10:34.
darkboss is offline
Levi2288
AlliedModders Donor
Join Date: Apr 2019
Old 12-09-2021 , 20:48   Re: [CSGO] help me with this plugin
Reply With Quote #2

Quote:
Originally Posted by darkboss View Post
Everytime when i drop the knife i can't pick up it back .. Any idea?

https://forums.alliedmods.net/showthread.php?t=312551
__________________
Levi2288 is offline
darkboss
Member
Join Date: Mar 2020
Location: Street (Homeless)
Old 12-12-2021 , 09:59   Re: [CSGO] help me with this plugin
Reply With Quote #3

Quote:
Originally Posted by Levi2288 View Post
i tried ,but nothing the same problem if u have bare hands u can't pick up dropped knife (i mean in the same time), but u can have bare hand after dropping the knife

Last edited by darkboss; 12-13-2021 at 01:34.
darkboss is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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


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