How to make a sign give players money once a day ?

Discussion in 'Bukkit Help' started by davion100, Aug 20, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    davion100

    I want to open a public jump event and I want players to get money once a day when they complete the jump event using a sign (button will suffice too), but I don't know how to do it. Any ideas ?
     
  2. Offline

    LHammonds

    Use ServerSigns. This is what I do on my server for Parkour and just about everything else. Extremely helpful plugin I cannot live without.
     
  3. Offline

    lilkj9503

    You can just use iConomy and use a command block to give the nearest player money + Teleport them somewhere
     
  4. Offline

    davion100

    Thank you. But how can I make it give players money once a day ? What commands do i need to use ?
     
  5. Offline

    Galxs

    You'll need "eco give <player> 100 [if you want to give 100 every time]"
    And then add a cooldown with "svs setcooldown 86400" 86400 are the seconds -> One Day
     
  6. Offline

    17xDillz1997

    How about using TimeIsMoney plugin?
     
  7. Offline

    LHammonds

    Let's say you added the following permission node to the default profile everyone uses or inherits from:

    - serversigns.use.everyone

    Now, we issue each of these commands and right-click a sign to put them on it (using Essentials /eco command as example):

    Code:
    /svs add <server> /eco give <player> 100
    /svs setcooldown 86400
    /svs setpermission everyone
    
     
  8. Offline

    davion100

    What do I put on <server> exactly ?
     
  9. Offline

    LHammonds

    You type those commands exactly how I wrote them. The "<server>" option says to run the following command as if it were typed at the console. Be aware that not all commands work on the console. The "<player>" option simply replaces the name of the player with the one clicking on the sign.

    If a command will not work from the console and it is a command they cannot issue themselves, you can temporarily grant them permission to use that command when they click the sign. Here is how you could accomplish such a task:

    Code:
    /svs add /eco give <player> 100
    /svs setcooldown 86400
    /svs grant add essentials.eco
    /svs setpermission everyone
    
     
    davion100 likes this.
  10. Offline

    davion100

    It worked, thank you so much :)
     
Thread Status:
Not open for further replies.

Share This Page