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

Showing results 1 to 25 of 404
Search took 0.01 seconds.
Search: Posts Made By: mug1wara
Forum: Plugins 01-17-2021, 10:43
Replies: 9
Views: 4,254
Posted By mug1wara
Re: [CSGO] No grenades block (1.0)

is it really necessary to clear the array(s) on plugin start, map start & end, or at all for that matter, as you already erase the value(s) when you're done?
Forum: Plugin/Gameplay Ideas and Requests 12-21-2020, 19:32
Replies: 2
Views: 798
Posted By mug1wara
Forum: Plugins 11-01-2018, 14:37
Replies: 18
Views: 20,699
Posted By mug1wara
Re: [CS:GO] Remove Cash & Points Messages

Instead of having like 20 if statements, you could also: if (StrContains(buffer, "Award") != -1) { // then stop }
Forum: Plugin/Gameplay Ideas and Requests 10-12-2018, 09:19
Replies: 5
Views: 1,086
Posted By mug1wara
Re: [IDEA] Spawn NPCs that can do stuff for you ($$$)

I'd go to Pelipoika; https://forums.alliedmods.net/showthread.php?t=297113
Forum: Plugin/Gameplay Ideas and Requests 10-10-2018, 11:55
Replies: 9
Views: 2,579
Posted By mug1wara
Re: Show PlayerClips

r_drawClipBrushes requires sv_cheats
Forum: Plugins 10-09-2018, 14:24
Replies: 7
Views: 5,348
Posted By mug1wara
Re: [CS:GO] Round Win Share for Retakes (v1.2 2018/10/9)

Saw the updated syntax version; great job!

This is what I like to see! :bacon!: :bacon!:
Forum: Plugin/Gameplay Ideas and Requests 10-09-2018, 14:21
Replies: 5
Views: 1,151
Posted By mug1wara
Re: [CS:GO] Invisibility

Please, use Google: https://forums.alliedmods.net/showthread.php?t=101305&highlight=godclip?t=101305&highlight=godclip.
Forum: Plugin/Gameplay Ideas and Requests 10-09-2018, 14:18
Replies: 6
Views: 1,196
Posted By mug1wara
Re: Create menu for all players

#include <sourcemod>

#pragma semicolon 1

public void OnPluginStart()
{
HookEvent("player_spawn", Event_Spawn);
}

public Action Event_Spawn(Event hEvent, const char[] sName, bool...
Forum: Scripting 10-09-2018, 14:08
Replies: 3
Solved Error 159
Views: 761
Posted By mug1wara
Re: Error 159

Both are command listeners and do pretty much the same, altough on AddCommandListener you pass the command as one of the parameters, where as on OnClientSayCommand, you'd still have to run a check...
Forum: Plugins 10-08-2018, 10:28
Replies: 7
Views: 5,348
Posted By mug1wara
Re: [CS:GO] Round Win Share for Retakes (v1.0 2018/10/8)

Hi, I haven’t read the code that well yet, but from what I’ve seen; you mix syntaxes. Try not to, even though it’s ur first plugin. Other than that, I think the idea is good! :bacon!:
Forum: Scripting 10-05-2018, 16:52
Replies: 7
Views: 2,181
Posted By mug1wara
Re: Error 100: Function prototypes do not match

even thogh this has nothing to do with the thread:
lmao, everyone can relate
Forum: Plugins 10-05-2018, 16:48
Replies: 5
Views: 6,695
Posted By mug1wara
Re: [CS:GO] Block Radio Chat

Great work, this is an awesome example of plugins that doens't have to be complicated.
Forum: Scripting 10-05-2018, 16:44
Replies: 7
Views: 2,181
Posted By mug1wara
Re: Error 100: Function prototypes do not match

(Handle:menu, MenuAction:action, client, itemNum, args)

->

(Handle:menu, MenuAction:action, client, itemNum)
Forum: Scripting 10-05-2018, 13:41
Replies: 17
Views: 2,434
Posted By mug1wara
Re: How force health to 100

Just use EventHookMode_Post, also I don't see why sdkhooks is necessary here.
Forum: General 10-04-2018, 13:12
Replies: 4
Views: 1,476
Posted By mug1wara
Re: Admin Ranks

s-s-s-s-s-sourcebaaaans
Forum: Plugin/Gameplay Ideas and Requests 10-04-2018, 09:53
Replies: 4
Views: 1,217
Posted By mug1wara
Re: Server Sided Anti-Cheat

Isn't smac or cow anti-cheat enough?
Forum: Scripting 10-03-2018, 11:49
Replies: 8
Views: 1,539
Posted By mug1wara
Re: CREATE TIMER for plugin

Altough I'm not entirely sure what he wants...



Guess I can't read sourcemod code then.
Forum: Scripting 10-03-2018, 08:26
Replies: 8
Views: 1,539
Posted By mug1wara
Re: CREATE TIMER for plugin

Ye, sure, but you did the opposite of what he asked for.
Forum: Scripting 10-02-2018, 14:22
Replies: 8
Views: 1,539
Posted By mug1wara
Re: CREATE TIMER for plugin

@Ilusion9

If you wouldn't mind... "but want i timer for swap all player in Terrorist"
Forum: Plugin/Gameplay Ideas and Requests 09-24-2018, 00:52
Replies: 6
Views: 1,045
Posted By mug1wara
Re: Change clantag when typing a command

Just post it here.

Bet u'll get quicker replies.
Forum: Scripting 09-24-2018, 00:50
Replies: 14
Views: 3,057
Posted By mug1wara
Re: CSGO Player Camera Control

Believe there's a prop for that if I'm not wrong.

Also, you could use TeleportEntity.
Forum: Plugins 09-21-2018, 17:06
Replies: 1
Views: 3,649
Posted By mug1wara
Re: [CS:GO] Round Restore v0.5

Gz on your first plugin! :bacon!:

This is cool, but pro tip; don't mix old and new syntax :)
Forum: Scripting 09-20-2018, 01:43
Replies: 8
Views: 1,687
Posted By mug1wara
Re: Issue with conditionals during a SQL query

Could you PrintToServer g_serverEntry please?
Forum: Scripting 09-19-2018, 15:38
Replies: 8
Views: 1,687
Posted By mug1wara
Re: Issue with conditionals during a SQL query

"SELECT entry FROM table WHERE steamID LIKE '%s'", szAuth

I'd say that is your main problem (haven't really checked the rest of the code that well).

What the query tells me is; find anything in...
Forum: Scripting 09-19-2018, 12:45
Replies: 10
Views: 1,655
Posted By mug1wara
Re: Changed name persistent over Mapchange

Post the entire code. We need to know where you are calling this function.
ok. did so
Showing results 1 to 25 of 404

 
Forum Jump

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


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