i need a chat script for web player,exe ..

I need a chat script, which has a nice gui and most easy to use…

please share ur knowledge about free and paid stuff…

i searched but could not come to the conclusion, so i want ur help and experience in it…

thanks a lot for ur help in advance…

private var chatWindow =Rect(350,50,200,300);
private var scrollPosition: Vector2 ;
private var inputField=“”;
private var entries=ArrayList();
var msg:String;
class ChatEntry
{
var text =“”;
var sender =“”;
}
function OnGUI()
{
chatWindow=GUI.Window(1,chatWindow,ChatWindowGUI,“chat”);
}
function ChatWindowGUI(id:int)
{
scrollPosition=GUILayout.BeginScrollView(scrollPosition);

for(var entry:ChatEntry in entries)
{
GUILayout.Label(entry.sender+“:”+entry.text);
}
GUILayout.EndScrollView();
if (Event.current.type == EventType.keyDown Event.current.character == “\n” inputField.Length > 0)
{
networkView.RPC(“ApplyGlobalChatText”,RPCMode.Others,inputField);
ApplyGlobalChatText(inputField);
inputField=“”;
}
inputField=GUILayout.TextField(inputField);
GUI.DragWindow();
}
@RPC
function ApplyGlobalChatText(newText:String,msg:NetworkMessageInfo)
{ var entry =new ChatEntry();
entry.text=newText;
entry.sender=msg.sender.ToString() ;
entries.Add(entry);

scrollPosition.y = 1000000;
}
the code is form design3.com.

by the way ,you should delete the "var msg:String;

any other chat code ??

he just gave you a chat code, which is not something in my opinion people should ask.

Sir, i am not asking for code, read above i mention free as well as paid…i only want the experienced result of people…i am ready to pay man

Paid or free request = Collaboration.Forum.Section*Time.deltaTime;

WIN!!!

how can i download player.exe
:roll_eyes:

8526470--1137551--298a6d35b9851f30290ac8e9cc78dbb5.gif