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

Showing results 1 to 25 of 28
Search took 0.00 seconds.
Search: Posts Made By: skyjur
Forum: Code Snippets/Tutorials 10-22-2008, 08:07
Replies: 135
Views: 132,001
Posted By skyjur
Re: New Semiclip Method

Its easy to make such thing however I don't have much time for it.

You can try to change line NO 50 into this one:

plrSolid[i] = (pev(i, pev_solid) == SOLID_SLIDEBOX) && (pev(i, pev_movetype)...
Forum: Unapproved/Old Plugins 10-02-2008, 15:08
Replies: 19
Views: 39,501
Posted By skyjur
Re: Showkeys

Well I don't really care about approval because people who need it are able to find it. After all there are tons of shitty plugins between approved ones and many good stuff which wasn't aproved. And...
Forum: Scripting Help 08-18-2008, 08:54
Replies: 1
Views: 1,969
Posted By skyjur
Semiclip Teleport Fix

Some people are asking for this plugin over and over again so I'll put it here.

This is no-teleport bug fix when two players are
close each other and teleport doesn't trigger them.
...
Forum: Approved Plugins 07-20-2008, 10:57
Replies: 30
Views: 44,778
Posted By skyjur
Re: Autoheal on damage

You are wrong but I won't explain why at the moment. Sorry.
Forum: Code Snippets/Tutorials 07-02-2008, 15:07
Replies: 135
Views: 132,001
Posted By skyjur
Re: New Semiclip Method

Transparency level is on line 34:set_es(es, ES_RenderAmt, 85)What about center names, it is a very simple plugin, however I don't have a code now because I am on laptop now. This is how it should be...
Forum: Unapproved/Old Plugins 06-14-2008, 06:03
Replies: 7
Views: 8,213
Posted By skyjur
Forum: Code Snippets/Tutorials 05-26-2008, 16:09
Replies: 135
Views: 132,001
Posted By skyjur
Re: New Semiclip Method

I have updated my semiclip plugin. This one has beend working on HNS server for around a week. No bugs where noticed.

(download it from attachment in first post of this thread)
Forum: Approved Plugins 05-05-2008, 16:47
Replies: 20
Views: 25,153
Posted By skyjur
Re: Menu Close Fix

Your *engine bug fix* plugins should be joined into one. And that would be a very nice all in 1 patch for server :)

EDIT: I have just found the same comment on other thread. So go for it :)...
Forum: Scripting Help 04-20-2008, 12:07
Replies: 14
Views: 3,150
Posted By skyjur
Re: Stopping a falling entity

have you tried to change move type of the entity and set its speed to 0 ?

set_pev(ent, pev_movetype, MOVETYPE_FLY);
set_pev(ent, pev_velocity, {0, 0, 0});
Forum: Scripting Help 04-20-2008, 10:24
Replies: 0
Views: 1,066
Posted By skyjur
SQL_ThreadQuery, multiple queries

I need to execute this kind of query:


SET @somevar := 0;
other querie...;


I can't find the way how to sent those two queries with SQL_ThreadQuery. Queries must be sent from same...
Forum: Code Snippets/Tutorials 04-14-2008, 11:37
Replies: 135
Views: 132,001
Posted By skyjur
Re: New Semiclip Method

Given code is just an idea. There should be more checks done before changing pev_solid for player. Because player might be a spectator, or dead player. That could mess some things. If you have just...
Forum: Code Snippets/Tutorials 04-10-2008, 13:56
Replies: 135
Views: 132,001
Posted By skyjur
Re: New Semiclip Method

Tnx Orangutanz, I have changed it to SOLID_SLIDEBOX not to mix peoples.
Forum: Code Snippets/Tutorials 04-10-2008, 06:16
Replies: 135
Views: 132,001
Posted By skyjur
New Semiclip Method

I have found a very good way of making semiclip (I think it is new). The main idea is to add SOLID_NOT flag for a player on a right moment.

