Window Commands for Conquer

12/27/2025 20:45 NostalgiKhaos#1
I have been working on a source for a while and am attempting to add a new custom shop npc that would work off of Quest Points, a system I have created to rewards players for in game activity.

I am looking for a way to find a shop window that I can use without having to remove a current shop (I understand I could use Horse Racing or something similiar but don't want to remove it).

I have looked through and found this (craps table i found by random luck) does anyone have any clue as to where I can find more of these window commands?
Code:
public class WindowCommands
{
    public const ushort
        Compose = 1,
        Craft = 2,
        Warehouse = 4,
        DetainRedeem = 336,
        DetainClaim = 337,
        VIPWarehouse = 341,
        Breeding = 368,
        PurificationWindow = 455,
        StabilizationWindow = 459,
        JiangHuSetName = 0x269,
        TalismanUpgrade = 347,
        GemComposing = 422, 
        OpenSockets = 425,
        Blessing = 426,
        TortoiseGemComposing = 438,
        RefineryStabilization = 448,
        HorseRacingStore = 464,
        Reincarnation = 485,
        SecondaryPasswordVerification = 568,
        CrapsTable = 656;

}
**EDIT**
I also see the shop .ini's and understand how the items are listed, price etc but was wondering if i create a new .ini how to have an npc actually use that .ini

I made an npc that goes up in window by 1 per click and found it!