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…
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
![]()
