View Single Post
  #4  
Old 09-12-2020, 10:50 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Quote:
Originally Posted by chopperprop View Post
I do not remember Server.wac however I see some of the hosted DF! and 2 games here on Novahq use such a HTML along with Dagger .
This weekend I will give game ranger a try if it works I will post it on our website and how to connect. Thanks stompem.
Just in case it's any use for you m8.

You may be able to add stat counting to this wac. I did some earlier experiments that count, they are here somewhere on the JOTR forums.

//Name as: server.wac (place in game root on a windows server or host).

ploop
if onptick 10 then
ptext "<cf8932>[GSP]<-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 first kill of the game blah blah'
psetvar(2)
end

if piskills(1) and not pisvar(2) then
psetvar(2)
ptext "Congrats on your first kill blah blah"
if pisteam(1) then
ptext "Take your Team to Victory etc"
else
ptext "Take your Team to victory etc"
end
end
end
Reply With Quote