Jump to content

CupsOhJoe

Creator
  • Posts

    275
  • Joined

  • Last visited

Everything posted by CupsOhJoe

  1. Make sure you have "" and not the word null if you do not want to run the command. If you use the parameter NULL it will error with that message. I will add a check in the next update.
  2. Can I see your Config?
  3. CupsOhJoe

    compilation error

    Changed Status from Pending to Closed Changed Fixed In to 1.0.4
  4. CupsOhJoe

    compilation error

    I have updated with a new version, let me know if it works.
  5. CupsOhJoe

    compilation error

    I can not replicate on my test server:
  6. CupsOhJoe

    compilation error

    Interesting it's trying to use a discord extention. I didn't incorporate any discord functionality. I will take a look asap and test on my server. Are you able post the config.
  7. CupsOhJoe

    BetterTC

    I can understand that is your personal preference but a lot of other owners do not. Just was hoping for at least the option to remove it or keep it
  8. CupsOhJoe

    BetterTC

    Is there anyway we can have any feature not permitted to players not show up in the menu. Example: If they are not allowed to skin the the skins should not show up at all.
  9. CupsOhJoe

    Crafting Panel

    Is there anyway we can get the config with all the items as you have above (All DLC etc)
  10. CupsOhJoe

    Images not loading ...

    Could we at least get the Settings Image
  11. Version 1.0.5

    35 downloads

    "Skin Popup & Command" enhances the item pickup experience by providing special notifications and commands for items with specific skins. The plugin offers a more immersive and interactive experience for players when they acquire skinned items in the game. Need help, please join my discord @ The Cantina Main Features: Custom Command Execution: The plugin will automatically execute predefined commands from the config (set by owner/admin) when players picks up the skinned items, allowing for instant activation of server events, announcements, and more. Customizable Popups: Create your own popup backgrounds using your own images (Currently is https://postimg.cc/8JZnvgvp). Plugin Integration: If you want a more visual creativity you can set the notification to use popular plugins such as UINotify, Notify, and Toastfy. This allows for more themed integration into your server. Easy Configuration: Customize your notification timing, message content, and popup amount through the config file (Example Below). Simple Notifications: If you do not want to use any fancy popup or Notification plugin you can simply just send the message to the chat. EXAMPLE CUSTOM CONFIG (NOT THE DEFAULT): { "Show notification via: TOASTIFY | NOTIFY | POPUP | CHAT": "POPUP", "Alert ID when using NOTIFY/UINotify?": 0, "Alert ID when using TOASTIFY?": "success", "Duration of alerts (ONLY FOR POPUP & TOASTIFY)?": 5.0, "POPUP Background Image URL": "https://i.postimg.cc/SR40wyNM/paper.png", "List of Skins": [ { "Skin ID?": 2420097877, "Item Name Used for Skin ID": "Cash", "How many Times to show alert?": 100, "Message on Special Item Skin Pickup?": "<color=black>Hey {player}, you just picked up some <color=orange>CASH</color>, use it to buy items and upgrades. Use your <color=orange>CASH</color> to upgrade your TC, BackPacks and much more!</color>", "Run a Command on pickup?": false, "If enable, what command to run?": null }, { "Skin ID?": 2834920066, "Item Name Used for Skin ID": "Epic Scrap", "How many Times to show alert?": 10, "Message on Special Item Skin Pickup?": "<color=white>Hey {player}, you just picked up some <color=orange>EPIC SCRAP</color>, use it to buy items and upgrades. Use your <color=orange>EPIC SCRAP</color> to upgrade your TC, BackPacks and much more!</color>", "Run a Command on pickup?": true, "If enable, what command to run?": "say This message was sent through console command, {player} after you picked up skin id:2834920066" } ], "Popup Co-ordinates": { "Anchor Min X": 0.78, "Anchor Max X": 0.98, "Anchor Min Y": 0.5, "Anchor Max Y": 0.62 } } Features to be implemented: Permissions Set Images per each skinned it popup
    $5.99
  12. CupsOhJoe

    Crafting Panel

    This is a great idea and imthenewguy is great and will help you implement what you need, check out his discord. Lots of API on the description page.
  13. CupsOhJoe

    Error eggs

    Does this also fix the Error 139. All of a sudden I've been getting this error and have to reinstall image.
  14. Version 1.0.4

    26 downloads

    Features: First Join and Command triggered multi commands executor with delayed start and duration for any commands needed. Need help, please join my discord @ The Cantina RUN INDIVIDUAL COMMANDS Option 1: When a player joins and spawns in, if you have a set command with isNewPlayer set to true, it will run after the set delay time (Seconds). If there is a set command for endCommand (OPTIONAL) it will then run that command and theDuration to run the command the amount of time after the initial command. Option 2: You can set commands from other plugins to be run by staff/players using the "runcmd <commandName> <player/id>" if <player/id> is omitted will run on self. this avoids the need to give players individual permissions for other plugins. For example you can use "/runcmd god" and if you have the GODMODE plugin the player would be set to GODMODE, if you have a duration of 30.0 set the endCommand set to "god player", it would automatically be run after 30 seconds. You as the server owner can set any commands that can be run through console and configure durations of the commands for you staff/players. Sky is the limit for this. RUN ALL COMMANDS ONPLAYERSPAWN Option 3: Example isNewPlayer set to true: Player joins/spawns, command set to "say hi {player}" theDelay set to 10 with a endCommand set to "good bye {player}" and theDuration set to 15. "SERVER hi CupsOhJoe" would run 10 seconds after player joins then waits 15 seconds to run the "SERVER good bye CupsOhJoe". If there are more commands it will run until all are completed. (TIP: Add theDelay + theDuration to get the time needed for the next Command unless you want to run multiple commands at once) Example Config: { "exists": true, "TheCommands": [ { "commandName": "Command1", //Commnad Identifier "enabled": true, //Should this command be run "isNewPlayer": false, //is this command to be run only on a new player join "singleCast": true, //Will be able to be run using the /runcmd <command> format "theCommand": "this command run at 5 seconds", //First Command to run after a certain delay "endCommand": "this command runs 10 after the above command", //Command to be run after a certain duration (OPTIONAL) "theDelay": 0.0, //Will run instantly when using /runcmd <commandName> "theDuration": 5.0 //amount of time to run before the end command is run }, { "commandName": "Command2", "enabled": true, "isNewPlayer": false, "singleCast": true, //Will be able to be run using the /runcmd <command> format "theCommand": "this command runs at 10 seconds as well", "endCommand": "", //Will not run if empty "theDelay": 10.0, "theDuration": 5.0 }, { "commandName": "Command3", "enabled": true, "isNewPlayer": true, //Will execute onPlayerSpawn "singleCast": false, //Will not be run using the /runcmd <command> format "theCommand": "this command runs at 15 seconds as for new players only", "endCommand": "This command runs 5 seconds after the above command", "theDelay": 15.0, "theDuration": 5.0 } ] } Commands: runcmd <commandName> "optional" <player/id>- Execute commandName from config, with optional endCommand if set Permissions: FirstCommand.use - Allows the ability to run the individual commands (Only one command at a time) FirstCommand.admin - Allows the ability to run all commands in sequence (At Once) FirstCommand.multi - Same as above but will allow to run all commands set with isNewPlayer = true only Planned features: Placeholder API support
    $2.50
  15. CupsOhJoe

    Bradley Stuck at Silo

  16. CupsOhJoe

    Better Medicine

    I'd love to see permissions to ALLOW the use of these items, this way they can be unlocked with level plugins.
  17. Either through command or AdminMenu. Either way the perm is confirmed removed as I checked the player/group.
  18. As stated above, when a player losses the perms, the perks stay. I have seen them stay for few hours to a few days. Not sure why, or how it happens. I assumed if the perms were removed that the Electrical perks should stop or is the perk is meant to have the items placed continue even if the original placer has lost the perms/perks. Either way it's not working as intended.
  19. CupsOhJoe

    Arena Decay

    I have fixed it.
  20. CupsOhJoe

    Arena Decay

    THe TC has enough But it still shows
  21. CupsOhJoe

    Raidable Bases

    "Bypass Lock Treasure To First Attacker For PVE Bases": false, "Bypass Lock Treasure To First Attacker For PVP Bases": false, What should be changed for PvP?
  22. CupsOhJoe

    RaidBlock

    WHen we teleport, seems that Raidblock triggers. Some players including myself are getting random RAIDBLOCK not sure why. We thought it was from teleporting to another player as it seems it happens often.
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.4k

Files Sold

Total number of files sold.

2.3m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.