Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 43
Search took 0.00 seconds.
Search: Posts Made By: Nekoz
Forum: Scripting 07-14-2018, 12:32
Replies: 11
Views: 2,397
Posted By Nekoz
Re: How to prevent IgniteEntity duplicate?

I put the ExtinguishEntity but it still stack :T

Is there ExtinguishEntity that cancel out all the fire?
Forum: Scripting 07-14-2018, 11:46
Replies: 11
Views: 2,397
Posted By Nekoz
Re: How to prevent IgniteEntity duplicate?

It still stack. I'm not sure why.
Is there a way to make my own ignite entity?
Forum: Scripting 07-11-2018, 14:09
Replies: 11
Views: 2,397
Posted By Nekoz
Re: How to prevent IgniteEntity duplicate?

It still stacking up :T
I use PrintToClient to see how many time it trigger
It show me that it triggered 1 time but it burn multiple times
And then I use ExtinguishEntity to remove it but doesn't...
Forum: Scripting 07-10-2018, 16:08
Replies: 11
Views: 2,397
Posted By Nekoz
Re: How to prevent IgniteEntity duplicate?

new bool:g_bPlayerBurning[MAXPLAYERS+1] = {false, ...};

public OnPluginStart()
{
HookEvent("player_death", Event_PlayerDeath, EventHookMode_Pre);
}

