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

Showing results 1 to 25 of 500
Search took 0.01 seconds.
Search: Posts Made By: xines
Forum: Scripting 07-14-2019, 05:10
Replies: 6
Views: 2,580
Posted By xines
Re: Plugin does not call OnPluginStart when changing map

/**
* Called when the plugin is fully initialized and all known external references
* are resolved. This is only called once in the lifetime of the plugin, and is
* paired with OnPluginEnd()....
Forum: Scripting 07-13-2019, 20:00
Replies: 6
Views: 2,580
Posted By xines
Re: Plugin does not call OnPluginStart when changing map

https://sm.alliedmods.net/new-api/sourcemod/OnMapStart
Forum: Plugin/Gameplay Ideas and Requests 06-27-2019, 17:18
Replies: 2
Views: 1,204
Posted By xines
Re: this code is kinda messed up, or is it?

Place your bool outside of your client loop.
Also don't use IsValidClient inside of your client loop as it's a waste of cpu for various reasons.

bool g_bSomething;

public void OnMapStart()
{...
Forum: Scripting 06-20-2019, 10:10
Replies: 2
Views: 1,197
Posted By xines
Re: [Panels] New line not getting processed

Set the escape sequences to true.

kv.SetEscapeSequences(true);
https://sm.alliedmods.net/new-api/keyvalues/KeyValues/SetEscapeSequences
Forum: Plugins 06-14-2019, 18:43
Replies: 51
Views: 42,196
Posted By xines
Re: [ANY] Steam Group Credits v1.3 (Zephyrus Store)

Updated and tested the current version 1.3 in CS:GO
Compiled against v1.10.0.6405.
Using "SteamWorks Extension" (1.2.3).
Forum: Plugin/Gameplay Ideas and Requests 12-15-2018, 09:16
Replies: 3
Views: 932
Posted By xines
Re: Draw a random player on server and announce in chat

I'm pretty sure he means selecting a rng client that is ingame then displaying the selected client's name in the chatbox.
Forum: Plugin/Gameplay Ideas and Requests 11-10-2018, 09:23
Replies: 3
Views: 1,187
Posted By xines
Re: [Request] Auto-ban name changer hackers

Tried testing https://forums.alliedmods.net/showthread.php?p=1504588
Forum: Scripting 10-31-2018, 12:55
Replies: 14
Views: 2,758
Posted By xines
Re: Loose indentation? how can i fix it?

Maxpayn, if you paid attention you'd realize i put the fixed script along with my post...

Hint: "it's in the spoiler"
Forum: Scripting 10-29-2018, 11:32
Replies: 14
Views: 2,758
Posted By xines
Re: Loose indentation? how can i fix it?

It's because you mix spaces with tabs.


#include <sourcemod>
#include <sdktools>

#pragma semicolon 1

#define PLUGIN_VERSION "1.0.1"
#define MAX_FILE_LEN 100
Forum: General 09-11-2018, 19:34
Replies: 2
Views: 1,287
Posted By xines
Re: Players got the same error

This is a "csgo problem"
Just ignore it.
Forum: Source Servers (SRCDS) 09-10-2018, 14:33
Replies: 3
Views: 1,285
Posted By xines
Re: VIP Permissions

Since you did not specify what game we are talking about, then i'm just going to say Yes.

Pretty sure you'll find the answer looking at the source codes of these:...
Forum: Plugin/Gameplay Ideas and Requests 09-06-2018, 14:32
Replies: 10
Views: 2,160
Posted By xines
Re: Block team move while alive

potatoz "script" is a edit of the first script posted, as it's not entirely equal to either your edit or the first base script post...
Forum: General 09-06-2018, 13:36
Replies: 7
Views: 3,439
Posted By xines
Re: [REQ CSGO] Exploit fix crash

Do what neuro toxin says first...

else

Haven't looked into this plugin at all but alternative give this a go:
https://forums.alliedmods.net/showpost.php?p=2590840&postcount=126
Forum: Plugin/Gameplay Ideas and Requests 09-06-2018, 13:21
Replies: 10
Views: 2,160
Posted By xines
Re: Block team move while alive

ironically that your edit still had missing parts of transitional syntax :lol:, so here:


#include <sourcemod>

#pragma newdecls required //Force (basics) of Transitional Syntax

public...
Forum: Plugin/Gameplay Ideas and Requests 09-06-2018, 13:00
Replies: 1
Views: 845
Posted By xines
Re: Block any collision

Tried searching for it?
https://www.sourcemod.net/plugins.php?cat=0&mod=-1&title=noblock&author=&description=&search=1
Forum: Plugin/Gameplay Ideas and Requests 05-07-2018, 17:48
Replies: 3
Views: 759
Posted By xines
Re: Weapon Spawn do not save Point Spawn

If you even found the plugin creators thread, why don't you post your issue there, instead of creating a new thread?

Same with your TTT by Bara issue. :wink:
Forum: Scripting 05-06-2018, 16:01
Replies: 6
Views: 1,828
Posted By xines
Re: SourceMod Equivalent of parse

GetCmdArg
- Retrieves a command argument given its index, from the current console or server command.
https://sm.alliedmods.net/new-api/console/GetCmdArg

GetCmdArgs
- Returns the number of...
Forum: Scripting 04-18-2018, 15:40
Replies: 7
Views: 3,945
Posted By xines
Re: [CS:GO] Hide Knife, Keep Crosshair

SetEntProp(client, Prop_Send, "m_bDrawViewmodel", 0);

Pretty sure this is what you are fishing for.
Forum: Scripting 01-13-2018, 08:50
Replies: 2
Views: 543
Posted By xines
Re: Need help in Editing plug in (CS 1.6)

How about you ask in the AMX section as this is the SourceMod section.
Forum: Plugin/Gameplay Ideas and Requests 12-24-2017, 15:27
Replies: 3
Views: 1,357
Posted By xines
Re: [CS:GO] Looking for Community Developer (Paid)

You didn't even put what languages is needed for your issues :nono:
Also tell people what prices you are going to be paying either hourly/monthly and how many hours a week we are talking... (People...
Forum: Scripting 12-20-2017, 17:10
Replies: 3
Views: 898
Posted By xines
Re: [Optimize] How to...

Check if != null, meaning connection is not nullified aka connected. or check if == null meaning not connected, and return the error.
Handle? Or Database? -> Database
null or INVALID_HANDLE -> null...
Forum: General 12-07-2017, 20:25
Replies: 5
Views: 2,103
Posted By xines
Re: [CSGO] Server crashing every few map changes

You had a grammar mistake, so i fixed it :bacon!: rukia
Forum: Plugins 12-07-2017, 20:16
Replies: 51
Views: 42,196
Posted By xines
Re: [ANY] Steam Group Credits v1.2 (Zephyrus Store)

I tested this today on a CS:GO linux test server, and it was fully working at my end.

my "webapi_authkey.txt" is empty, so that probably aren't the case. I think they either have a non functional...
Forum: Plugin/Gameplay Ideas and Requests 12-07-2017, 18:10
Replies: 6
Views: 1,335
Posted By xines
Forum: Scripting 12-07-2017, 18:09
Replies: 2
Solved 󠀡
Views: 732
Posted By xines
Re: Weapon stripper

Guess this will do.

#include <sourcemod>
#include <smlib>

public Plugin myinfo =
{
name = "Some plugin",
author = "Piksu",
description = "that strips you to knife only",
Showing results 1 to 25 of 500

 
Forum Jump

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


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