handled
Last edited:
When can you get on your PC, as posting part of the main class is the only way to confirm your innocence?I sent him pictures of the plugin, like what it looks like in-game.
LMFAO. Read what you've sent, you've literally been following me everywhere I go because you're sad about the negative rep you have gotten, leave me alone. I never sold you a plugin because you were accusing me of them not being custom, they are custom. You've seen that they are custom. You're only fighting me on this because you want a reason to neg rep me because yours is extremely invalid, just leave me alone. You're actually the definition of pain in the ass. This thread was dead and you made it into a rant because of the negative rep you DESERVE to get, pacifist. Leave me alone like I've said multiple times before. Stop trashing my thread and verbally attacking me and others in this thread because you haven't got your way.No, you are verbally attacking me. I am not attacking anyone, i am stating that i think your offering is not custom and you feel offended by that.
LMFAO. Read what you've sent, you've literally been following me everywhere I go because you're sad about the negative rep you have gotten, leave me alone. I never sold you a plugin because you were accusing me of them not being custom, they are custom. You've seen that they are custom. You're only fighting me on this because you want a reason to neg rep me because yours is extremely invalid, just leave me alone. You're actually the definition of pain in the ass. This thread was dead and you made it into a rant because of the negative rep you DESERVE to get, pacifist. Leave me alone like I've said multiple times before. Stop trashing my thread and verbally attacking me and others in this thread because you haven't got your way.
In what way? It's not funny at all, in fact you're just annoying at this point in time, leave me alone lmfao. Someone's a child, so angry xDhttps://gyazo.com/782f6bdad53e2b7044579992a8221d35
Yet you still have not posted proof of ownership of these plugins you are offering, neither have you posted proof of them being custom. This has all taken a very funny turn.
The fact that i have taken this to a public matter is since you left a negative reputation after i said i was not interested because i think these plugins are not custom and actually free to download. Since that point, you have been aggressive, using slur towards me and yet still not have posted any proof besides a screenshot that these are custom plugins or yours to sell.In what way? It's not funny at all, in fact you're just annoying at this point in time, leave me alone lmfao. Someone's a child, so angry xD
You're changing the story, you revenge repped me, you cannot rep if you presume, only if you're sure. There is no rule against swearing, and yet again I am going to say I am only proving my point. I purchased the plugin from my dev with resell rights. x,D[DOUBLEPOST=1545368988][/DOUBLEPOST]The fact that i have taken this to a public matter is since you left a negative reputation after i said i was not interested because i think these plugins are not custom and actually free to download. Since that point, you have been aggressive, using slur towards me and yet still not have posted any proof besides a screenshot that these are custom plugins or yours to sell.
You can only prove that now by giving actual public proof of ownership of these plugins. I however am not interested in your *custom* plugins. But to redeem your reputation you should post proof.
If proof is not being posted in a sufficient time frame i will get my reputations removed for sure, if not only already due to you have been swearing this much.
The fact that i have taken this to a public matter is since you left a negative reputation after i said i was not interested because i think these plugins are not custom and actually free to download. Since that point, you have been aggressive, using slur towards me and yet still not have posted any proof besides a screenshot that these are custom plugins or yours to sell.
You can only prove that now by giving actual public proof of ownership of these plugins. I however am not interested in your *custom* plugins. But to redeem your reputation you should post proof.
If proof is not being posted in a sufficient time frame i will get my reputations removed for sure, if not only already due to you have been swearing this much.
package io.github.TSEcho.RandomCommands;
import java.io.File;
import java.io.IOException;
import java.util.logging.Logger;
import org.spongepowered.api.Sponge;
import org.spongepowered.api.config.ConfigDir;
import org.spongepowered.api.event.Listener;
import org.spongepowered.api.event.game.state.GameInitializationEvent;
import org.spongepowered.api.event.game.state.GamePreInitializationEvent;
import org.spongepowered.api.plugin.Plugin;
import com.google.inject.Inject;
import io.github.TSEcho.RandomCommands.Commands.Base;
import ninja.leaping.configurate.commented.CommentedConfigurationNode;
import ninja.leaping.configurate.hocon.HoconConfigurationLoader;
import ninja.leaping.configurate.loader.ConfigurationLoader;
@Plugin(id = "randomcommands", name = "RandomCommands", authors = "TSEcho")
public class RandomCommands {
private static RandomCommands instance;
private CommentedConfigurationNode confNode;
private ConfigurationLoader<CommentedConfigurationNode> loader;
private File config;
@Inject
@ConfigDir(sharedRoot = false)
private File folder;
@Inject
private Logger logger;
@Listener
public void onGamePreInit(GamePreInitializationEvent e) {
instance = this;
loadConfig();
}
@Listener
public void onGameInitialization(GameInitializationEvent event) {
Sponge.getCommandManager().register(this, Base.build(), "randomcommands", "rc", "randcommand");
}
public void loadConfig() {
if (!folder.exists()) {
folder.mkdir();
}
try {
config = new File(folder, "configuration.conf");
loader = HoconConfigurationLoader.builder().setFile(config).build();
if (!config.exists()) {
config.createNewFile();
confNode = loader.load();
confNode.getNode("Commands", "randomItem", "option1").setValue("give %player% minecraft:diamond");
confNode.getNode("Commands", "randomItem", "option2").setValue("give %player% minecraft:dirt");
confNode.getNode("Commands", "randomItem", "option3").setValue("give %player% minecraft:dirt");
confNode.getNode("Commands", "randomItem", "option4").setValue("give %player% minecraft:dirt");
confNode.getNode("Commands", "randomItem", "option5").setValue("give %player% minecraft:dirt");
confNode.getNode("Commands", "randomItem2", "option1").setValue("give %player% minecraft:emerald");
confNode.getNode("Commands", "randomItem2", "option2").setValue("give %player% minecraft:sand");
confNode.getNode("Commands", "randomItem2", "option3").setValue("give %player% minecraft:sand");
confNode.getNode("Commands", "randomItem2", "option4").setValue("give %player% minecraft:sand");
confNode.getNode("Commands", "randomItem2", "option5").setValue("give %player% minecraft:sand");
confNode.getNode("Commands", "randomItem2", "optionMessage").setValue("msg %player% &c&oUh Oh, you got nothing");
loader.save(confNode);
}
confNode = loader.load();
} catch (IOException error) {
error.printStackTrace();
}
}
public CommentedConfigurationNode getConf() {
return confNode;
}
public ConfigurationLoader<CommentedConfigurationNode> getLoader() {
return loader;
}
public static RandomCommands getInstance() {
return instance;
}
public Logger getLogger() {
return logger;
}
}
Postage of the main.class file is the only way to show proof. A screenshot is not proof with plugins.
The random commands plugin for example is capable of creating multiple new commands that relay to other commands.
Code:package io.github.TSEcho.RandomCommands; import java.io.File; import java.io.IOException; import java.util.logging.Logger; import org.spongepowered.api.Sponge; import org.spongepowered.api.config.ConfigDir; import org.spongepowered.api.event.Listener; import org.spongepowered.api.event.game.state.GameInitializationEvent; import org.spongepowered.api.event.game.state.GamePreInitializationEvent; import org.spongepowered.api.plugin.Plugin; import com.google.inject.Inject; import io.github.TSEcho.RandomCommands.Commands.Base; import ninja.leaping.configurate.commented.CommentedConfigurationNode; import ninja.leaping.configurate.hocon.HoconConfigurationLoader; import ninja.leaping.configurate.loader.ConfigurationLoader; @Plugin(id = "randomcommands", name = "RandomCommands", authors = "TSEcho") public class RandomCommands { private static RandomCommands instance; private CommentedConfigurationNode confNode; private ConfigurationLoader<CommentedConfigurationNode> loader; private File config; @Inject @ConfigDir(sharedRoot = false) private File folder; @Inject private Logger logger; @Listener public void onGamePreInit(GamePreInitializationEvent e) { instance = this; loadConfig(); } @Listener public void onGameInitialization(GameInitializationEvent event) { Sponge.getCommandManager().register(this, Base.build(), "randomcommands", "rc", "randcommand"); } public void loadConfig() { if (!folder.exists()) { folder.mkdir(); } try { config = new File(folder, "configuration.conf"); loader = HoconConfigurationLoader.builder().setFile(config).build(); if (!config.exists()) { config.createNewFile(); confNode = loader.load(); confNode.getNode("Commands", "randomItem", "option1").setValue("give %player% minecraft:diamond"); confNode.getNode("Commands", "randomItem", "option2").setValue("give %player% minecraft:dirt"); confNode.getNode("Commands", "randomItem", "option3").setValue("give %player% minecraft:dirt"); confNode.getNode("Commands", "randomItem", "option4").setValue("give %player% minecraft:dirt"); confNode.getNode("Commands", "randomItem", "option5").setValue("give %player% minecraft:dirt"); confNode.getNode("Commands", "randomItem2", "option1").setValue("give %player% minecraft:emerald"); confNode.getNode("Commands", "randomItem2", "option2").setValue("give %player% minecraft:sand"); confNode.getNode("Commands", "randomItem2", "option3").setValue("give %player% minecraft:sand"); confNode.getNode("Commands", "randomItem2", "option4").setValue("give %player% minecraft:sand"); confNode.getNode("Commands", "randomItem2", "option5").setValue("give %player% minecraft:sand"); confNode.getNode("Commands", "randomItem2", "optionMessage").setValue("msg %player% &c&oUh Oh, you got nothing"); loader.save(confNode); } confNode = loader.load(); } catch (IOException error) { error.printStackTrace(); } } public CommentedConfigurationNode getConf() { return confNode; } public ConfigurationLoader<CommentedConfigurationNode> getLoader() { return loader; } public static RandomCommands getInstance() { return instance; } public Logger getLogger() { return logger; } }
Until you have posted proof of the plugins my negative reputation is more valid than yours to begin with. I wasn't interested and you neg repped me for it. Even if there was any customness to your two plugins i would not have been interested.Read above[DOUBLEPOST=1545369601][/DOUBLEPOST]I'd just like to point out that he didn't negative rep for anything at all, he REVENGE repped me because he was salty, now that I've shown they're custom he wants proof of resell which tbh I don't even need to show due to him not purchasing anything, they're custom plugins and I can prove that easily. But he is going out of his way to change the story in his favor. Literal child. He said the rep doesn't matter to him and yet look how far he is going to get it removed? xD
Can you read? Look at your rep lmfao, there's nothing to do with you being not interested, it's literally because you kept accusing me of stealing plugins with no evidence ALSO you keep trashing my thread, completely valid. xd[DOUBLEPOST=1545370263][/DOUBLEPOST]Also... TSEcho isn't on the Pixelmon team, I thought you were friends with him? lolUntil you have posted proof of the plugins my negative reputation is more valid than yours to begin with. I wasn't interested and you neg repped me for it. Even if there was any customness to your two plugins i would not have been interested.
I even asked if you had something else, since a randomcommands plugin and crate plugin is already done by proper actual pixelmon developers and free for download. Hey if yours is different than the above, proof it.
My reputation here on the minecraft market means nothing. And i strongly believe it will be altered anyway.Can you read? Look at your rep lmfao, there's nothing to do with you being not interested, it's literally because you kept accusing me of stealing plugins with no evidence ALSO you keep trashing my thread, completely valid. xd
I'm sure you do, I bet you're used to getting your own way. /rc (randomcommand) doesn't work with my plugin, only /randomcommand. Nice try though :3 next time buddy, anything else or am I free to leave you alone, because rn I want to die because of you.My reputation here on the minecraft market means nothing. And i strongly believe it will be altered anyway.
Also i have never accused you of stealing a plugin. I said i think they we're not custom, and not yours to sell. But that is obviously if they are not custom. Therefor your whole neg reputation is fake and invalid.[DOUBLEPOST=1545370414][/DOUBLEPOST]Can you read? Look at your rep lmfao, there's nothing to do with you being not interested, it's literally because you kept accusing me of stealing plugins with no evidence ALSO you keep trashing my thread, completely valid. xd[DOUBLEPOST=1545370263][/DOUBLEPOST]Also... TSEcho isn't on the Pixelmon team, I thought you were friends with him? lol
Just post the class file buddy, i'll keep on replying for as long as you keep replying.I'm sure you do, I bet you're used to getting your own way. /rc (randomcommand) doesn't work with my plugin, only /randomcommand. Nice try though :3 next time buddy, anything else or am I free to leave you alone, because rn I want to die because of you.
There you go, happy with the rep? As stated above I'm not a Dev, idk how to get the class file lmfao, do you want me to send you the plugin to check for yourself? xdAlso i have never accused you of stealing a plugin. I said i think they we're not custom, and not yours to sell. But that is obviously if they are not custom. Therefor your whole neg reputation is fake and invalid.[DOUBLEPOST=1545370414][/DOUBLEPOST]
Just post the class file buddy, i'll keep on replying for as long as you keep replying.
Already told you, open with winrar, first .class file that is named as the pluginname.classThere you go, happy with the rep? As stated above I'm not a Dev, idk how to get the class file lmfao, do you want me to send you the plugin to check for yourself? xd
No i just dislike your personality. Give me some moments. Looking to find the author of randomcommandsec{1.0} [RandomCommandsEC] (randomcommandsec-1.0-SNAPSHOT.jar)View attachment 172676
This is all I see?[DOUBLEPOST=1545370829][/DOUBLEPOST]randomcommandsec-1.0-SNAPSHOT.jar\net\randomcommandsec[DOUBLEPOST=1545370918][/DOUBLEPOST]LoL, you're an operator for Pixelmoncraft and you're carrying on like a baby, jfc. xD
Good luck, BTW your discord isn't set up very well, I can add emojis as I pleaseNo i just dislike your personality. Give me some moments. Looking to find the author of randomcommandsec{1.0} [RandomCommandsEC] (randomcommandsec-1.0-SNAPSHOT.jar)
Probably a hassan plugin.
shit, I'm actually sorry I think I deleted some of your emojis. Now I feel bad, shit. I'll actually help with them, I didnt expect them to delete?Good luck, BTW your discord isn't set up very well, I can add emojis as I pleaseOh, and my personality isn't damn bad, it's just you're accusing me of so much lol
