Search results

  1. JayCustom

    C# Razor foreach with shopping cart

    Do each of your items have a unique product ID? Any errors in the console? P.S - GitHub Copilot is a game changer for stuff like this. 🤓
  2. JayCustom

    Problem Nitro Imager Avatar Figure - Cloudflare Error 502

    Did you add your subdomain in cloudflare so that is resolves?
  3. JayCustom

    No automatic points, coins, or diamonds

    I'm pretty sure that interval is minutes, not seconds.
  4. JayCustom

    [Release] Christmas 2023 Furniture Pack w/ Fixed Interactions

    What is up with all the small trophies and junk they keep releasing lol. That furni becomes useless and is sold for 4 for 1c. I like the other stuff.
  5. JayCustom

    Setting up nitro got this chunk problem any solutions?

    This is just a warning. You can still utilize nitro without a problem.
  6. JayCustom

    Converting to Nitro

    To utilize Plus you'll need to add web-socket support for connections, and update packet headers. There are already Plus emulators that are doing this, that you could look at the source code and mimic. You should be able to convert all of your existing SWFs to nitro files and if your emulator...
  7. JayCustom

    Nitro converter not functioning

    Do you have file extensions turned on? Are you sure it's furnidata.xml, and not furnidata.xml.txt?
  8. JayCustom

    Nitro converter not functioning

    Your furnidata.xml does not exist at C:\Users\Username\Desktop\moebel\furnidata.xml? That error message is pretty clear...
  9. JayCustom

    table printing

    Well, your iFrame doesn't know about other HTML Elements outside of it, and the same with inline CSS. It doesn't see it.
  10. JayCustom

    table printing

    Where you import your css file you can add media="print" onto the meta tag. 1697539417 Also, utilizing an iFrame for printing the table might not be the best solution. You could use the CSS "not" query to set everything else to not be printable, based on a class .printable. You would need to...
  11. JayCustom

    Interaction Types

    Click on the furni in the catalog. Count the number of interactions. Each click will give a new interaction, and it will loop back around.
  12. JayCustom

    [Help] How can I edit this color / Gamecenter on nitro

    It would be in a habbo.swf if this wasn't nitro, and we were still in 2018? You would need to change the color in the angular code and recompile the prod build.
  13. JayCustom

    Any tips for a start?

    Just start a project, and stick to it. Use whatever resources you can find to get started. If you don't know where to start, come up with a project topic and use tools like youtube or even chatgpt to get started.
  14. JayCustom

    Any tips for a start?

    Doesn't matter where you start, as long as you stick to it. You already know HTML/CSS, so build off of that - learn JavaScript. Then take JavaScript and learn TypeScript. Then you can build an application in React or Angular. Just keep learning.
  15. JayCustom

    Extract "name" from FurnitureData and Insert into "catalog_items" Arcturus Emulator

    Your external texts likely only contains a small percentage of the furni, but if your texts contain xmas_c22_furni_name=Furni Name then it would be automatically updated. Unfortunately this would be a manual process for setting the names.
  16. JayCustom

    RevCMS Housekeeping/News?

    You can just update the textarea to support a text editor plugin, however I do believe as well this has exploits.
  17. JayCustom

    [Release] Bazaar 2017 Furniture Pack w/ Fixed Interactions

    Probably should be cancelled for forgetting this section.
  18. JayCustom

    Help with wardrobe

    If its HTML5 you should be able to right click and see the full text in your dev tools
  19. JayCustom

    Help with wardrobe

    You sure it's not generic_usable.buy? Edit: I guess buy wouldn't make a lot of sense here.. hm..
  20. JayCustom

    Razor JSON to list

    Instead of +1 on the page size you should do Math.Ceiling so it gets to a full page number and you don't need to worry about rounding. You also wouldn't need the ternary operator. Just set page Count = Math.Ceiling(countitems / pagesize); You're looping through the pages so it's going to print...
Top