Search results

  1. kaopan

    How to move the camera to a given position?

    I have already looked into that. The class that's most related to what I want is the class Camera. However, what I found here is just setting the camera distance. There seems to be no function to move the camera to a given position here. declare class Camera { static SetEnableSmooth(val...
  2. kaopan

    How to move the camera to a given position?

    I am finding out how to write a script to move the camera to a given position. Does anyone know which function should be used? I remember that there used to be an official Melonity script for Techies' Remote Mines that could move the camera to the mine stack when it's about to explode. Thanks...
  3. kaopan

    Is it possible to use AI to assist in writing a more intelligent script for autoplay (Then you can use all your time to communicate friend )?

    I used to engage in deep learning projects using the Melonity API. For specific purposes, I employed a CNN-LSTM network to train data obtained from STRATZ. However, due to my limited proficiency in JS and web development, I opted for Python to handle the machine learning aspects. To establish...
  4. kaopan

    Inquiring about Dota 2 Ability Key Arguments: Seeking Cheat Sheet or Similar Resource

    The two functions within the Ability class, namely GetLevelSpecialValueFor(key: string): number | null; and GetLevelSpecialValueForFloat(key: string): number | null;, necessitate a string argument called "key." For instance, you can utilize...
  5. kaopan

    Is there any function to get a Damage Barrier of a unit?

    Thank you for your reply. I'm making a custom script for the Nyx combo, determining whether it is enough to kill each enemy hero (similar to old Techies' Remote Mines)
  6. kaopan

    Is there any function to get a Damage Barrier of a unit?

    Damage Barrier creates a barrier around a unit (i.e., a hero) that protects the unit from incoming damage based on its max capacity and type. There are 3 types of Damage Barrier (i.e., Resonant Pulse), Magical (i.e., Flame Guard), and Universal (i.e., Aphotic Shield). So, is there any function...