Making Args a line of text?

Discussion in 'Plugin Development' started by xxCoderForLifexx, Feb 16, 2013.

Thread Status:
Not open for further replies.
  1. How would I make an arg an line of text Example:
    Code:
    /me Like Chicken
    
     
  2. Offline

    Zettelkasten

    You mean a string as "me Like Chicken"?

    Code:
    String string = "";
     
    for(String arg : args)
      string += arg
    Thats how easy it is :)
     
  3. Wow really thank you so much :)
     
Thread Status:
Not open for further replies.

Share This Page