Results 1 to 11 of 11

Hybrid View

  1. #1
    ItsMakar's Avatar
    Join Date
    Aug 2021
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    0
    HiImKyle pls say how you create filtering in item giver ( i create it but it glitchy grid layout wokring bad if i filtering text this is my code

    ImGui.Begin("Item Giver");

    ItemGiverFilter.Draw("");
    ImGui.SliderInt("Count", ref ItemGiverItemsCount, 1, 999, ItemGiverItemsCount.ToString());

    foreach (var (item, index) in RegisteredItemIds.WithIndex()) {
    if (!ItemGiverFilter.PassFilter(item.Key.Value)) {
    continue;
    }

    // yes i took it from imgui issues on ******
    if (index > 0 && index % (Math.Round(ImGui.GetWindowSize().x / 41)) == 0) ImGui.NewLine();

    if (ImGui.ImageButton(item.Value, new ImVec2(27, 27), new ImVec2(0, 0), new ImVec2(1, 1), 0, new ImVec4(0, 0, 0, 0), new ImVec4(1, 1, 1, 1))) {
    Hacks.LocalPlayer.QuickSpawnItem(new EntitySource_Film(), item.Key.Key, ItemGiverItemsCount);
    }
    ImGui.SameLine();
    }

    ImGui.End();
    video: https ://dri ve .go ogle .c om /fil e/d/1FN cqwYi 8tCuIS nuds MfWx Uvy9A MEt3n_/vie w?usp =s harin g (without spaces)

    - - - Updated - - -

    UPD: I think I can somehow fix this, but I need not to draw only the last elements, it don't draw random ones, and because of this, somewhere there are more buttons and somewhere less

    - - - Updated - - -

    but i don't know how....
    Last edited by ItsMakar; 06-10-2022 at 12:32 AM. Reason: fix

Similar Threads

  1. [Solved] How do I make a hacked client?
    By Alkine in forum Realm of the Mad God Private Servers Help
    Replies: 7
    Last Post: 06-06-2016, 07:58 AM
  2. [Solved] How to change ip of hacked client for private server?
    By Coolet in forum Realm of the Mad God Help & Requests
    Replies: 1
    Last Post: 03-23-2016, 01:59 AM
  3. How to make a hacked client for a private server?
    By MatuandJohku in forum Realm of the Mad God Private Servers Help
    Replies: 5
    Last Post: 04-28-2015, 12:33 AM
  4. [Solved] How Do I Get A Hacked client For Hexxit?
    By kayden700 in forum Minecraft Help
    Replies: 9
    Last Post: 10-15-2014, 01:24 PM
  5. Replies: 2
    Last Post: 05-05-2013, 11:41 AM