Raised This Month: $ Target: $400
 0% 

Showing results 1 to 25 of 135
Search took 0.01 seconds.
Search: Posts Made By: Jackol1234
Forum: Scripting 12-05-2016, 09:32
Replies: 5
Views: 1,546
Posted By Jackol1234
Re: Team Flash announcement - CS GO

I removed the damage part and updated the syntax. Try it out and tell me how it goes. The only issue I see that could happen is "flashbang_detonate" is called before "player_blind" which could mess...
Forum: Plugin/Gameplay Ideas and Requests 12-03-2016, 21:24
Replies: 1
Views: 855
Posted By Jackol1234
Re: Resserved slots for admins?

This is in base SourceMod. Find the plugin "reservedslots.smx" and then configure it how you want in configs.
Forum: Scripting 08-07-2016, 10:48
Replies: 4
Views: 1,817
Posted By Jackol1234
Re: [CSGO] Make a circle of players around a target

Yeah I was just building around the math really. This plugin is far from done. Thanks for all the help!
Forum: Scripting 08-07-2016, 10:43
Replies: 4
Views: 1,817
Posted By Jackol1234
Re: [CSGO] Make a circle of players around a target

Alright, cool. And is the math correct? I know you were the original one to answer in the other thread and I tried implementing what you said.
Forum: Scripting 08-07-2016, 10:27
Replies: 4
Views: 1,817
Posted By Jackol1234
[CSGO] Make a circle of players around a target

So I'm trying to learn how to make circles in SourceMod and also make a plugin for a friend. The idea is that you supply a target and distance and it'll make a circle of every player on the server...
Forum: Plugin/Gameplay Ideas and Requests 08-05-2016, 03:21
Replies: 3
Views: 1,033
Posted By Jackol1234
Re: Searching Veteran scripter for paid requests !

What kind of plugins are you looking for?
Forum: Plugin/Gameplay Ideas and Requests 08-03-2016, 23:10
Replies: 7
Views: 1,988
Posted By Jackol1234
Re: VIP Buy

If you use SourceBans you can use Donation Control here: https://forums.alliedmods.net/showthread.php?t=221742

If you don't use SourceBans, you can easily alter that plugin to use a different...
Forum: Plugin/Gameplay Ideas and Requests 06-10-2016, 01:28
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

Yeah you need the colors.inc to compile still. Here is a pre-compiled version for you.
Forum: Plugin/Gameplay Ideas and Requests 06-09-2016, 21:20
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

I'll add more replies to it and checks to make sure it works when it should and if it doesn't work you'll know why. I'll edit this post when I'm done.

Edit: Here are the files. This should fix all...
Forum: Scripting 06-09-2016, 16:11
Replies: 7
Views: 1,422
Posted By Jackol1234
Re: Random client from vote

This should show you pretty well:

public Action Command_VoteRTV(int client, int args)
{
Menu VoteForceRTV = CreateMenu(H_VoteForceRTV);
SetVoteResultCallback(VoteForceRTV,...
Forum: Scripting 06-09-2016, 10:21
Replies: 7
Views: 1,422
Posted By Jackol1234
Re: Random client from vote

I used this callback type here: https://forums.alliedmods.net/showthread.php?t=283529

The second post fixes what I messed up and you should be able to use that as a base.

Note:...
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 17:20
Replies: 22
Views: 5,969
Posted By Jackol1234
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 16:24
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

Another goof up on my part. This should be the final version.
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 14:51
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

That was my fault. I put the wrong index in the check and also forgot to switch to CPrintToChat. Should be fixed now.
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 11:31
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

It failed to compile because it requires the colors include now. I added a pre-compiled version to my last post.
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 10:55
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

Added color. Requires colors to compile now. Let me know if this is your last suggestion and if everything works and I'll release it.
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 00:17
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

Tell me how well it works and make sure it's not bugged, then I might.
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 00:05
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

Here you go. Added both suggestions.
Forum: Plugin/Gameplay Ideas and Requests 06-06-2016, 21:58
Replies: 22
Views: 5,969
Posted By Jackol1234
Re: [Request] [CSGO] Simple /warn plugin

Here you go this should so what you're looking for. It won't do the noise as I haven't learned that yet, but it'll print a message to the target with the warning given.
Forum: Scripting 06-05-2016, 01:08
Replies: 3
Views: 1,024
Posted By Jackol1234
Re: [CSGO] Getting info from advanced votes

That makes a lot of sense. I didn't notice CLIENTINFO_CLIENT_INDEX in the include I was trying to write this from. Hopefully this works.

Edit: It worked :D now to translate the integer into a yes...
Forum: Scripting 06-04-2016, 23:26
Replies: 3
Views: 1,024
Posted By Jackol1234
[CSGO] Getting info from advanced votes

I'm trying to get a clients name and what they voted for so I can log it from the VoteHandler. Here is what I have so far:

public void H_VoteForceRTVCallback(Menu menu, int num_votes, int...
Forum: Scripting 06-04-2016, 23:01
Replies: 2
Views: 1,630
Posted By Jackol1234
Re: [CSGO] Possible to find index of Hammer entities?

I didn't know that. It would make a lot of sense since stripper doesn't pick some things up. Thanks for that info. I'm gonna put this on the back burner then for now and maybe come back to it when I...
Forum: Scripting 06-04-2016, 15:32
Replies: 2
Views: 1,630
Posted By Jackol1234
[CSGO] Possible to find index of Hammer entities?

After reading a thread I got the idea to make a plugin that lists a lot of info about an entity you look at and type a command. Here is the info grabbing portion:

char classname[64];
char...
Forum: Scripting 06-04-2016, 13:39
Replies: 4
Views: 1,256
Posted By Jackol1234
Re: [CSGO] Sending a panel to certain clients

Yup that works, thanks so much for the help!
Forum: Scripting 06-04-2016, 13:33
Replies: 4
Views: 1,256
Posted By Jackol1234
Re: [CSGO] Sending a panel to certain clients

Alright a little change of plans. I need to use a votemenu instead. I used your code and got to this:

int iModsInServer = 0;
int[] iMods = new int[MaxClients];

for (int i = 1; i <=...
Showing results 1 to 25 of 135

 
Forum Jump

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


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