I just submitted my first plugin 1 or two weeks a ago, and it's not getting approved! It says it has 1 download though. What's going on?!?!
It has 1 download because a Plugin Reviewer was to check it, anywas if it's a simple plugin that add features that other plugins already have, it may not be aproved... For more info ask @Darunia18 or @Falk
This is not the place to complain... Make good quality plugins, and the better it is, the more willing the plugin reviewers (not python t-shirts, blame Google keyboard) are to review and approve them, the faster they will be.
Simple is not a problem if they work and are useful. The one @swagboy47 made was rejected because he hardcoded 100 in and asked the server owner to change the source code if he isn't 100, which should immediately lead to a reject.
lol then explain the simple-ty in this PHP: <?php/*__PocketMine Plugin__name=Lostdescription=Teleports you to coords 100,1000,100version=Pi=pauthor=MegaSamNinjaclass=Lostapiversion=12*/class Lost implements Plugin{ private $api; public function __construct(ServerAPI $api, $server = false){ $this->api = $api; } public function init(){ $this->api->console->register("lost", "Sends the person in space", array($this, "lost")); $this->api->ban->cmdwhitelist("lost"); $this->path = $this->api->plugin->configPath($this); $this->config = new Config($this->path . "lost.yml", CONFIG_YAML, array("lost" => "This will be used in a later version")); } public function lost($cmd, $args, $issuer){ $username = $issuer->username; $this->api->console->run("tp " . $username . " 100 10000 100", "console"); $this->api->chat->sendTo(false, "You have been TELEPORTED by MAGIC", $username); } public function __destruct(){ }} This plugin could be useful if you were board
And why did they say they don't accept it? Or is it because of the version name or the simple class names?