Wanting to start a minigame

Discussion in 'Plugin Development' started by XgXXSnipz, Dec 22, 2014.

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

    XgXXSnipz

    Im starting a minigame but IDK where to start, and how to handle arenas and stuff I dont want to make it like all the tutorials on bukkit, can someone start me off?

    Two teams of 4, different stages of the map -> one person get to certain point --> start one min. timer if no one reaches that same point on their side --> kill them --> tp the ones who made it to a an arena --> fight final boss --> tp to another arena --> FFA
     
  2. Why not? Can't help you if we don't know what's wrong.
     
  3. Offline

    teej107

    Code:
    public class MyMinigame extends JavaPlugin
    {
        @Override
        public void onEnable()
        {
    
        }
    
        @Override
        public void onDisable()
        {
       
        }
    }
    Notice how I don't have any useless, uninitialized, static plugin references.
     
  4. Offline

    Hawktasard

    xTrollxDudex likes this.
  5. Offline

    XgXXSnipz

  6. Offline

    leon3001

    @XgXXSnipz If you don't want to take this with an object-oriented approach, you should ask yourself whether Java is the right language for you. :)
     
    teej107 and AdamQpzm like this.
  7. Offline

    Hawktasard

    @XgXXSnipz
    Minigames are quite "advanced", If you don't understand what they're doing in these tutorials you probably shouldn't be making them.
     
    AdamQpzm likes this.
  8. Offline

    xepisolonxx

    @XgXXSnipz No tuturial can just show you how to make a minigame first learn java and for arenas check out @xTrollxDudex arena class
     
    xTrollxDudex likes this.
Thread Status:
Not open for further replies.

Share This Page