YoutuberDisguise Plugin

Discussion in 'Archived: Plugin Requests' started by MelonCoder, May 8, 2014.

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

    MelonCoder

    Plugin category: Dont Know

    Suggested name: YoutuberDisguise

    What I want: I'd like a plugin where you type in /d and it disguises you as a random player. Then a message would show:

    &6&l>> &7You are now disguised!
    &6&l>> &7To undisguise, type in &e&l/undisguise&7.
    &6 - Gold
    &l - Bold
    &7 - Light Gray
    &e - Yellow
    & - Main thing for Color Coding

    Then when you undisguise it says:

    &6&l>> &7You are now undisguised!
    &6&l>> &7To disguise again, type &e&l/disguise&7.

    Also, a feature where you cannot tab players names who are disguised in the chat.

    Ideas for commands:

    /d - Disguise or /disguise

    /undisguise - To undisguise

    Ideas for permissions:

    allow.disguise - Allow players to disguise
    allow.undisguise - Allow players to undisguise

    When I'd like it by: Tomorwow or Today

    The thing is, this is a very small plugin, 2 commands, 2 permissions, its easy. If a developer is reading this post, please code this plugin for me! Thanks.
     
  2. Offline

    MrInspector

    Even though this is a useless comment, just saying: most new developers wont be able to do this, it's not actually easy, even though it's 2 commands it's still pretty hard.
     
  3. Offline

    MelonCoder

    Well, you never know if somebody is going to make this. This is actually a little bit of code. Thats all. Its not actually hard as you seem it is. Its just coding a disguise command. 2 Commands. 1 is to change your username to a random username, and 2 is to return your username back to your normal username. 2 Permissions. How can that be hard?
     
  4. Offline

    MrInspector

    It uh actually is, I can garuntee you new developers (maybe even a little bit of intermediate developers) wont be able to do it on their own, but w/e, i'll stop right here.

    Just stating my opinion.
     
  5. Offline

    MelonCoder

    Seriously, how is that hard? If people are going to state their opinion like this rather then just making the plugin, the whole point of this post was for somebody to make me a disguise plugin or a list a disguise plugin that i havent found. Its not hard. And thats my opinion.
     
  6. Offline

    timtower Administrator Administrator Moderator

    Disguises are done with packets, packets is NMS, NMS isn't part of the API, anything that isn't part of the API is often not used as it will break with each minecraft update.
     
    BetrayedQU likes this.
  7. Offline

    Jogy34

    If you think it isn't that hard why don't you make it then? I'm assuming that the answer to that is because you don't know how to program and don't know the bukkit API. If you don't know what goes into something, you don't have the right to tell people that do know what goes into it and say it's hard, that it's easy. The hard part isn't making the commands, the hard part is in tricking all of the clients that are connected to the server to think that some player is actually another player and stopping specific tab completes from working.

    Also, what does this have to do with youtube?
     
  8. Offline

    timtower Administrator Administrator Moderator

    The tab stuff is the easiest part in my opinion on here.
     
  9. Offline

    Crud41

    #IgnorantNondevs.
    Hate 'em.
     
  10. Offline

    tuidog

    I would personally find this quite helpful of a plugin if someone was to make it it would be used by many I am sure
     
  11. Offline

    MelonCoder

    Umm, first of all, i think you dont understand what im saying. Second of all, i dont know how to code, third of all, WHY DO YOU THINK BUKKIT MADE A PLUGIN REQUESTS CATEGORY Smart one

    #PeopleWhoDontUnderstandWhatThisCategoryIsFor

    Ok, thanks Timtowers.
     
  12. Offline

    Crud41

    MelonCoder
    I understand what this category is for. You on the other hand shouldn't be labeling a project as "easy" if you can't do it. The only thing you have done on this post is be ignorant and condescending. If this is such an "easy plugin" to make, feel free to learn java and make it. timtower had explained why it was difficult plugin to make. He said:
    Yet you continue to be ignorant and sassy with your reply to Jogy34, you said
    Your ignorance at the difficulty at the plugin, combined with your sassy and immature behavior aren't getting you any good press in this community. If devs say it is a hard project, you have to respect that rather than belittling their abilities with labeling a rather complex project "easy" without even the slightest knowledge of plugin programming.

    As a new dev; I will tell you right now: Coding plugins is not an easy job. It takes lots of effort and deductive skills/reasoning and most importantly patience.

    If you want someone to fill your plugin request, just sit tight and someone will come along willing to dedicate themselves to a minimum of 4-5 hours of unpaid labor (This project might take a pro that long). And don't sass others just because they are trying to help you realize you have a poor idea of the complexity of the project.

    If you are 24 like your profile says (Which I assume you are not considering your attitude), I would expect more respect for the DEV community than a flurry of unnecessary rudeness.

    Before you make a reply to any form members, note that these people are only filling these requests from the desire to help. They don't get paid for this; the least you could do is be respectful.
     
    Commander9292 likes this.
  13. Offline

    jojodmo

    Okay then, if it's really that simple then here's the code for your plugin:

    Code:java
    1. public class Main extends JavaPlugin{
    2. public void onEnable(){}
    3. public void onDisable(){}
    4.  
    5.  
    6. public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args){
    7. if(cmd.getName().equalsIgnoreCase("disguise") && sender.hasPermission("allow.disguise")){
    8. //all you have to do here is disguise the player
    9. }
    10. else if(cmd.getName().equalsIgnoreCase("undisguise") && sender.hasPermission("allow.undisguise")){
    11. //all you have to do here is undisguise the player
    12. }
    13. }
    14.  
    15. }


    All you have to do is fill in the //all you have to do here is disguise the player and the //all you have to do here is undisguise the player.... Can't be that hard right?... Wrong... It's very hard
     
  14. Offline

    Alster551

    Whys your name MelonCODER if you dont know how to code?
     
  15. Offline

    Mathias Eklund

  16. MelonCoder Question: How is this "random player" chosen?
     
  17. Offline

    Jade

    #PeopleWhoDontKnowThisIsntInstagramOrTwitter

    On a serious note, if this was easy you'd be able to do it yourself. This thread will be locked if any of you continue the flaming/arguing/whatever you may wish to call it.
     
  18. Offline

    MelonCoder

    Its just a name. Dont take names so seriously.

    Umm..? I made this post for a reason. For a least a few responses from developers to make this plugin. Thanks to Timtowers, he explained to me everything, but otherwise, everybody else started fighting, the Bukkit Community is supposed to be like this.

    #AllIDidWasAskForSomebodyToMakeAPluginAndTimTowersToldMeWhyItIsHardForDevelopersToMakeThisPluginAndEverybodyElseStartedFightingYouCanCloseThisThreadNow:)

    First of all, this isn't an essay. You didnt have to write a post so complicated for others to read. Yet, you will get nothing for it ;). Second of all, i already know whats going on. Third of all, A Moderator responded and i told him to close this thread. And fourth of all, the whole Bukkit Community is like this! Whenever i make a simple post, everybody starts sassing me and starts complaining about catagorys, and all sorts of different reasons. If i were to make a fourm post and say, if a Developer would make this for me, i would pay for 20$ lets say, i bet any developer would respond, and 10 other people would make a clear fuss about it. I really dont care if i dont know how to code! You are explaining this whole category thing all over again. Im not going to get a good press in the community when all i did was put caps lock on by accedient. You think thats sassy? Nobody is going to get a good press in the community if they are going to clearly use immature behaviour and complainents about my simple fourm post. And i have respected TimTowers when he said that this was a large project and that each version when the plugin is updated it will break. If you think your the best guy right over here, and you think you have the potential to become the leader of this fourm post, and explain to me thing "all over" again, then why dont you show me how to code. Literally. I am respecting the developer community, i made a simple fourm post :) and people started making poor complainents about my fourm post. Look, if you have an opinion, its ok to say it. Just dont write too much about it. I respect devs throughout the whole community, all i am doing is just saying some things for people who were very rude to me this. Even a moderator has spoken saying that if the fighting goes on, this thread will be locked. people don't need to fight about this, and i expect easy simple comments from people. Not rude ones, im just saying some things to them. No need to start a whole new fight. I already told a moderator to lock this thread. Whatever, i really dont care.

    Look, i dont know how to code. The "Plugin Requests" category was for people to request plugins. Either if they dont know how to code, or they just know how to code but they need someone else to make it for them. There is already another category for helping out with code. I have respected TimTowers, and i understand. No need to be disrespectful, there was already many rude complainents on this fourm. Even a moderator has spoken. There is no need to fight over Bukkit, it is just unexceptable for that to happen. And a moderator would have to terminate this fourm post.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 8, 2016
  19. Offline

    Alster551

    *Says its not an essay*
    *Post an 18 line comment*
     
    BetrayedQU and timtower like this.
  20. Offline

    MelonCoder

    Its a way of saying.
     
  21. Offline

    Crud41

    MelonCoder
    If you are going to make "Plugin Request" Don't insult the ones who are trying to help you. Also, I never personally attacked you and used only the information I saw in the forum. Your reply is negligible. As a rule abiding person and noob Dev, I will follow what the mod had said and stop responding to you.

    1. Your response is the definition of an essay.
    2. Don't call a difficulty on a project if you don't know how to code.
    3. Everyone was being polite until you started being immature.
    4. Reading an essay is easy at the age of 24 as stated by your profile.
    As it seems, you are either very young or aren't primarily and english speaker; whatever the case may be: Your responses were rude to the people trying to help you.

    - Crud41 out

    Any responses to this reply by MelonCoder will be considered harassment and will be reported.
     
  22. My question was serious? I'm not sure how you want this player to be chosen. Like, from a list or from online players or something else?
     
  23. Offline

    MelonCoder

    You cant report me if i reply to you, i understand that you are trying to be specific here, and im not very young. The only thing is, i understood what you said in what you said. Whenever i make a fourm post, many people harrase me and this is not how the Bukkit Community is supposed to be like. This is not harrasement, and you cannot report me for this following response to your fourm post, the only thing is, is that people weren't trying to help me. I respect TimTowers and everybody else, except you, if your trying to make everything so specific, say it in an easy form, theres no need to write a paragraphical, long, fourm post, because all of this you are doing is not going to earn you something, not even Moderator. xD

    For this following fourm post responding back to your latest fourm post that you have replyed, you cannot consider this replyment harresement or any other subject falling under those category's, as once said, i will not reply to your little "paragraphical" long fourm posts, because this isn't going to get you anywhere. This is only a website, not a place where you have to write 30 lines of something, theres people who explain different fourm post subjects specifically, and do not have to write a very long paragraph. As once again said, i respect TimTowers and the moderator in this fourm post, except you. I understand you are giving me different things from a "paragraph", but i already understand, as stated and previously spoken from people on this fourm post.

    - Do not respond to this fourm post, or else, i will ask a moderator to lock this thread. All because of you.

    - Goodbye.
     
  24. Offline

    22vortex22

    Ummm, can I just point out that with a disguise plugin you can disguise yourself as any playername you want. This isn't new and doesn't have to be recoded. I just don't know the link to the plugin . If I remember the command correctly it was /disguise player <playername> . I'll try and see if I can find the plugin.
     
  25. Offline

    MelonCoder

    [quote uid=90876485 name="22vortex22" post=2477593]Ummm, can I just point out that with a disguise plugin you can disguise yourself as any playername you want. This isn't new and doesn't have to be recoded. I just don't know the link to the plugin . If I remember the command correctly it was /disguise player <playername> . I'll try and see if I can find the plugin.[/quote]
    Thankyou very much Kind sir! Remember, its a plugin where if you type in /d it disguises you as a random player name!

    [quote uid=90866958 name="The Fancy Whale" post=2477576]<Edit by Moderator: Redacted bit url>
    Please read my fourm post over again. I need a plugin where if you type in /d or /disguise it disguises your name as a random player name.

    [quote uid=90876485 name="22vortex22" post=2477593]Ummm, can I just point out that with a disguise plugin you can disguise yourself as any playername you want. This isn't new and doesn't have to be recoded. I just don't know the link to the plugin . If I remember the command correctly it was /disguise player <playername> . I'll try and see if I can find the plugin.[/quote]
    If you can code this plugin for me, it would be much appreciated. :) Thanks for the support if you will

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Feb 12, 2017
  26. Offline

    Crud41

    MelonCoder As much as I'd love to sit around and explain what most of us learned in early years of school, "To be respectful of others"; I have people with legitimate requests to assist. As I have aforestated, response to my post by you would be considered harassment and I have reported you as such.

    Since you do not seem to have the ability to comprehend very simple and effortless requests as "Stop messaging me" I will be adding you to my ignore list.

    - Crud41 out
     
  27. Offline

    The Fancy Whale

    I would suggest checking out those plugins and you would see you can just have them disguise as a player. Also, I'm just curious why would you ever need this plugin? Large youtubers are used to the attention and usually don't mind all of the spam. If you have that large of youtubers where people go crazy, I'm sure you can find someone to do this who plays on your server.
     
  28. Offline

    TnT

    Locked. This thread has been derailed enough.

    MelonCoder - If you lack knowledge in a subject, telling others with that knowledge that what they do is "easy" is really disrespectful. If you want to request plugins, feel free, but please do not belittle those who spend their free time making plugins. Paying someone a paltry sum of money to tackle a difficult plugin would not gather you more interest. That said, these forums expressly forbid any sort of monetary offer or request. Doing so would have resulted in your request being deleted. Attempting to educate you that creating plugins is easy is not being disrespectful at all, they only responded to your already disrespectful tone.

    For anyone else, its easy to walk away from plugin requests like these. Move onto those who make plugin requests and appreciate all you do for them, as there are many people out there that would love to have a plugin made that they requested and will be more than thankful for it.
     
Thread Status:
Not open for further replies.

Share This Page