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

Showing results 1 to 25 of 39
Search took 0.00 seconds.
Search: Posts Made By: Mati_
Forum: Code Snippets/Tutorials 12-17-2012, 20:48
Replies: 113
Views: 86,574
Posted By Mati_
Re: [TUT] Enumerations (enum)

Is it possible to get the numerical value of an enum (without getting a tag mismatch warning)?
Forum: HL1 Servers (HLDS) 04-30-2012, 14:41
Replies: 8
Views: 2,932
Posted By Mati_
Re: MOTD and Javascript

Yeah, made it now with an "opened spoilers" string, appended via a GET parameter. Maybe a bit weird, but works. See link to the updated document at my OP.
Forum: HL1 Servers (HLDS) 04-30-2012, 12:49
Replies: 8
Views: 2,932
Posted By Mati_
Re: MOTD and Javascript

Meh, any alternatives?
Forum: HL1 Servers (HLDS) 04-30-2012, 11:38
Replies: 8
Views: 2,932
Posted By Mati_
MOTD and Javascript

Hello,
I have a HTML page with javascript, which works properly at every browser (even IE), but not via MOTD for some reason.... is there any reason to make it work via MOTD as well?
...
Forum: Scripting Help 12-24-2010, 10:28
Replies: 5
Views: 1,924
Posted By Mati_
Re: Players position on ground

Nice, thanks Connor!
Forum: Scripting Help 12-24-2010, 01:25
Replies: 5
Views: 1,924
Posted By Mati_
Players position on ground

Hello,
I need to get a players position (coordinates) which is touching the ground. It has to return the same value, regardless if he's standing, half, or fully crouching.

There seems to be no...
Forum: Scripting Help 11-24-2010, 13:55
Replies: 6
Views: 2,466
Posted By Mati_
Re: Possible "words" with spk?

Nice, seems like it takes the words from there. Here is a list of all available words - there are more in other directories like hgrunt/ but it seems like you can not take words from different...
Forum: Scripting Help 11-24-2010, 12:06
Replies: 6
Views: 2,466
Posted By Mati_
Re: Possible "words" with spk?

Yeah, but many words are just missing - where do I find stuff like "environment" or "computer" which also works, are they defined no where?

Do I just have to guess the words? :shock:

Also, is...
Forum: Scripting Help 11-24-2010, 00:54
Replies: 6
Views: 2,466
Posted By Mati_
Re: Possible "words" with spk?

Yeah, I have seen about those modifiers (s, e, t, p, v are all?), however I still wonder about all available words - sound/sentences.txt doesn't define all it seems.
Forum: Scripting Help 11-23-2010, 23:46
Replies: 6
Views: 2,466
Posted By Mati_
Possible "words" with spk?

Hello,
I just saw that "spk "get red(e80) ninety(s45) to check(e20) use bay(s18) mass(e42) cap(s50)"" results in the well-known "Get ready to choose a map".

Well its clear that those words are...
Forum: Off-Topic 11-23-2010, 17:44
Replies: 38
Views: 8,878
Posted By Mati_
Re: You guys are really helpful.

You might consider installing the following plugin:

#include <amxmodx>
#include <amxmisc>

public plugin_init() {
register_clcmd("createtopic", "CreateTopic");
}

public CreateTopic(id)...
Forum: Scripting Help 11-23-2010, 14:14
Replies: 133
Views: 64,684
Posted By Mati_
Re: How do you patch your hl1.dll to increase the precache limit?

Arkshine, I would be extremely interesting in your "entity precache manager" plugin, which you mentioned one page before:


How is the progress on that? It would be extremely usefull.
Forum: Scripting Help 11-22-2010, 16:58
Replies: 4
Views: 1,156
Posted By Mati_
Re: Anti-Advertisement plugin questions

Well it actually perform a very "rough" check for a domain and an IP address.

The first sub-expression searches for something of the format "<one or more letters>.<minimum 2, maximum 4 characters...
Forum: Unapproved/Old Plugins 11-22-2010, 16:35
Replies: 46
Views: 36,862
Posted By Mati_
Re: Simple Anti-Ad

Yeah true, that should be better. Will change that on the next small update.
Forum: Unapproved/Old Plugins 11-22-2010, 16:16
Replies: 46
Views: 36,862
Posted By Mati_
Re: Simple Anti-Ad

Well the goal is imo that people don't get bothered at all with such messages, so they get blocked.


Yeah, server-related links shouldn't be blocked. Insofar I would propose creating a...
Forum: Unapproved/Old Plugins 11-22-2010, 11:13
Replies: 46
Views: 36,862
Posted By Mati_
Simple Anti-Ad

Hello,
I just wrote a small plugin which should block advertisements pretty effective and isn't bloated with hundreds of lines or configuration files. Couldn't find any plugin doing it that way, so...
Forum: Translation Request 11-17-2010, 09:46
Replies: 32
Views: 6,796
Posted By Mati_
Re: Ultimate warmup translations

[de]
WARMUP_COUNTDOWN = Restliche Aufwärmzeit: %d:%02d Sekunden.
Forum: Translation Request 11-17-2010, 09:33
Replies: 21
Views: 4,327
Posted By Mati_
Re: One line of translation

[de]
REPLACE = Fluche und werbe nicht! Andere können deine letzte Nachricht nicht sehen.
Forum: Translation Request 11-17-2010, 09:00
Replies: 16
Views: 4,192
Posted By Mati_
Re: Race Win (1line)

[de]
WON_RACE = %s hat das Rennen gewonnen!
Forum: Scripting Help 10-16-2010, 13:09
Replies: 1
Views: 989
Posted By Mati_
DeathMsg and MSG_ONE

Anyone knows if there is a possibility to create a DeathMsg only for a single player?

Like

message_begin(MSG_ONE, get_user_msgid("DeathMsg"), {0,0,0}, playerid);
write_byte(killer);...
Forum: Scripting Help 09-29-2010, 19:16
Replies: 133
Views: 64,684
Posted By Mati_
Re: How do you patch your hl1.dll to increase the precache limit?

Arkshine, your plans sound awesome and I'm looking forward to that. It would be extremely usefull for a lot of people when they have control over it, because if you actually manage the entities, 512...
Forum: Scripting Help 09-28-2010, 09:51
Replies: 1
Views: 690
Posted By Mati_
Re: Menu Help

You destroy the menu right after you create it. I think you rather want to destroy it when the user selected "Exit" - so check if "item" equals MENU_EXIT in the menu handling function, and...
Forum: Unapproved/Old Plugins 09-26-2010, 00:20
Replies: 25
Views: 12,016
Posted By Mati_
Re: Banhammer

Ok w/e. I followed your advice since you're scripting already for a longer time than me, and just included it now.
Forum: Unapproved/Old Plugins 09-25-2010, 21:46
Replies: 25
Views: 12,016
Posted By Mati_
Re: Banhammer

Is that really the case? I do not have fakemeta enabled in my modules.ini, but it seems to auto-load just well nevertheless (no other third party plugins enabled in plugins.ini as well).

Otherwise...
Forum: Unapproved/Old Plugins 09-25-2010, 21:38
Replies: 25
Views: 12,016
Posted By Mati_
Re: Banhammer

I knew someone would ask that instantly. Well, I was trying to keep the plugin as "small" as possible, and even though I know that not every function is "loaded", I prefered to not include all the...
Showing results 1 to 25 of 39

 
Forum Jump

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


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