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

Showing results 1 to 25 of 149
Search took 0.01 seconds.
Search: Posts Made By: DotNetJunkie
Forum: Scripting Help 07-25-2007, 12:52
Replies: 4
Views: 1,251
Posted By DotNetJunkie
Re: Can someone break this down ?

new params[2];

params[0] = target;
params[1] = playerTask[target]
set_task(10.0,"task_undo",playerTask[target],params,2);


The params simply pass a list of numbers to the...
Forum: Scripting Help 07-23-2007, 21:33
Replies: 4
Views: 1,251
Posted By DotNetJunkie
Re: Can someone break this down ?

I wrote this plugin so any questions you have I should be able to answer.

I should note though that this mod fails to function properly in TS 3.0 due to a non-functioning ScreenFade message.
Forum: Scripting Help 07-23-2007, 12:21
Replies: 2
Views: 1,878
Posted By DotNetJunkie
SOLID_TRIGGER and get_user_aiming

Anyone got any ideas as to how to get get_user_aiming to detect a
SOLID_TRIGGER entity?

I've been searching around but no solutions yet and I thought about
writing my own get_user_aiming...
Forum: Scripting Help 07-18-2007, 00:38
Replies: 15
Views: 5,089
Posted By DotNetJunkie
Re: ScreenFade

My only guess is that the TS team may have modified this message since in their changelog it mentions it added motion blur to screenfade so my only guess
is that we should start screwing around with...
Forum: Scripting Help 07-17-2007, 05:28
Replies: 19
Views: 3,696
Posted By DotNetJunkie
Re: clcmd, and keypress.

new g_AttackKey[33][2];

...

