Jump to content
EN
Play

Forum

Developing-Got Any Skills?


 Share

Recommended Posts

Hey,Everyone... It's turpz you may remember me as the annoying kid... Ummm Just please don't hate ive gotten better.Anyway's i was wondering if anyone out there's a developer!Im one,I hope I can meet up with some of you (In Tanki) or something!Remember don't forget the Developers of TankiOnline!

 

-Turpz

"PEACE"

 

Add On

http://en.tankiforum.com/index.php?showtopic=181881

Edited by Turpz

Share this post


Link to post
Share on other sites

I know a feww things..

<html>

<head>
<title> I LUV TANKI </title>
</head>
<body bgcolor="#24211E">
<font color="FFF030">
<center><p> Does it love me ? Of course it does!</p></center>
</font>
</body>
</html>
 
 
Save that in a text document, with title " test.htm " and open in web browser.. :D

Share this post


Link to post
Share on other sites

I know a feww things..

Lol, Raph :) You're off to a good start.

 

But as a side note, the <font> tag has been deceased as of HTML5 (though it can still work).

 

Now the standard is using inline CSS, like so:

<span style="color: #FFF030; text-align: center;">Does it love me? Of course it does!</span>

Share this post


Link to post
Share on other sites

Semyon has another account which is Generalismo 

But he played until Generalissimo while he was just an usual player. Now that he is CM, he said he didn't use it anymore.

Share this post


Link to post
Share on other sites

I'd say all people working in the office can be considered as developers since they all are developing the game, no matter if it's with programming, designing or managing the community.

Never though of that!

Share this post


Link to post
Share on other sites

I can develop stuff as I have worked some of the hardest programming tools such as Turing. I also can develop platform games learned how to at many camps and still make my own fun miny games to play alone that no one else can play.

Share this post


Link to post
Share on other sites

They represent the devs - it's like devs vs players. 

That isn't really the point.

 

Mister_G's statement was correct - the Developers have time to play, as that is part of their responsibility.

 

The CMs don't, and don't play well.

Share this post


Link to post
Share on other sites



package com.monster.plugin;
 
import java.util.logging.Logger;
 
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.eventlistener;
import org.bukkit.imported.custom.classManager;
 
public final class Main extends JavaPlugin {
    public final Logger logger = Logger.getLogger("" + version + "");
    public static Main plugin;
    
    int plugin_int = getServer().getPluginManager().getPlugins().size();
 
    @Override
    public void onEnable() {
    getLogger().info("Has been enabled!");
    getServer().getPluginManager().registerEvents(new AutoFly(), this);
    getServer().getPluginManager().registerEvents(new NoItemDrop(), this);
    getServer().getPluginManager().registerEvents(new NoItemPickup(), this);
    getServer().getPluginManager().registerEvents(new PermissionsHandler(), this);
    getServer().getPluginManager().registerEvents(new BoxMenu(), this);
    getServer().getPluginManager().registerEvents(new WhiteListKickHandler(), this);
    getServer().getPluginManager().registerEvents(new CancelEventHandler(), this);
    getServer().getPluginManager().registerEvents(new CommandExecutorClass(), this);
    getServer().getPluginManager().registerEvents(new SeparatedEffectPotions(), this);
    getServer().getPluginManager().registerEvents(new MySQLsyncClass(), this);
    getSetbet().getOnlinePlayers().sendMessage("§cPluginManager:§7 There have been succesfully enabled" + plugin_int + "§7 plugins!");
    }
    @Override
    public void onDisable() {
        getLogger().info("Has been disabled!");
    }
    
}


My minecraft main class code, this is not even 1/10th of the code.

Edited by HeroPlayer

Share this post


Link to post
Share on other sites

 Share

×
×
  • Create New...