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

Showing results 1 to 25 of 78
Search took 0.03 seconds.
Search: Posts Made By: Zeisen
Forum: General 04-28-2021, 22:23
Replies: 16
Views: 4,065
Posted By Zeisen
Re: metamod sourcemod both not working since csgo updates

2x Edit: Plugins should now be fixed, please force-update your server if they are still not working for you.

I believe this regressed with security updates. What plugin are you using / where did...
Forum: General 04-28-2021, 21:09
Replies: 16
Views: 4,065
Posted By Zeisen
Re: metamod sourcemod both not working since csgo updates

I'm sure we should wait for new meta/sm builds
Forum: General 04-28-2021, 20:54
Replies: 16
Views: 4,065
Posted By Zeisen
metamod sourcemod both not working since csgo updates

It's happening to only me or not?

metamod, sourcemod both not working even their core.

Typed 'sm' or 'meta' in server console it replied to 'Unknown Command: sm' or meta

Note: I used dev...
Forum: Scripting 11-06-2020, 16:16
Replies: 3
Views: 874
Posted By Zeisen
Re: [CS:GO] Is it possible to get/set variables from the game code?

I thought that GetEntData is legacy and no more using it. Thanks for feedback
Forum: Scripting 11-05-2020, 17:02
Replies: 3
Views: 874
Posted By Zeisen
Re: [CS:GO] Is it possible to get/set variables from the game code?

I apologize my english is rubbish...

You must hack dll and get offset.

For example, let's try to get m_isFollowing offset.
...
Forum: General 07-25-2020, 05:07
Replies: 2
Views: 677
Posted By Zeisen
Re: [TF2] player_changename problem on arena mode

did you try player_info (https://wiki.alliedmods.net/Generic_Source_Server_Events#player_info) event instead?
Forum: General 07-25-2020, 00:38
Replies: 4
Views: 1,565
Posted By Zeisen
Re: Heavy Armor Trouble

Just you can simply done with:

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




public void OnPluginStart()
{
HookEvent("round_end", OnRoundEndPost, EventHookMode_Post);
Forum: General 01-04-2020, 16:53
Replies: 2
Views: 1,593
Posted By Zeisen
Forum: General 09-17-2019, 13:04
Replies: 0
Views: 1,123
Posted By Zeisen
[CS:GO] CCSBot::ComputePath changed after 9/16/2019 updates

Valve updated parameter.

Before:
CCSBot::ComputePath(const Vector &goal, RouteType route = SAFEST_ROUTE)

// Decompile
struct s0* sub_10478BB0(struct s0* ecx, struct s0* a2, struct s0* a3)
...
Forum: Scripting 03-19-2019, 15:26
Replies: 14
Views: 3,799
Posted By Zeisen
Re: [CS:GO] Force +attack and -attack on bots

Try this one. But I didn't test.


public Action OnPlayerRunCmd(client, &buttons, &impulse, Float:vel[3], Float:angles[3], &weapon, &subtype, &cmdnum, &tickcount, &seed, mouse[2])
{
if...
Forum: Coding MM:S Plugins & SM Extensions 11-11-2018, 22:20
Replies: 4
Views: 3,446
Posted By Zeisen
Re: how do i detour the function has variable argument?

thank you for answers, unfortunately I still couldn't figure out this. other detours works okay, but PrinfIfWatched looks something special.
Forum: Scripting 11-11-2018, 22:12
Replies: 1
Views: 1,083
Posted By Zeisen
CSWeaponID for MP5SD(CS:GO)?

Hello,

I was scripting something for CS:GO server, and i found there isn't CSWeaponID for MP5SD. Is that SM developer's typo? or really CSWeaponID doesn't exists for MP5SD?

here's my code what...
Forum: Coding MM:S Plugins & SM Extensions 10-02-2018, 22:15
Replies: 4
Views: 3,446
Posted By Zeisen
Re: how do i detour the function has variable argument?

I'm still figuring out this. added va_list, but still crash. and buffer prints obstruction string.


DETOUR_DECL_MEMBER2(PrintIfWatched, void, char *, format, va_list *, args)
{
CBaseEntity...
Forum: Coding MM:S Plugins & SM Extensions 09-30-2018, 13:09
Replies: 4
Views: 3,446
Posted By Zeisen
how do i detour the function has variable argument?

I'm new c++ and extension and i made my extension for some detour functions, compile/build works okay. But server does crash when PrintIfWatched detouring.

so I oversaw PrintIfWatched source-code,...
Forum: General 07-06-2018, 21:12
Replies: 63
Views: 20,439
Posted By Zeisen
Re: Update 7/6/2018 - crash

maybe they working on that already.

https://builds.alliedmods.net/sm/waterfall
Forum: Scripting 01-30-2018, 00:52
Replies: 3
Views: 1,539
Posted By Zeisen
[CS:GO] How detect client is surfing?

I tried verify FL_ONGROUND client flag but it doesn't solve.
Forum: General 01-28-2018, 19:54
Replies: 4
Views: 1,182
Posted By Zeisen
Forum: General 01-26-2018, 20:33
Replies: 4
Views: 1,182
Posted By Zeisen
Anyone can share lastest server.so with symbol?

server_i486.so has symbol but it's too old.
Forum: General 11-28-2017, 09:45
Replies: 1
Views: 3,760
Posted By Zeisen
[CS:GO] is it possible to change bot avatar(profile image)

Now it is possible to change server-side avatar with sv_reliableavatardata in CS:GO.

Then it is possible change avatar for bots?
Forum: Scripting 11-12-2017, 09:07
Replies: 2
Views: 652
Posted By Zeisen
Forum: Scripting 11-11-2017, 21:12
Replies: 2
Views: 652
Posted By Zeisen
Is there way to detect on player bought weapon?

CS_OnBuyCommand is fired when player tries buy weapon. not detect bought weapon.
Forum: Scripting 10-28-2017, 13:08
Replies: 3
Views: 770
Posted By Zeisen
Re: remove button from getclientbuttons

You can't. you should use on OnPlayerRunCmd (https://sm.alliedmods.net/new-api/sdktools_hooks/OnPlayerRunCmd) if you want edit/work.
Forum: Scripting 10-28-2017, 13:04
Replies: 8
Views: 1,176
Posted By Zeisen
Re: Removing All Map Weapons

Wait, is weapon_* works?
Forum: Extensions 10-23-2017, 22:48
Replies: 74
Views: 69,860
Posted By Zeisen
Re: [CS:S/CS:GO] Bot Attack Control

I fixed myself. but still there is issue terrorlist bot can kill each other.
Forum: Extensions 10-23-2017, 20:55
Replies: 74
Views: 69,860
Posted By Zeisen
Re: [CS:S/CS:GO] Bot Attack Control

I found what is bug exactly. (in CS:GO)

It happened only terrorlist bots. they looking each other. and sometimes attack to his teammates.

Edit: I found more bug. i coded like this.

public...
Showing results 1 to 25 of 78

 
Forum Jump

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


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