Raised This Month: $7 Target: $400
 1% 

Showing results 1 to 25 of 405
Search took 0.01 seconds.
Search: Posts Made By: OSWO
Forum: Plugins 03-24-2023, 13:41
Replies: 1
Views: 897
Posted By OSWO
Re: [ANY] VDFtoJSON (items_game.txt)

1.10
- Added utf16 support


#include <vdftojson>
VDFReturn utf8 = VDFtoJSON("../../scripts/items/items_game.txt", "items_game.json", VDFType_8);
VDFReturn utf16 =...
Forum: Plugins 03-21-2023, 14:02
Replies: 1
Views: 897
Posted By OSWO
[ANY] VDFtoJSON (items_game.txt | csgo_english.txt)

Hello, a fast plugin that parses VDF to JSON

Requires: https://github.com/ErikMinekus/sm-ripext/releases/latest

Usage:
#include <vdftojson>

//param1 origin addons/sourcemod/
//param2...
Forum: Snippets and Tutorials 03-20-2023, 17:04
Replies: 0
Views: 2,287
Posted By OSWO
[CS:GO] CSGOItemsJSON

hello, just a quick snippet that uses game files to generate csgoitems in a json format

#pragma newdecls required
public void OnPluginStart()
{
char path[PLATFORM_MAX_PATH];
...
Forum: Scripting 04-09-2021, 08:02
Replies: 0
Views: 541
Posted By OSWO
Instinct

Hello I've decided to make my Instinct project public.
https://github.com/OSCAR-WOS/Instinct

some worthnoty features includes a stackable sql set with slave support for replication with correct...
Forum: General 05-11-2020, 23:14
Replies: 13
Views: 2,931
Posted By OSWO
Re: Where to buy this - anticheat

https://i.imgur.com/05Hr2Ct.png

I smell a violation of GPL :bacon:
Forum: Scripting 10-26-2019, 17:49
Replies: 1
Views: 2,035
Posted By OSWO
Re: SourceTimer

Hello all,

I have taken some time off, during this period I have alot of time to contemplate where I was going with this project. I have thought of many new methods during this time too. I will...
Forum: Plugins 09-19-2019, 14:54
Replies: 3
Views: 2,464
Posted By OSWO
Re: [Any] Per Map ConVar Enforcer

this doesn't enforce just sets convar values,

to enforce you must have a ConVarChanged Hook.

https://github.com/OSCAR-WOS/SourceTimer/blob/master/scripting/SourceTimer/Misc.sp#L226...
Forum: Snippets and Tutorials 09-02-2019, 04:17
Replies: 3
Views: 7,231
Posted By OSWO
Re: [INC] Dynamic memory (Heap)

Is it possible to add a size lookup?
Forum: Scripting 08-29-2019, 09:27
Replies: 1
Views: 2,035
Posted By OSWO
SourceTimer

Hello,

I'm here to present an Alpha stage release working somewhat version of SourceTimer.
https://github.com/OSCAR-WOS/SourceTimer

Another timer yes.

I'm posting this here since I was...
Forum: Scripting 08-15-2019, 17:30
Replies: 3
Views: 1,455
Posted By OSWO
Re: Creating an Entity which is Parented to a player and triggers "trigger_multiple"

I've tested with that too still not the correct position.



Do you know what the netprop is called? I've looked at them all still cannot find it
Forum: Scripting 08-14-2019, 22:30
Replies: 3
Views: 1,455
Posted By OSWO
Creating an Entity which is Parented to a player and triggers "trigger_multiple"

Hello, I'm trying to create an entity that follows a player, I've tried multiple threads for using the "SetParent", but none of the entities are "following" the player, and neither is it being...
Forum: Plugin/Gameplay Ideas and Requests 04-29-2018, 08:54
Replies: 7
Views: 1,580
Posted By OSWO
Re: [CS:GO] GunMenu with save selected for next spawn

https://github.com/HardcorePark/CTGuns/blob/master/addons/sourcemod/scripting/CTGuns.sp
Forum: Scripting 04-26-2018, 10:44
Replies: 2
Views: 986
Posted By OSWO
Listener in SourcePawm

Hi, I was just wondering if there's a nice and easy method of creating a listen server within sourcepawn for requests outside the server box. Also is there a way to easily create / read json data...
Forum: Plugin/Gameplay Ideas and Requests 04-25-2018, 05:11
Replies: 7
Views: 1,580
Posted By OSWO
Re: [CS:GO] GunMenu with save selected for next spawn

Have a look at DeathMatch (FFA) plugins, I've seen some servers with exactly what you're looking for.
Forum: Plugin/Gameplay Ideas and Requests 04-25-2018, 05:08
Replies: 11
Views: 3,868
Posted By OSWO
Re: [CSGO] Link bot replays across servers [$200+]

This will not work if cs:go servers are on multiple different hosts. The phrase for this procedure is called "symbolic link", where all replay folders are symbolically linked to one main one. As...
Forum: Plugin/Gameplay Ideas and Requests 04-24-2018, 10:00
Replies: 3
Views: 1,498
Posted By OSWO
Re: [CSGO] Prevent weapon pickup by walking over weapons

untested.


#include <sourcemod>
#include <sdkhooks>

public void OnPluginStart() {
for (int i = 0; i <= MaxClients; i++) {
TryWeaponHook(i);
}
Forum: Plugin/Gameplay Ideas and Requests 04-20-2018, 06:38
Replies: 3
Views: 1,498
Posted By OSWO
Re: [CSGO] Prevent weapon pickup by walking over weapons

Hook the SDK hook event "OnWeaponUse", and check buttons if & IN_USE, if not return Plugin_Handled, otherwise return Plugin_Continue;


You may want to go a step further and raytrace their eyes...
Forum: Plugins 04-18-2018, 17:30
Replies: 13
Views: 18,013
Posted By OSWO
Re: [CS:GO] Aimware Anti-Crash

This was an attempt at fixing "client changes" which was spammed with null data. I see new exploits have popped up (:
Forum: Scripting 04-01-2018, 17:35
Replies: 8
Views: 1,626
Posted By OSWO
Re: How i can drop weapon and instantly switch to another slot?

With these events I'm pretty sure you cannot have multiple "delayed" methods within a single frame, you might encounter problems. Try to Set the active weapon in a RequestFrame function.
Forum: Plugin/Gameplay Ideas and Requests 03-28-2018, 21:41
Replies: 13
Views: 7,838
Posted By OSWO
Re: how to stop people from disabling motd

Just check their cl_disablehtmlmotd value, if it's 1 make them unable to play the server lol, I know a couple of scummy surf servers that do that (:
Forum: Scripting 03-25-2018, 14:39
Replies: 4
Views: 4,491
Posted By OSWO
Re: How check if metamod plugin is running

Well you won't have SourceMod running without metamod, so nither will plugins work
Forum: Scripting 03-25-2018, 14:38
Replies: 8
Views: 1,734
Posted By OSWO
Re: CommandExists crashing server

Is "text" a variable you made inside your listener, or do you pull that from the arguments?
Forum: Plugin/Gameplay Ideas and Requests 03-25-2018, 14:36
Replies: 2
Views: 805
Posted By OSWO
Re: maps stats > the best 3 player the end maps

You need to decide on how you "score" people. Is it the amount of kills they have? Please include a "scoring system" of sorts so we can understand how you'll like to tier and rank people (:
Forum: Snippets and Tutorials 03-24-2018, 22:38
Replies: 51
Views: 18,939
Posted By OSWO
Re: [CS:GO] Final and fancy solution for putting a player in a team on connect

Why dont you use RequestFrame instead of 0.1 timers (:
Forum: Scripting 03-15-2018, 15:53
Replies: 18
Views: 3,285
Posted By OSWO
Re: DataPacks and queries leaking?

Still on that high horse I see 8)
Showing results 1 to 25 of 405

 
Forum Jump

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


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