Trade

Allows players to trade items safely at a distance

Total Downloads: 16,893 - First Release: Jul 18, 2015 - Last Update: Apr 29, 2018

5/5, 41 likes
  1. ho to set no limits for "maxRadius" 0.0 ?
     
  2. Hey! Thanks for this cool plugin, amazing work! However, can you please make the item listing for what you want go above 1k? If it goes above 1k it just says X, but on the what you are offering section it handles 10k just fine. Other than that, amazing work! :D
     
  3. Calytic

    Calytic Community Admin Community Mod

    I can't reproduce this, it works fine for me on high and low resolutions. Please provide more information.
     
  4. Just realized I commented on the wrong plugin... WOOPS! Well anyways yours works fine nvm xD
     
  5. Hi
    Try "maxRadius": 0.0,
     
  6. Hello, it would be nice to display icons

    Безымянный.png


    Fix with QuickSort
    Code:
                    onlinePlayers[player].View = view;
                    onlinePlayers[player].Target = target;
                    timer.In(0.1f, delegate() {
                        view.PlayerOpenLoot(player);
    +                   Interface.Oxide.CallHook("PlayerStoppedLooting", player);
                    });
    
     
    Last edited by a moderator: Sep 8, 2016
  7. Any chance we could have a block in building blocked areas? Hate players trading out loot
     
  8. ?
    Code:
    if (!player.CanBuild())
    {
        SendReply(player, "bla bla bla");
        return;
    }
     
  9. That fix for quicksort didnt work
     
  10. Hi . when doing the trade . You drag the item into the box . but it does not work. Any particular reason?
    It simply bounces back into your Inventory. It goes nowhere
     
  11. Trade cooldown shouldnt kick in if trade is canceled, only if trade is successful.
     
  12. Безымянный.png
    I do not see problems :)
     
  13. Tested it, doesnt work, i had to had a custom private hook in the plugin and then it works fine when you call it.
     
  14. Was just about to ask the same question. Would be a great addition.

    Edit: I just took a took in the plug and the code is already there.
    Blocking trades in building blocked areas is automatic.
     
    Last edited by a moderator: Sep 9, 2016
  15. Anyone let me know or tell me how to remove the permissions of this? people cant use the trade on my server. Some can.. some cants. I've tried doing the permissions, not working.
     
  16. Simply remove the permissions within the plugin itself.
     
  17. F1 console command
    Code:
    oxide.grant group default trade.use
    oxide.grant group default trade.accept
     
  18. Did you bring enough for the rest of the class?
     
  19. Calytic

    Calytic Community Admin Community Mod

    Calytic updated Trade with a new update entry:

    1.0.3

     
  20. Calytic

    Calytic Community Admin Community Mod

    Uhm, it already checks for building blocked. Do you mean building privileged?

    Code:
    if(!player.CanBuild()) {
        SendReply(player, GetMsg("Denied: Privilege", player));
        return false;
    }
    That was in there from the first release..

    I already asked @Wulf to add this several days ago, I had done the same thing when I originally wrote this last year, and passed on my out-of-date modification to quicksort. I assume he'll do it when he gets time, he's the hardest working guy around here.