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

[CS:GO] PTaH - V1.0.8


Post New Thread Reply   
 
Thread Tools Display Modes
Peace-Maker
SourceMod Plugin Approver
Join Date: Aug 2008
Location: Germany
Old 11-29-2016 , 14:48   Re: [CS:GO] PTaH - V1.0.1
Reply With Quote #21

Quote:
Originally Posted by komashchenko View Post
https://github.com/komashchenko/PTaH...rwards.cpp#L75
left to fix ExecuteStringCommand
If you run DETOUR that commands sent by a player not reach the server (although before all was normal),
I've tried all the options that came to my mind but nothing helped, if anyone can help to fix this issue.
Your signature is wrong. You're referencing the wrong chunk.
Code:
\x55\x89\xE5\x83\xEC\x18\x89\x5D\xF8\x8B\x5D\x08\x89\x75\xFC\x8B\x75\x0C\x89\x1C\x24\x89\x74\x24\x04\xE8\x2A\x2A\x2A\x2A\x84\xC0\x74\x2A
__________________
Peace-Maker is offline
komashchenko
BANNED
Join Date: Nov 2013
Old 11-29-2016 , 15:36   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #22

1.0.2
  • Fix after update CSGO. Thank you Peace-Maker, GoD-Tony, rom4s
komashchenko is offline
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 01-13-2017 , 16:13   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #23

Code:
L 01/13/2017 - 01:22:22: [PTaH] Invalid detour address passed - Disabling detour to prevent crashes
L 01/13/2017 - 01:22:22: [PTaH] Detour failed CDownloadListGenerator.
Using latest available version and gamedata. Am I missing something or did this just break after last night's CS:GO update? I am using it for the first time.
__________________
sneaK is offline
komashchenko
BANNED
Join Date: Nov 2013
Old 01-13-2017 , 17:59   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #24

Quote:
Originally Posted by blackhawk74 View Post
Code:
L 01/13/2017 - 01:22:22: [PTaH] Invalid detour address passed - Disabling detour to prevent crashes
L 01/13/2017 - 01:22:22: [PTaH] Detour failed CDownloadListGenerator.
Using latest available version and gamedata. Am I missing something or did this just break after last night's CS:GO update? I am using it for the first time.
OS ?
komashchenko is offline
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 01-13-2017 , 19:10   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #25

Quote:
Originally Posted by komashchenko View Post
OS ?
Apologies for not specifying earlier, Windows.
__________________
sneaK is offline
komashchenko
BANNED
Join Date: Nov 2013
Old 01-14-2017 , 08:06   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #26

Quote:
Originally Posted by blackhawk74 View Post
Apologies for not specifying earlier, Windows.
I am rechecked signature it is the same as here https://github.com/komashchenko/PTaH....games.txt#L10, checked on the test server everything is fine too i dont know why you have this issue.
komashchenko is offline
JAA
Member
Join Date: Sep 2011
Old 01-14-2017 , 10:09   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #27

Amazing!
JAA is offline
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 01-15-2017 , 01:36   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #28

Quote:
Originally Posted by komashchenko View Post
I am rechecked signature it is the same as here https://github.com/komashchenko/PTaH....games.txt#L10, checked on the test server everything is fine too i dont know why you have this issue.
Aha, I figured out the issue. I was incredibly confused since I was using the latest build & gamedata, yet it still wasn't working.

Here is my current extensions list:

Spoiler


Note the bolded extensions. When Nav File Download Blocker is installed, that's when I get this error:

Code:
L 01/13/2017 - 01:22:22: [PTaH] Invalid detour address passed - Disabling detour to prevent crashes
L 01/13/2017 - 01:22:22: [PTaH] Detour failed CDownloadListGenerator.
When Cleaner is loaded, I get this error:
Code:
L 01/15/2017 - 00:34:24: [PTaH] Failed get signature ServerConsolePrint.
With neither of these extensions loaded, there are no errors, and no server crashes. It looks like there's some sort of conflict. For both of these extensions, neither of these exact signatures are specified in their gamedata files. Any thoughts?
__________________

Last edited by sneaK; 01-15-2017 at 01:36.
sneaK is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 01-15-2017 , 05:39   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #29

Quote:
Originally Posted by asherkin View Post
Wildcard the first 8 bytes of the signature to fix the conflict, though you might need to create a longer signature to ensure you're still matching the correct function.
__________________
asherkin is offline
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 01-16-2017 , 13:10   Re: [CS:GO] PTaH - V1.0.2
Reply With Quote #30

Edit:

The original (working) signature for CDownloadListGenerator:

Code:
"windows"		"\x55\x8B\xEC\x81\xEC\x04\x01\x00\x00\x56\x8B\xF1\x8B\x4D\x08"
With the first 8 bytes wildcarded (I think I did this right?):

Code:
"windows"		"\x2A\x2A\x2A\x2A\x55\x2A\x2A\x2A\x2A\x8B\x2A\x2A\x2A\x2A\xEC\x2A\x2A\x2A\x2A\x81\x2A\x2A\x2A\x2A\xEC\x2A\x2A\x2A\x2A\x04\x2A\x2A\x2A\x2A\x01\x2A\x2A\x2A\x2A\x00\x00\x56\x8B\xF1\x8B\x4D\x08"
Was still resulting in

Code:
L 01/23/2017 - 02:25:43: [PTaH] Invalid detour address passed - Disabling detour to prevent crashes
L 01/23/2017 - 02:25:43: [PTaH] Detour failed CDownloadListGenerator.
Did I even do that right? Perhaps more is needed? I'm assuming I would also need to do the same for ServerConsolePrint.[/QUOTE]
__________________

Last edited by sneaK; 01-24-2017 at 22:36.
sneaK is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 16:13.


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