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

Showing results 1 to 25 of 331
Search took 0.01 seconds.
Search: Posts Made By: Michael Shoe Maker
Forum: Scripting 02-23-2017, 11:17
Replies: 15
Views: 2,862
Posted By Michael Shoe Maker
Re: Chat Processor - Chat not visible

Solved with 2.0.4. Thanks @redwerewolf
Forum: Scripting 02-20-2017, 10:41
Replies: 2
Views: 808
Posted By Michael Shoe Maker
Re: Pause plugin on warmup round

Why unload. Just make the plugin do nothing during the period.
Forum: Scripting 02-15-2017, 13:32
Replies: 15
Views: 2,862
Posted By Michael Shoe Maker
Re: Chat Processor - Chat not visible

Any updates @redwerewolf
Forum: Scripting 02-12-2017, 07:01
Replies: 15
Views: 2,862
Posted By Michael Shoe Maker
Re: Chat Processor - Chat not visible

I put the chat-processor plugin on the server without any other plugins utilizing the forwards and the problem still persists.

I know this isn't much to go on, but with a server with no plugins...
Forum: Scripting 02-11-2017, 16:13
Replies: 15
Views: 2,862
Posted By Michael Shoe Maker
Re: Chat Processor - Chat not visible

In non-American English, it's "colour". And I'm pretty sure the variable names don't matter.

Chat text works wonderfully, it's only when (I believe) other plugins have forwards modifying or...
Forum: Scripting 02-11-2017, 14:50
Replies: 15
Views: 2,862
Posted By Michael Shoe Maker
Re: Chat Processor - Chat not visible

Works fine on a freshly installed server, but on one with other plugins it doesn't. I'm pretty sure none of them use chat-processor too since they were all there before I added it.
Forum: Scripting 02-11-2017, 08:31
Replies: 4
Views: 951
Posted By Michael Shoe Maker
Re: Get all entities indexes

All the indexes are from 0 to the max amount of entities.
Forum: Scripting 02-11-2017, 07:41
Replies: 15
Views: 2,862
Posted By Michael Shoe Maker
Re: Chat Processor - Chat not visible

Can't tell if this is a serious solution or a joke. I just want some help with this.
Forum: Scripting 02-10-2017, 19:41
Replies: 15
Views: 2,862
Posted By Michael Shoe Maker
Re: Chat Processor - Chat not visible

I downloaded the oldest branch with increased name size, still same issue.
Forum: Scripting 02-09-2017, 13:08
Replies: 15
Views: 2,862
Posted By Michael Shoe Maker
Chat Processor - Chat not visible

public Action CP_OnChatMessage(int& iAuthor, ArrayList hRecipients, char[] sFlagString, char[] sName, char[] sMessage, bool& bProcessColours, bool& bRemoveColours)
{
if(!IsValidClient(iAuthor))...
Forum: Scripting 02-06-2017, 17:23
Replies: 16
Views: 2,805
Posted By Michael Shoe Maker
Re: Chat Processor Limitations

#define MAX_TAG_LENGTH 16
#define MAX_PROCESSED_LENGTH MAX_TAG_LENGTH * 2
#define MAX_UNPROCESSED_LENGTH MAX_TAG_LENGTH + (MAX_TAG_LENGTH * 9)

Just used these.
Forum: Scripting 02-04-2017, 22:07
Replies: 2
Views: 727
Posted By Michael Shoe Maker
Re: Array must be indexed

if(StrEqual(ZM_SettingsPref[player], "normal")
Forum: Scripting 02-04-2017, 20:47
Replies: 16
Views: 2,805
Posted By Michael Shoe Maker
Re: Chat Processor Limitations

Why is that, though? I printed the string in the console to see if it would print the codes but all I got was something like "{{}".

This is stopping me from finishing the plugin and its...
Forum: Scripting 02-04-2017, 16:55
Replies: 16
Views: 2,805
Posted By Michael Shoe Maker
Re: Chat Processor Limitations

char sArg[MAX_UNPROCESSED_LENGTH];
GetCmdArgString(sArg, sizeof(sArg));

char sTemp[MAX_UNPROCESSED_LENGTH];
Format(sTemp, sizeof(sTemp), sArg);
CProcessVariables(sTemp,...
Forum: Scripting 02-03-2017, 20:28
Replies: 12
Views: 1,908
Posted By Michael Shoe Maker
Re: Array not an array?

int Array[10];

Array[0] = 1;
Array[1] = 3;
Array[2] = 566;

Ect...
Forum: Scripting 02-03-2017, 20:16
Replies: 12
Views: 1,908
Posted By Michael Shoe Maker
Re: Array not an array?

You're setting a string to an integer.

And even so, you're not indexing the array.
Forum: Scripting 02-03-2017, 16:46
Replies: 16
Views: 2,805
Posted By Michael Shoe Maker
Re: Chat Processor Limitations

Thanks, that new buffer size is great.

However, I still am trying to convert to colour codes instead to maximize use like so:

public Action CP_OnChatMessage(int& iAuthor, ArrayList...
Forum: Scripting 02-02-2017, 19:31
Replies: 16
Views: 2,805
Posted By Michael Shoe Maker
Re: Chat Processor Limitations

Decided to just keep it simple and make the chat uniform and have a limited size tag.

I want to check if the name of the player exceeds the max, this is easy but I want to squeeze the most...
Forum: Scripting 02-02-2017, 16:48
Replies: 3
Views: 1,144
Posted By Michael Shoe Maker
Re: undefined symbol to all functions

I count 706 "{" and 705 "}".

You're missing a closing bracket somewhere.
Forum: Scripting 02-01-2017, 10:34
Replies: 10
Views: 1,657
Posted By Michael Shoe Maker
Re: Array

How have you defined PlayerArmPath
Forum: Scripting 02-01-2017, 09:43
Replies: 10
Views: 1,657
Posted By Michael Shoe Maker
Re: Array

StrCopy(PlayerArmPath[param1], sizeof(PlayerArmPath[]), ArmPath);
StrCopy(PlayerSkinPath[param1], sizeof(PlayerSkinPath[]), SkinPath);
Forum: Scripting 01-31-2017, 09:01
Replies: 2
Views: 1,134
Posted By Michael Shoe Maker
Re: Set Health Chicken

SetEntProp(x, Prop_Send, "m_iHealth", y)
Forum: Scripting 01-31-2017, 08:51
Replies: 7
Views: 1,300
Posted By Michael Shoe Maker
Re: Getting weapon class name on player_death

SDKHook_OnWeaponDrop, then check if client is dead.
Forum: Scripting 01-30-2017, 10:34
Replies: 30
Views: 5,460
Posted By Michael Shoe Maker
Re: How can i get random word on plugin

It triggers me how you mix syntax. + That won't work since you can't assign 'strings' like that.

Anyway, if you do it that way best to switch 'Num'
Forum: Scripting 01-29-2017, 08:08
Replies: 6
Views: 1,612
Posted By Michael Shoe Maker
Re: [CSGO] block aim moving

Can't really. I just set their eye angles to their previous angle before "blocking" their mouse in OnGameFrame();
Showing results 1 to 25 of 331

 
Forum Jump

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


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