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

Showing results 1 to 25 of 158
Search took 0.01 seconds.
Search: Posts Made By: TheWhitesmith
Forum: Plugins 03-18-2020, 13:04
Replies: 983
Views: 331,206
Posted By TheWhitesmith
Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)

Here is a fixed version of weapons.sp
Author forgot to pass size of Item/Items to GetArrayArray, which I think caused the client value to be modified!
Forum: Scripting 07-14-2018, 16:19
Replies: 27
Views: 5,056
Posted By TheWhitesmith
Re: [CS:GO] Ban By VAC

This is very wrong, people may get kicked by VAC but they aren't really VAC Banned.
Example: "Disconnect: VAC authentication error" (when you open Cheat Engine or Process Hacker 2 while playing on...
Forum: Scripting Help 07-08-2018, 21:38
Replies: 3
Views: 952
Posted By TheWhitesmith
Re: Speed meter

Thats nothing more than a X Y stuff, try to edit it (set_hudmessage) until you find the best positions you need.
Forum: Scripting Help 07-08-2018, 21:32
Replies: 8
Views: 1,583
Posted By TheWhitesmith
Re: menu_create GET STEAMID

Pretty sure to not show the player's steamid in the menu, since he wants other's infos not his.
Forum: Source Servers (SRCDS) 07-08-2018, 21:19
Replies: 60
Views: 40,278
Posted By TheWhitesmith
Re: Hud text is now supported in csgo!

Didnt try it but should work imo
Forum: Source Servers (SRCDS) 07-08-2018, 21:09
Replies: 353
Views: 90,727
Posted By TheWhitesmith
Re: No MOTD in Panorama

Well I expect from communities that rely on ads to kick players that use Panorama, if most of servers do it then theres no doubt that people will go back to the old style.

Unless Valve removes the...
Forum: Unapproved/Old Plugins 06-17-2018, 12:05
Replies: 6
Views: 2,135
Posted By TheWhitesmith
Re: Commands Logger Console

I am the Author of this plugin and I can say that it's made specially for NoSteam servers, using this on a Steam server has no benefit since no command can flood it.
Forum: Unapproved/Old Plugins 06-17-2018, 11:57
Replies: 6
Views: 2,135
Posted By TheWhitesmith
Re: Commands Logger Console

Oh really
"Edited By Crey" ?
Forum: Unapproved/Old Plugins 03-24-2018, 18:19
Replies: 271
Views: 151,964
Posted By TheWhitesmith
Re: Global Offensive Mod 2.15 Beta [LAST UPDATE: 08. 13] *BUG FIXED

I will consider posting my version of the plugin when DeRoiD or mods give me the permission to.
Forum: Unapproved/Old Plugins 03-24-2018, 18:18
Replies: 271
Views: 151,964
Posted By TheWhitesmith
Re: Global Offensive Mod 2.15 Beta [LAST UPDATE: 08. 13] *BUG FIXED

Much bugs are easy to fix, other bugs need a rework as I did long time before for this mod.
It's a cool mod *IF* you have a basic (just basic) knowledge of AMXX Scripting.
Forum: Scripting Help 01-20-2018, 12:53
Replies: 0
Views: 470
Posted By TheWhitesmith
"SV_GetIDString" orpheu problem

Edit: I was so dumb that I mistyped the name function correctly...
Forum: General 01-18-2018, 14:40
Replies: 276
Views: 209,787
Posted By TheWhitesmith
Re: RELEASE | SPEdit - a lightweight sourcepawn editor - NEW: Object-Browser/Translat

so sad I cant use this... It keeps crashing on startup (when the logo appears)
and yes, I already have the latest version of .NET
EDIT: Works like a charm when setting compatibility to Windows 7...
Forum: Suggestions / Requests 01-14-2018, 08:56
Replies: 7
Views: 2,565
Posted By TheWhitesmith
Re: Force T & CT player models

i'm lazy too, here you go.
public plugin_init() {
register_plugin("Admin Model", "1.0", "Tahiri")
RegisterHam(Ham_Spawn, "player", "ham_PlayerSpawn_Post", 1)
return PLUGIN_CONTINUE
}
public...
Forum: Scripting Help 01-14-2018, 08:43
Replies: 3
Views: 880
Posted By TheWhitesmith
Re: Right Моusе Аttасk

if( !(pev(attacker, pev_flags) & FL_ONGROUND) ) // attacker is not on the ground
client_print(victim,print_chat,"[AMXX] That boi got you while in the air.")
Forum: Scripting Help 01-14-2018, 08:39
Replies: 10
Views: 1,816
Posted By TheWhitesmith
Re: How to use "cs_set_c4_explode_time" ??

So you would have to loop for all grenades, or just check if the grenade spawned is a C4 and save the entity id.
Forum: General 12-28-2017, 14:58
Replies: 2
Views: 737
Posted By TheWhitesmith
Re: I need some basic information

make sure the directory has write permission
Forum: Unapproved Plugins 12-28-2017, 13:22
Replies: 7
Views: 7,445
Posted By TheWhitesmith
Re: [CSGO] Pokeball Grenades (1.1 | 2017-12-17)

What is the reason for unapproving this? Since you can use custom models/skins that do not exist in CSGO
Forum: Scripting Help 12-26-2017, 13:39
Replies: 1
Views: 769
Posted By TheWhitesmith
weird problems EngFunc_DecalIndex

*please delete this thread*
Forum: Scripting Help 12-23-2017, 19:54
Replies: 3
Views: 1,182
Posted By TheWhitesmith
Re: Detect and block sounds

I'd say changing footsteps sound (when walking on metal, etc...) and changing sound when climbing ladder, and spray sound if possible.
Forum: Scripting Help 12-23-2017, 11:55
Replies: 3
Views: 1,182
Posted By TheWhitesmith
Detect and block sounds

I know it's simple if you use FM_EmitSound, but it does not detect everything (footsteps, ladder climbing, etc...). I'd like to know how can I detect these sounds and maybe block then if possible. ...
Forum: Scripting Help 12-23-2017, 11:48
Replies: 10
Views: 2,378
Posted By TheWhitesmith
Re: Block the amx_teleport & amx_cvar sv_maxvelocity script

#include <amxmodx>
#include <amxmisc>

#define DEFVALUE 2000.0 //REMEMBER, FLOAT HERE

new pCvarMV

public plugin_init() {
pCvarMV = get_cvar_pointer("sv_maxvelocity")
set_task(5.0,...
Forum: Scripting Help 12-23-2017, 11:41
Replies: 4
Views: 1,268
Posted By TheWhitesmith
Re: Detecting weapon change without Ham_Item_Deploy.

CurWeapon and check if current weapon is last weapon?
Forum: Scripting Help 12-19-2017, 11:50
Replies: 15
Views: 4,640
Posted By TheWhitesmith
Re: Guillotine few codes

Oh yeah he edited the quote so people would think nothing was done there.
Forum: Scripting Help 12-18-2017, 17:49
Replies: 2
Views: 693
Posted By TheWhitesmith
Re: Admin and VIP Codes

Just below Changeweapon_Hook(id), edit that line with this
if(!is_user_alive(id) || !is_user_admin(id))
Forum: Scripting Help 12-18-2017, 17:30
Replies: 15
Views: 4,640
Posted By TheWhitesmith
Re: Guillotine few codes

He apparently didnt edit anything, came up with a code that he downloaded somewhere and wants someone to do the work (someone already did it and he still asks for the same thing)
Showing results 1 to 25 of 158

 
Forum Jump

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


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