Slotted DocsHomeHome
GitHubGitHub (opens in a new tab)
  • Getting started
  • Globals
    • cheat
    • easing
    • features
    • helper
    • json
    • menu
    • c_config
    • c_hud_manager
    • c_input
    • c_menu_gui
    • c_navgrid
    • c_object
      • c_ai_manager
      • c_base_item
      • c_buff
      • c_buff_manager
      • c_inventory
      • c_inventory_slot
      • c_item_data
      • c_spell_book
      • c_spell_cast_info
      • c_spell_slot
      • c_unit_info_component
    • c_renderer
    • c_tactical_map
    • c_web_client
      • c_response
    • features
      • c_buff_cache
      • c_entity_list
      • c_evade
      • c_module
      • c_orbwalker
      • c_prediction
      • c_target_selector
      • c_threading
    • menu
      • c_navigation
      • c_section
      • c_window
    • champion_module_spell_data_t
    • color
    • config_var_t
    • lstring
    • math
      • arc_t
      • circle_t
      • polygon_t
      • rectangle_t
      • ring_t
      • sector_t
      • vec2
      • vec3
    • missile_instance_t
    • prediction_result_t
    • spell_instance_t
    • texture_t
    • e_buff_type
    • e_hitchance
    • e_key
    • e_key_state
    • e_mouse_button
    • e_object_type_flag
    • e_orbwalker_mode
    • e_prediction_flags
    • e_special_spell
    • e_spell_flag
    • e_spell_slot
    • e_ward_type
    • Draw Turret Range

On This Page

  • Functions
  • get_spell_slot
  • get_spell_cast_info
Edit this page
Classes
c_object
c_spell_book

c_spell_book

Functions

get_spell_slot

ArgumentTypeRequired
slote_spell_slot+
returnsc_spell_slot
local spell_book = g_local:get_spell_book()
local q_slot = spell_book:get_spell_slot(e_spell_slot.q)
 
if q_slot ~= nil then
  print("QSlot at level " .. q_slot.level)
end

get_spell_cast_info

ArgumentTypeRequired
returnsc_spell_cast_info | nil
local spell_book = g_local:get_spell_book()
local cast_info = spell_book:get_spell_cast_info()
 
if cast_info ~= nil then
  print("Slot casted: " .. cast_info.slot)
end
c_item_datac_spell_cast_info

© 2024 slotted.cc