Вопрос Panorama debugger

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
11 Фев 2023
Сообщения
153
Реакции
4
hello i was debugging something in visual studio and when i hit f6 to trigger the cheat function i found out that there is something like this



1759770669438.png

i wanna know how can i display it everytime and what if i create js scripts that do things in here
 
hello i was debugging something in visual studio and when i hit f6 to trigger the cheat function i found out that there is something like this



Посмотреть вложение 317162
i wanna know how can i display it everytime and what if i create js scripts that do things in here
it's not really for executing js, it's for debugging xml/panels/ui
dota checks for IsDebuggerPresent(occasionally?) and only shows the panorama debugger when it's true
 
ok thanks a lot, how can i know if the game is ready and how to accept it? and is it possible to get the match details before accepting ?
match ready - several ways to know, either via gamecoordinator(you get a message when the match is ready), or via hooking panorama stuff(js, panels etc.) or related internal functions(ctors etc.). search for "acceptmatch" in libclient.dylib to get started
match details - https://yougame.biz/threads/360472/#post-3351339
 
what is the best way to achieve the add player to the party by id and find match and accept?
the simplest would be to invoke the game functions that do that.
reverse engineer what happens when you add an actual friend to the party, when the match is found, and when you accept the match respectively, and do the same thing from your code.
 
Назад
Сверху Снизу