Store icon indicating copy to clipboard operation
Store copied to clipboard

hide module

Open Caaine opened this issue 5 years ago • 29 comments

Why you Removing it? :<

Caaine avatar Feb 06 '20 20:02 Caaine

Hats/Trail & more need to setParent with player. If block player transmit, that model will stuck anywhere. so I remove that and provide some API and forward to Fix that. Code example


public void Store_OnHatsCreated(int client, int entity, int slot)
{
    g_Edict[entity] = client;
    SDKHookEx(entity, SDKHook_SetTransmit, Event_OnTransmit);
}

public void Store_OnTrailsCreated(int client, int entity)
{
    g_Edict[entity] = client;
    SDKHookEx(entity, SDKHook_SetTransmit, Event_OnTransmit);
}

public void Store_OnParticlesCreated(int client, int entity)
{
    g_Edict[entity] = client;
    SDKHookEx(entity, SDKHook_SetTransmit, Event_OnTransmit);
}

public void Store_OnNeonCreated(int client, int entity)
{
    g_Edict[entity] = client;
    SDKHookEx(entity, SDKHook_SetTransmit, Event_OnTransmit);
}

public void Store_OnPetsCreated(int client, int entity)
{
    g_Edict[entity] = client;
    SDKHookEx(entity, SDKHook_SetTransmit, Event_OnTransmit);
}

public Action Event_OnTransmit(int entity, int sendto)
{
    int client = g_Edict[entity];
    if (client == sendto)
        return Plugin_Continue;

    return g_bHide[sendto][client] ? Plugin_Handled : Plugin_Continue;
}

Kxnrl avatar Feb 06 '20 20:02 Kxnrl

Hey @Kxnrl, is it possible to install an extra plugin for it to be able to use it further? I am often asked by my users why it was removed and the guys are missing it :3

freakexeuLow avatar Feb 11 '20 16:02 freakexeuLow

Hey @Kxnrl, is it possible to install an extra plugin for it to be able to use it further? I am often asked by my users why it was removed and the guys are missing it :3

what extra plugin

Kxnrl avatar Feb 11 '20 16:02 Kxnrl

Hey @Kxnrl, is it possible to install an extra plugin for it to be able to use it further? I am often asked by my users why it was removed and the guys are missing it :3

what extra plugin

for !hide

freakexeuLow avatar Feb 11 '20 16:02 freakexeuLow

ofc, i can made new one to control them

Kxnrl avatar Feb 11 '20 16:02 Kxnrl

ofc, i can made new one to control them

who nice, you can also write me on steam if you want to test something and thanks :3

freakexeuLow avatar Feb 11 '20 16:02 freakexeuLow

and? :O

Caaine avatar Mar 08 '20 15:03 Caaine

Hey @Kxnrl :D have you already created something like this or is it still in progress? :3

freakexeuLow avatar Mar 30 '20 19:03 freakexeuLow

Hey @Kxnrl :D have you already created something like this or is it still in progress? :3

sorry, I am busy in IRL works.

Kxnrl avatar Mar 31 '20 04:03 Kxnrl

Thanks for doing this, I will test it over the days :3

freakexeuLow avatar May 07 '20 14:05 freakexeuLow

Hey Kxnrl, I got this error on your new version :3 https://pastebin.com/Dx7Rqe6L

freakexeuLow avatar May 07 '20 22:05 freakexeuLow

Fixed https://github.com/Kxnrl/Store/commit/84f8a808c59f585f0f74fa12505859b23f2563e9

Kxnrl avatar May 08 '20 10:05 Kxnrl

Fixed 84f8a80

Thanks and the next error: https://pastebin.com/Hgn3VH7n We think you miss a line like

