Jump to content

David

Creator
  • Posts

    2,330
  • Joined

  • Last visited

Everything posted by David

  1. David

    SocialLinks not working

    Changed Status from Pending to Not a Bug
  2. David

    ATM (Cash Machine)

    By adding this into source code. // your npc ids here string[] npcIDs = {"7847228928", "7847228928", "7847228928"}; private void OnUseNPC(BasePlayer npc, BasePlayer player) { if (npcIDs.Contains($"{npc.userID}")) ATMCUI(player); }
  3. David

    ATM (Cash Machine)

    Yes it does.
  4. David

    error please help

    Changed Status from Pending to Closed
  5. Changed Status from Pending to Work in Progress
  6. Send me your data file and config please.
  7. David

    Not able to buy items

    Changed Status from Pending to Work in Progress
  8. David

    Not able to buy items

    Hey, try to disable combat/raid block restriction. NoEscape api is giving me some trouble.
  9. David

    Custom Buttons

    Sorry about no reply, I must have missed notification from your comment. I love to see what you made here! Currently there is only option to open all of them at once, in future I might expand on it, will see.
  10. David

    Custom Buttons

    Sadly thats not possible, unless you make people bind command to specific key.
  11. David

    rights

    Changed Status from Pending to Not a Bug
  12. David

    rights

    you probably just mistyped something.
  13. David

    Error when running plugin

    Changed Status from Pending to Closed
  14. David

    [Kits not being given]

    Two plugins cant share same command
  15. David

    plugin reloads

    Message me on discord and I will send you new version.
  16. Changed Status from Pending to Not a Bug
  17. David

    Shop UI

    Problem is that my shop was not designed to show item names, I will have to figure out something.
  18. David

    plugin reloads

    Hit me up on discord, I have new version for testing
  19. David

    Not detecting economics

    Changed Status from Pending to Not a Bug
  20. David

    Not detecting economics

    Thanks for letting me know
  21. David

    Importing Kits

    Changed Status from Pending to Not a Bug
  22. David

    Shop UI

    Cooldowns for commands works in latest version. Don't want to make people change their configs for this change. You can always create your own console command which includes all your other commands. Paste this into any plugin. //mycustomcommand $player.id [ConsoleCommand("mycustomcommand")] private void mycustomcommand_1(ConsoleSystem.Arg arg) { //args var args = arg.Args; if (args.Length != 1) return; //prevent player usage var player = arg?.Player(); if (player != null) return; //find target var target = BasePlayer.FindByID(Convert.ToUInt64(args[0])); if (target == null) { Puts("player not found"); return; } //rcon commands to execute Server.Command($"audio.message send {target.userID} register"); Server.Command($"radstorm start"); Server.Command($"notify.player {target.displayName} 0 Purchased a Radstorm"); }
  23. in case someone is scrolling through forum threads and looking for similar plugin.
  24. Changed Status from Pending to Not a Bug
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.6k

Files Sold

Total number of files sold.

2.4m

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.