handled

Status
This thread has been locked.

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
handled
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Harry

Rustacean
Management
Feedback score
10
Posts
1,606
Reactions
876
Resources
0
I sent him pictures of the plugin, like what it looks like in-game.
When can you get on your PC, as posting part of the main class is the only way to confirm your innocence?
 
Last edited:

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
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.
 
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

Lemoncat

Premium
Feedback score
10
Posts
225
Reactions
78
Resources
0
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.

https://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.
 

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

Lemoncat

Premium
Feedback score
10
Posts
225
Reactions
78
Resources
0
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
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.
 

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
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.
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.

Ownership isn't even the argument here, from the start it's if they're custom. Just because you know I'm in the right here doesn't allow you to suddenly ask for ownership... Lmfao the whole neg rep was on the basis of them not being custom. I sent images. You said you are friends with the developers of the free plugins, do me a favor, stop posting here and go ask them if they're copied
[DOUBLEPOST=1545369148][/DOUBLEPOST]You didn't say 'I don't think they are custom' you said 'they are not' completely different. Stop coming at me now thinking you can change everything up, it's actually funny to see you try so hard. Stop being hypocritical, rude and play dumb. Stop trashing my thread. I have asked at least 10 times now.
 
Last edited:
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

Lemoncat

Premium
Feedback score
10
Posts
225
Reactions
78
Resources
0
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;
    }
 
}

Now hey, your plugin can still be custom, and you can still have re-sell rights to it. But you have to proof those in order to sell them. Now onto the point that you neg repped me.

I said i was not interested and assumed they we're not custom or yours to sell. You giving a negative reputation because of me not being interested or even if you felt offended for me thinking that what you offer is not what you are saying it is. That is a wrong thing to do leaving negative reputation for nothing, and if you feel otherwise well that's fine too.

If they are custom i bet you could have told me all about the fancy features it may all not have that these other randomcommand plugins or crate plugins can't do. However you did not persuade me by showing these, you negatively repped and then went ham after my first comment on your topic.

Post the main class file, or at least parts of it.
 
Last edited:

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
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;
    }
   
}

I don't know how to code, I payed for this plugin with resell rights.
 
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
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
 
Last edited:
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

Lemoncat

Premium
Feedback score
10
Posts
225
Reactions
78
Resources
0
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
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.

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.

The only thing you have to do for that is open the plugin with winrar, take the first .class file named as the plugin.class file and post it here. That is your proof and nothing else.
 
Last edited:

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
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.

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.
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
 
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

Lemoncat

Premium
Feedback score
10
Posts
225
Reactions
78
Resources
0
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
My reputation here on the minecraft market means nothing. And i strongly believe it will be altered anyway.
 

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
My reputation here on the minecraft market means nothing. And i strongly believe it will be altered anyway.
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.
 
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

Lemoncat

Premium
Feedback score
10
Posts
225
Reactions
78
Resources
0
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
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]
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.
Just post the class file buddy, i'll keep on replying for as long as you keep replying.
 

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
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]
Just post the class file buddy, i'll keep on replying for as long as you keep replying.
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? xd
 
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

Lemoncat

Premium
Feedback score
10
Posts
225
Reactions
78
Resources
0
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? xd
Already told you, open with winrar, first .class file that is named as the pluginname.class

Redeem yourself and have us check who made this plugin, and if it is not one of those free ones available to download.

Regardless if you post it, regardless if you are in your right, you are still a cunt.
 
Last edited:

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
upload_2018-12-21_16-39-37.png

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
 

Attachments

  • upload_2018-12-21_16-39-37.png
    upload_2018-12-21_16-39-37.png
    21.4 KB · Views: 29
Last edited:
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)

Lemoncat

Premium
Feedback score
10
Posts
225
Reactions
78
Resources
0
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
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)

Probably a hassan plugin.
 

meadows

/stop that
Banned
Feedback score
2
Posts
219
Reactions
157
Resources
0
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)

Probably a hassan plugin.
Good luck, BTW your discord isn't set up very well, I can add emojis as I please :) Oh, and my personality isn't damn bad, it's just you're accusing me of so much lol[DOUBLEPOST=1545371283][/DOUBLEPOST]
Good luck, BTW your discord isn't set up very well, I can add emojis as I please :) Oh, and my personality isn't damn bad, it's just you're accusing me of so much lol
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? o_O
 
Last edited:
Banned forever. Reason: Ban Evading (79897, https://builtbybit.com/members/79897.79897/)
Status
This thread has been locked.
Top