Search Results
Что уже пробовали? Обновляли ли инклюды, плагины? OnDialogResponse вообще не вызывается, даже если print в начале постав...
813
Здравствуйте. 1. Может кто сталкивался, при пересоздании TD с PreviewModel и последующем его показе игроку, на какие-...
99,608
Насколько я понимаю, это особенности арифметики чисел с плавающей точкой https://softwareengineering.stackexc...ounding-errors
408
Здравствуйте. Ковырял стандартный скрипт "flymode", в связи с чем возникла пара вопросов, подскажите, люди знающи...
99,608
http://gtamodding.ru/wiki/DFF Не знаю, почему вы решили, что он как-то связан с плагинами. Это файл со стороны клиента.
208
Судя по всему, мелкий баг клиента, сам иногда замечал похожее. Пока не сядешь в машину, она немного прижата к з...
268
Quote: Originally Posted by mk124 There was a bug in the runtime, i've fixed it now. Please update your shoebill-runtime by deactivating offlineMode. Shoebill will download the new runtime...
32,393
This? Код: private static Textdraw textDrawLeft; // ... public PlayerSpawner(...) { // ... textDrawLeft = Textdraw.create(new Vector2D(200F, 300F)); textDrawLeft.setTextSize(new Vector...
32,393
I created static Textdraw (not PlayerTextdraw), initialize it in constructor and then register handler to click event. I don't know what's wrong with my code.
32,393
My code like this and I see "DrumYum connected!" in console, this mean that problem only in PlayerClickTextDrawEvent, I think. Textdraw changes color when I hover it by my mouse, but when I click not...
32,393
When I click textdraw text don't printed in console: Код: eventManager.registerHandler(PlayerClickTextDrawEvent.class, (e) -> { System.out.println("textdraw clicked!"); } Is it my bad or plug...
32,393
Попробуйте обновить плагины. С main() {} эта ошибка связана при компиляции, а у Вас во время работы. Похожая пробл...
209
What is the matter with applyAnimation for Actor? denizx sent me a private message, where he can't apply animation for actor because of client crash. I tested and same for me. Is it bug or what? If I...
32,393
First didn't help, second I'll try later. Also, I found out that dialogs have two styles(in examples): "Shoebill 1.0" and "Shoebill Milestone2". What is the difference between them? "Shoebill 1.0" b...
32,393
Nice to see fast update! Thank you developers! Questions: About same BeforeCheck problem: Код: // ... private PlayerCommandManager commandManager; private CommandGroup mainCommandGroup; privat...
32,393
Quote: Originally Posted by Reim Создай динам зону (сфера) с радиусом ~50, центр зоны коор актера, и когда игрок будет за...
179
Commands in TDMCommands and AdminCommands available in game, but BeforeCheck doesn't process. (String haven't printed) BeforeCheck in AdminCommands: Код: @BeforeCheck public boolean beforeCheck(P...
32,393
What's the difference between registerGroup and registerChildGroup? And why BeforeCheck don't works in code like this? Код: mainCommandGroup = new CommandGroup(); adminCommandGroup = new CommandGr...
32,393
BeforeCheck works for all commands classes in CommandGroup? I need to add other commands classes to their own CommandGroups?
32,393