public client_PreThink(id)
{

new buffer = entity_get_int(id, EV_INT_button);

for( new i = 0; i < 2; i++ )
Forum: Scripting Help 07-16-2007, 23:22
Replies: 7
Views: 1,802
Posted By DotNetJunkie
Re: SQL syntax

Do you have to use DBI? SQLx is much better.


new Handle:mapQuery = SQL_PrepareQuery(g_Database, "SELECT `map` FROM `maps` LIMIT 10;");
if( !SQL_Execute(mapQuery) )
{
SQL_FreeHandle(mapQuery);...
Forum: Scripting Help 07-16-2007, 08:13
Replies: 19
Views: 3,696
Posted By DotNetJunkie
Re: clcmd, and keypress.

new g_UseKey[33];

...

new buffer = entity_get_int(id, EV_INT_button);
if( (buffer & IN_USE) && !g_UseKey[id] )
{
g_UseKey[id] = 1;
client_print(id, print_chat, "You pressed onto your use...
Forum: Scripting Help 07-16-2007, 08:06
Replies: 7
Views: 1,802
Posted By DotNetJunkie
Re: SQL syntax

That warning does not effect the runtime of your plugin, its just a compiler
warning telling you that you have messy code usually.

One thing I'd like to point out is that if you want to protect...
Forum: Scripting Help 07-14-2007, 10:10
Replies: 15
Views: 5,089
Posted By DotNetJunkie
ScreenFade (Specialists 3.0)

Anyone having problems with the ScreenFade message and The Specialists 3.0?

I pulled out some old code I know for a fact worked on 2.1 but it no longer
works in the 3.0 environment.

...
Forum: Coding MM:S Plugins & SM Extensions 02-25-2007, 00:59
Replies: 2
Views: 1,398
Posted By DotNetJunkie
Force Use / Touch

I'm trying to get a door to open that I'm looking at in game
similar to the way people used force_use and force_touch in AMXX or Metamod
and so far I can't figure it out.

I've tried playing...
Forum: Module Coding 11-19-2006, 22:56
Replies: 56
Views: 25,469
Posted By DotNetJunkie
Re: Array 3.14

They wouldn't compile at all without them and their directories were included in the makefile.
I always remember having to do this wether on Windows or Linux.
Forum: Code Snippets/Tutorials 11-19-2006, 16:49
Replies: 39
Views: 38,756
Posted By DotNetJunkie
Re: Sockets and webservers

I have a modified version of the sockets module I wrote, for AMXX version I forget, that will allow you to listen for connections.

In fact I wrote a simple web server in PAWN but unfortunately its...
Forum: Unapproved/Old Plugins 11-19-2006, 16:41
Replies: 23
Views: 7,764
Posted By DotNetJunkie
Re: Harbu addon, Vehicle RP

I told you how to fix that
Forum: Unapproved/Old Plugins 11-19-2006, 16:26
Replies: 23
Views: 7,764
Posted By DotNetJunkie
Re: Harbu addon, Vehicle RP

Some constructive critic:

Start using the TAB key when you write your code, its important to format it
for readability.

Use comments, use '//' for single lines and '/* Some comment */' for...
Forum: Module Coding 11-17-2006, 16:17
Replies: 56
Views: 25,469
Posted By DotNetJunkie
Re: Array 3.14

Oh, so by the incresed compatibility for Linux I assume you mean the actual code is more GCC compatible than previous versions?

Furthermore do you plan on doing any further work on Array so it...
Forum: Off-Topic 11-16-2006, 22:54
Replies: 20
Views: 4,570
Posted By DotNetJunkie
Re: Best forum software?

When are they coming out with the next phpBB, the one with the new security features and sub-forums and stuff?
Forum: Off-Topic 11-16-2006, 22:52
Replies: 9
Views: 2,097
Posted By DotNetJunkie
Re: Best Game Recorder

We need an Open Source one, seriously...

Programs that need OSI alternatives:
Ventrilo & TeamSpeak
Fraps
Photoshop (Please don't mention "The Gimp")

um... umm... ummm... ermm.. thats all I...
Forum: Module Coding 11-16-2006, 22:33
Replies: 56
Views: 25,469
Posted By DotNetJunkie
Re: Array 3.14

Same here.
A friend of mine was getting all kinds of bizzare problems with this module on
Linux so he asked me to recompile it so I setup my GCC and downloaded Metamod, AMXX, HL SDK 2.3p3 and
then...
Forum: Code Snippets/Tutorials 10-21-2006, 13:58
Replies: 4
Views: 6,970
Posted By DotNetJunkie
Re: Decode URI encoded string

Link wasn't intended to be a valid link. I placed "e.g." next to it which stands
for Example Given. A URI encoded string is usually used by the HTTP protocol
to use special characters which are not...
Forum: Code Snippets/Tutorials 10-21-2006, 13:42
Replies: 4
Views: 6,970
Posted By DotNetJunkie
Decode URI encoded string

This is used to decode a URI encoded string like you often see in
web browsers e.g. http://someplace.com/some%20file.txt

I needed this for a project and didn't know of any function that could do...
Forum: Code Snippets/Tutorials 10-21-2006, 13:40
Replies: 4
Views: 5,654
Posted By DotNetJunkie
Converting Hexadecimal to Decimal

If you are unfamiliar with hexadecimal numbers please look here:
http://www.permadi.com/tutorial/numHexToDec/

I looked around and didn't find a hexadecimal to decimal conversion function
and I...
Forum: Site/Forums Issues and Discussion 10-21-2006, 13:15
Replies: 2
Views: 973
Posted By DotNetJunkie
Re: Snippets forum suggestion.

Didn't see that was there. Please delete this thread.
Forum: Trash 10-21-2006, 13:14
Replies: 12
Views: 48,841
Posted By DotNetJunkie
Re: [REQ] Server VECS

I think HLGuard can do this for you
Forum: Trash 10-21-2006, 12:57
Replies: 12
Views: 48,841
Posted By DotNetJunkie
Re: [REQ] Server VECS

I don't understand what it is exactly you are requesting.
Could you elaborate a little more please and maybe dress up your grammar?
Forum: Site/Forums Issues and Discussion 10-21-2006, 12:53
Replies: 2
Views: 973
Posted By DotNetJunkie
Snippets forum suggestion.

Sorry if I posted this wrong but I didn't see any stickies or anything defining
guidelines for posting in here.

Anyway my idea is that you add a 'Snippets' forum for coding related sections
like...
Showing results 1 to 25 of 149

 
Forum Jump

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


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