View Single Post
  #11  
Old 04-04-2017, 02:14 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Here's a slightly modified team script and I think you can see that you can probably manipulate the script to show individual stats linked to colours as well.

ploop
if onptick 10 then
ptext "<cf8932>Server message here<-co>"
end

if piskills(1) and never then
if pisteam(1) then
text "First Kill - <cfc0000FF>Blue Team<-co>"
else
text "First Kill - <cfcFF0000>Red Team<-co>"
end
ptext "Congrats on the first kill of the game!'
psetvar(2)
end

if piskills(1) and not pisvar(2) then
psetvar(2)
ptext "Congrats on your first kill!"
if pisteam(1) then
ptext "Take the <cfc0000FF>Blue Team<-co> to Victory!"
else
ptext "Take the <cfcFF0000>Red Team<-co> to victory!"
end
end
end
Reply With Quote