Lets start with the simplest example.
plugin_init()
{...
Forum: Unapproved/Old Plugins 03-23-2008, 07:20
Replies: 3
Views: 2,604
Posted By skyjur
Re: Mini-Run Stopwatch

I have no ideas how to add top15 bicouse you can set up any kind of track... So it is imposible to group those different runs into top15.
Forum: Unapproved/Old Plugins 03-20-2008, 10:12
Replies: 3
Views: 2,604
Posted By skyjur
Mini-Run Stopwatch

Mini-Run Stopwatch [beta]


# Usage
To make a start checkpoint:say /cpstart
To make a stop checkpoint:say /cpstop
To start a run:say /ftw
To cancel the run:say /abort
# Some Info
Plugin has...
Forum: Unapproved/Old Plugins 03-15-2008, 14:23
Replies: 7
Views: 8,213
Posted By skyjur
KZ Server Addon: Safe Side Speed

Safe Side Speed


Description

This little plugin will help to protect your kz server against
illegal cl_sidespeed and cl_forwardspeed settings.

It's forbidden to use custom settings for...
Forum: Scripting Help 03-01-2008, 12:09
Replies: 3
Views: 1,358
Posted By skyjur
Re: force player to turn (not set angle)

Something like this could work:

client_cmd(id, "cl_yawspeed %f", 50.0);
client_cmd(id, "+left");
Just don't forger to execute -left cmd.

PS are you going to make a strafe "simulator" :D ?
Forum: Scripting Help 03-01-2008, 10:01
Replies: 2
Views: 1,096
Posted By skyjur
Re: optimization and benchmarking

Tnx a lot. I haven't searched in offtopic forum....
Forum: Scripting Help 03-01-2008, 09:34
Replies: 2
Views: 1,096
Posted By skyjur
optimization and benchmarking

Is there any ways to see the load cosed by any plugin?

I need somehow to find a best algorithm but sometimes I can't understand which would work faster.

For example is it ok to use "entity find...
Forum: Scripting Help 02-17-2008, 06:54
Replies: 9
Views: 2,397
Posted By skyjur
Re: How to hook +lookdown and +lookup ?

Well, i was making a "norecoil script" detection tool. Those scripts are using +lookdown and precise cl_pitchspeed. So if player has used +attack and +lookdown at the same time, he is definitely...
Forum: Scripting Help 02-07-2008, 11:23
Replies: 9
Views: 2,397
Posted By skyjur
How to hook +lookdown and +lookup ?

IN_LEFT, IN_RIGHT works pretty well with +right, +left.

However there is no such thing as IN_LOOKDOWN. Does anyone know another way how could be possible to hook +lookdown and +lookup ?
Forum: Scripting Help 09-18-2007, 11:48
Replies: 3
Views: 1,243
Posted By skyjur
Water Waves

Is there a way to change water waves height?

I looked throught all pev_* and could not find anything useful. I don't know where else to search.
Forum: Scripting Help 08-27-2007, 08:14
Replies: 17
Views: 3,903
Posted By skyjur
Re: can create a plugin antycheat??

This can be done by binding players END button to some king of command

client_cmd(id, "bind END say I pressed END.")

But such things are so anoying.

What if someone by accident clicks END,...
Forum: Unapproved/Old Plugins 08-24-2007, 10:28
Replies: 19
Views: 39,501
Posted By skyjur
Re: Show Keys

I have added functions which will help you to name your demos esier and faster. For example adding date or map name to demo filename.


Plugin allows to record demos with pressed keys information...
Forum: Unapproved/Old Plugins 08-23-2007, 11:34
Replies: 19
Views: 39,501
Posted By skyjur
Showkeys

Showkeys v2.1

v2.1:
Added cvar: keys_autostart 0/1
v2:
Configuration menu added.
Configuration can be saved.
Few output styles added.

About Showkeys plugin:
Showing results 1 to 25 of 28

 
Forum Jump

All times are GMT -4. The time now is 12:06.


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