I Searched all over the Places.. Is there An Addon so you see Chat Bubble's over a Player's Head ?
is there?
I remeber in a server somewhere,whenever someone was typing something you see a chat bubble come up oner their head.(the model is a commentary node so you dont require anything)
ithink it was gmod tower not that iv managed to get on the serv its inthe day 2 trailer some guys were standing still with the chat bubble other there head
I've modified this script previously to have a commentary node speech bubble instead of the keyboard for my servers.
[url]http://www.facepunch.com/showthread.php?t=567538[/url]
[QUOTE=HellFire0102;13058067]I Searched all over the Places.. Is there An Addon so you see Chat Bubble's over a Player's Head ?[/QUOTE]
Or did you want it so you can see what they typed in a chat bubble, i did that once.
Maybe ill do it again if i have time
[QUOTE=awatemonosan;16693316]Or did you want it so you can see what they typed in a chat bubble, i did that once.
Maybe ill do it again if i have time[/QUOTE]
That sounds horrible if they write alot.
[lua]
if CLIENT then
ErrorNoHalt("Adding Chatclicker Hooks..")
hook.Add("StartChat", "chatclicker.start", function() RunConsoleCommand("chatclicker.start") end)
hook.Add("FinishChat", "chatclicker.end", function() RunConsoleCommand("chatclicker.end") end)
ErrorNoHalt("Done!\n")
end
if not SERVER then return end
AddCSLuaFile("autorun/chatclicker.lua")
concommand.Add("chatclicker.start", function(ply, cmd, n)
if not ply:IsValid() then return end
if ply.chatprop != nil and ply.chatprop:IsValid() then ply.chatprop:Remove() end
ply.chatprop = ents.Create("prop_physics")
ply.chatprop:SetModel("models/extras/info_speech.mdl")
ply.chatprop:SetPos(ply:LocalToWorld(Vector(0, 0, 100)))
ply.chatprop:SetAngles(ply:GetAngles())
ply.chatprop:SetParent(ply)
end)
concommand.Add("chatclicker.end", function(ply, cmd, n)
if not ply:IsValid() then return end
if ply.chatprop:IsValid() then ply.chatprop:Remove() end
end)
[/lua]
Should work, it's just an edited version of the script that was posted earlier to do what you asked for.
How do i let that run on my server??
Put it in lua/autorun/server/Imabanana.lua
I AM A BANANA :D
Thanks Jamie. +Thank
Your welcome.
Hmm it doesnt want to run =[
Sorry, Its lua/autorun/chatclicker.lua
Sorry, you need to Log In to post a reply to this thread.