public OnClientPutInServer(client)
{...
Forum: Scripting 07-10-2018, 14:22
Replies: 11
Views: 2,397
Posted By Nekoz
How to prevent IgniteEntity duplicate?

So I put IgniteEntity in SDKHook_OnTakeDamage and it keep burning player endlessly. It stack it up. I even put if statement in there to check but it still stacking it up. I'm only try to make it burn...
Forum: Scripting 08-30-2017, 08:39
Replies: 1
Views: 863
Posted By Nekoz
PrecacheGeneric only load once?

public OnMapStart()
{
PrecacheGeneric("particles/firegrenade.pcf", true);
}

I thought PrecacheGeneric suppose to make all player get precache. Players that join in middle of the game, they...
Forum: Scripting 07-24-2017, 19:28
Replies: 8
Views: 4,091
Posted By Nekoz
Re: AddCommandListener broken?

I did some PrintToChat
It seem like it overlap on each other
When a vote start, it start 2 votes in the background instead of 1
The plugin only pick up the first vote with empty arguments so the...
Forum: Scripting 07-24-2017, 06:38
Replies: 8
Views: 4,091
Posted By Nekoz
Re: AddCommandListener broken?

I use this plugin
https://forums.alliedmods.net/showthread.php?p=1506666

And for game insurgency
I try to mess around with the code still doesn't work
I even try RegConsoleCmd for it
It work...
Forum: Scripting 07-18-2017, 18:18
Replies: 8
Views: 4,091
Posted By Nekoz
AddCommandListener broken?

AddCommandListener only trigger it once...
I put my AddCommandListener in OnPluginStart. It work when plugin load or reload. But when map change, it stop working. It suppose to be like that? Or I'm...
Forum: General 05-22-2017, 02:21
Replies: 8
Views: 1,737
Posted By Nekoz
Re: My server is restarting

Idk about u guys
But there an issue with the latest version of metamod and the sourcemod
sourcemod just crash with the latest version of metamod
Try download an older version of metamod until it...
Forum: Scripting 04-11-2017, 20:49
Replies: 3
Views: 986
Posted By Nekoz
Re: OnClientPutInServer fire again on map change?

Thank!
I look at the sourcemod API and didn't say anything about it other than letting me know when client is in game it fire it
Forum: Scripting 04-11-2017, 20:22
Replies: 3
Views: 986
Posted By Nekoz
OnClientPutInServer fire again on map change?

I just wanna know if OnClientPutInServer fire again when map change
Anyone know?
Forum: General 04-11-2017, 20:21
Replies: 4
Views: 1,509
Posted By Nekoz
Re: Help! Sourcemod not working

Actually nvm
It was actually caused by metamod latest version...
I download a old version and then sourcemod work again
Forum: General 04-07-2017, 11:06
Replies: 4
Views: 1,509
Posted By Nekoz
Help! Sourcemod not working

I been running the sourcemod fine then suddenly today it stop working...
I did a fresh install with sourcemod and metamod and still not working
But running the server vanilla it working
Idk wat...
Forum: Scripting 01-08-2017, 20:17
Replies: 6
Views: 1,340
Posted By Nekoz
Re: my for loop stuck in infinite loop

Nop
But I got it fixed by creating a timer for each client to respawn


public Action Timer_RespawnPlayer(Handle timer)
{
static int nSecond = 5;

if(nSecond <= 0)
{
Forum: Scripting 01-08-2017, 15:48
Replies: 5
Views: 847
Posted By Nekoz
Re: Get ID of player which i spectate

static GetObserverTarget(client)
{
return GetEntPropEnt(client, Prop_Send, "m_hObserverTarget");
}

Probably this work
Forum: Scripting 01-08-2017, 11:54
Replies: 6
Views: 1,340
Posted By Nekoz
Re: my for loop stuck in infinite loop

StartPrepSDKCall(SDKCall_Player);
SDK_GameConfig = LoadGameConfigFile("insurgency");
PrepSDKCall_SetFromConf(SDK_GameConfig, SDKConf_Signature, "ForceRespawn");
ForceRespawn = EndPrepSDKCall();
...
Forum: Scripting 01-08-2017, 11:25
Replies: 6
Views: 1,340
Posted By Nekoz
my for loop stuck in infinite loop

I'm using this timer function


public Action Timer_RespawnPlayer(Handle timer)
{
static int nSecond = 5;

if(nSecond <= 0)
{
for(new i = 1; i <= MaxClients; i++)
Forum: Plugins 01-05-2017, 03:40
Replies: 46
Views: 37,944
Posted By Nekoz
Re: [ANY] EasyDownloader (v1.01, 04/01/2017)

Where do I put my VPK file?
Forum: Source Servers (SRCDS) 12-27-2016, 18:05
Replies: 23
Views: 4,704
Posted By Nekoz
Re: Anyone know a cheap host?

DAM
Don't they sell dedicate server with 1core and 2GB RAM?
Forum: Source Servers (SRCDS) 12-27-2016, 13:15
Replies: 23
Views: 4,704
Posted By Nekoz
Re: Anyone know a cheap host?

Tell me how that work well...
That's from digital ocean

http://i.imgur.com/BavxsjP.png

99% CPU -_-
srcds only use 1 core which is stupid...

And look like i found a cheap dedicate server...
Forum: Source Servers (SRCDS) 12-26-2016, 16:15
Replies: 23
Views: 4,704
Posted By Nekoz
Re: Anyone know a cheap host?

How?



I did tried VPS. They can't run it due to they giving me virtual core not physical core...
Forum: Source Servers (SRCDS) 12-25-2016, 03:25
Replies: 23
Views: 4,704
Posted By Nekoz
Re: Anyone know a cheap host?

I know and expensive one keep giving me extra performance I don't need...
Like a dedicate server cost about $300 which have like 4 cores and 16GB RAM. I don't need that many cores. srcds only use 1...
Forum: Source Servers (SRCDS) 12-24-2016, 20:34
Replies: 23
Views: 4,704
Posted By Nekoz
Re: Anyone know a cheap host?

NA
Default tickrate. I think its 64 for default...



I tried AWS...
Its annoying. They blocked my account and ask me for address verification and stuff...
Forum: Source Servers (SRCDS) 12-24-2016, 13:24
Replies: 8
Views: 2,143
Posted By Nekoz
Re: Srcds tickrate issue

Stick with Debian
Trust me Debian performance is way better than others. Idk why but other linux OS keep running some extra stuff which eat up the performance.

And the cores u having for CPU are...
Showing results 1 to 25 of 43

 
Forum Jump

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


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