public void OnPluginStart() { RegConsoleCmd("sm_shide", Command_Hide);

// Load the translations file LoadTranslations("store.phrases"); }

I hope this is correct so far, because you don't have this in your file :3

Info: Yes, i use the last translation file and Caaine has the same problem with the error, I write privately with him :3

freakexeuLow avatar May 08 '20 11:05 freakexeuLow

!hide

Works so far, but Aura, Particle, Neon´s and Custom Playerskins are not hide

Playertrails, Hats, Facemask and Glasses are hidden when you type !shide :3

freakexeuLow avatar May 09 '20 14:05 freakexeuLow

grafik sry for late response Aura, Particle, Neon´s and Custom Playerskins are not hide i use master branch

Caaine avatar Jul 26 '20 17:07 Caaine

they don't hide yours

Kxnrl avatar Jul 26 '20 19:07 Kxnrl

they don't hide yours

hey Kxnrl, isn't it possible to include everything to hide such aura/particles and custom playerskins? I'm still looking for it at the moment and hope that will works it will that one day. :3

freakexeuLow avatar Jul 30 '20 19:07 freakexeuLow

TransmitManager not working for me: https://github.com/Kxnrl/sm-ext-TransmitManager/issues/1 with Bara's compiled version crash the Server https://crash.limetech.org/zgufvp2ziaah cant' test the hide Plugin :/

Caaine avatar Aug 27 '20 12:08 Caaine

any update for this? :S

Caaine avatar Oct 25 '20 18:10 Caaine

sorry, no. I have no time. but it in my plan

Kxnrl avatar Nov 04 '20 13:11 Kxnrl

TransmitManager not working for me: Kxnrl/sm-ext-TransmitManager#1 with Bara's compiled version crash the Server https://crash.limetech.org/zgufvp2ziaah cant' test the hide Plugin :/

sorry, no. I have no time. but it in my plan

I also have exactly the same problem with your store system. Your version gives me the warning and Bara's version works, but crashes the server when 2-3 players are playing and do you still not have time to fix it Kxnrl? :3

freakexeuLow avatar Dec 09 '20 12:12 freakexeuLow

Sorry, still no, because COVID-19, I am very busy.. And I think you can fork repo and configure travis, try build yourself

Kxnrl avatar Dec 10 '20 21:12 Kxnrl

Sorry, still no, because COVID-19, I am very busy.. And I think you can fork repo and configure travis, try build yourself

good recovery and i never work with extensions

freakexeuLow avatar Dec 11 '20 00:12 freakexeuLow

Sorry, still no, because COVID-19, I am very busy.. And I think you can fork repo and configure travis, try build yourself

good recovery and i never work with extensions

I updated transmitmanager, but need compile by yourself. CI may not working fine.

Kxnrl avatar Jan 22 '21 19:01 Kxnrl

Sorry, still no, because COVID-19, I am very busy.. And I think you can fork repo and configure travis, try build yourself

good recovery and i never work with extensions

I updated transmitmanager, but need compile by yourself. CI may not working fine.

Thanks, now its time to find someone who does the compiling :P

freakexeuLow avatar Jan 24 '21 14:01 freakexeuLow

Hey, I tested it and it gave me Debian 10 compiled (the extension) and the error is Got a presubmit token from server: bcbc01a643a4f1f3516022f74dd3bcc9 Classified module /home/user2-7/server/csgo/csgo/addons/sourcemod/extensions/TransmitManager.ext.2.csgo.so as Extension Submitting symbols for /home/user2-7/server/csgo/csgo/addons/sourcemod/extensions/TransmitManager.ext.2.csgo.so Symbol upload complete: Stored symbols for TransmitManager.ext.2.csgo.so/21C4BA37786C5BFA5AD3EAB6EBE3E51A0/Linux/x86 Uploaded crash dump: Crash ID: 6OTN-HGZV-GQTF

Crash reporter: https://crash.limetech.org/6otnhgzvgqtf

freakexeuLow avatar Feb 05 '21 09:02 freakexeuLow

Hey, I tested it and it gave me Debian 10 compiled (the extension) and the error is Got a presubmit token from server: bcbc01a643a4f1f3516022f74dd3bcc9 Classified module /home/user2-7/server/csgo/csgo/addons/sourcemod/extensions/TransmitManager.ext.2.csgo.so as Extension Submitting symbols for /home/user2-7/server/csgo/csgo/addons/sourcemod/extensions/TransmitManager.ext.2.csgo.so Symbol upload complete: Stored symbols for TransmitManager.ext.2.csgo.so/21C4BA37786C5BFA5AD3EAB6EBE3E51A0/Linux/x86 Uploaded crash dump: Crash ID: 6OTN-HGZV-GQTF

Crash reporter: https://crash.limetech.org/6otnhgzvgqtf

Did you sdkhook transmit to hook player's transmit?

Kxnrl avatar Feb 05 '21 09:02 Kxnrl

Hey, I tested it and it gave me Debian 10 compiled (the extension) and the error is Got a presubmit token from server: bcbc01a643a4f1f3516022f74dd3bcc9 Classified module /home/user2-7/server/csgo/csgo/addons/sourcemod/extensions/TransmitManager.ext.2.csgo.so as Extension Submitting symbols for /home/user2-7/server/csgo/csgo/addons/sourcemod/extensions/TransmitManager.ext.2.csgo.so Symbol upload complete: Stored symbols for TransmitManager.ext.2.csgo.so/21C4BA37786C5BFA5AD3EAB6EBE3E51A0/Linux/x86 Uploaded crash dump: Crash ID: 6OTN-HGZV-GQTF Crash reporter: https://crash.limetech.org/6otnhgzvgqtf

Did you sdkhook transmit to hook player's transmit?

i have not customized anything, just uploaded the extension and the hide system

Edit: maybe this is the SurfTimer? https://github.com/surftimer/Surftimer-Official

freakexeuLow avatar Feb 05 '21 09:02 freakexeuLow

Hey, I tested it and it gave me Debian 10 compiled (the extension) and the error is Got a presubmit token from server: bcbc01a643a4f1f3516022f74dd3bcc9 Classified module /home/user2-7/server/csgo/csgo/addons/sourcemod/extensions/TransmitManager.ext.2.csgo.so as Extension Submitting symbols for /home/user2-7/server/csgo/csgo/addons/sourcemod/extensions/TransmitManager.ext.2.csgo.so Symbol upload complete: Stored symbols for TransmitManager.ext.2.csgo.so/21C4BA37786C5BFA5AD3EAB6EBE3E51A0/Linux/x86 Uploaded crash dump: Crash ID: 6OTN-HGZV-GQTF Crash reporter: https://crash.limetech.org/6otnhgzvgqtf

Did you sdkhook transmit to hook player's transmit?

i have not customized anything, just uploaded the extension and the hide system

Edit: maybe this is the SurfTimer? https://github.com/surftimer/Surftimer-Official

https://github.com/Kxnrl/sm-ext-TransmitManager/commit/0fa5a52caf5bb5242067ed2713ef4f8e43db7aff

Kxnrl avatar Feb 11 '21 17:02 Kxnrl