Home   Help Search Login Register  

Author Topic: TKOTH score  (Read 1398 times)

0 Members and 1 Guest are viewing this topic.

muntahunta

  • Guest
TKOTH score
« on: 23 Oct 2004, 14:02:51 »
ok, i decided to make a team king of the hill because i havnt seen many about, but im stuck with the score because usually i just make ctf/c&h/DM.

anyone know of a script out there that i could use for a king of the hill

when a team is in the zone, they get 1 point for every 10 seconds they are in the zone, but ive never done anything like that before... any ideas?

Offline Planck

  • Honoured
  • Former Staff
  • ****
  • I'm never wrong ....I'm just not always right !
Re:TKOTH score
« Reply #1 on: 23 Oct 2004, 14:45:15 »
I don't know if you have tried it yet, but, there is a tutorial in the Editors Depot:

Make a King of the Hill mission in MP          by granQ

If you haven't tried it maybe it will have a few pointers for you.



Planck
I know a little about a lot, and a lot about a little.

muntahunta

  • Guest
Re:TKOTH score
« Reply #2 on: 23 Oct 2004, 14:53:39 »
yea i checked it out, but aparently the score.sqs is missing, which is what i need lol

thanks for the tip anyways

muntahunta

  • Guest
Re:TKOTH score
« Reply #3 on: 26 Oct 2004, 20:30:58 »
surely theres a script of some sort, or someone that can help me out there, please, any ideas?

Offline Zombie

  • Members
  • *
  • Beware the night, the zombie walks among you
    • USI
Re:TKOTH score
« Reply #4 on: 27 Oct 2004, 16:16:59 »
this is what I used on my koth mission, you need to have several triggers running to detect who is and who is not present.  This works for a 3 sided mission, east/west/and res
Code: [Select]
;________________________
;::::::::::::::::::::::::
;
;Place Documentation here
;author USI Studios
;created 10/29/03 3:42:11 PM
;________________________
;::::::::::::::::::::::::
?!(local server):goto "end"
_westscore=0
_eastscore=0
_resscore=0
#start
?westhere and !easthere and !reshere:goto "westscore"
?easthere and !westhere and !reshere:goto "eastscore"
?reshere and !easthere and !westhere:goto "resscore"
?westhere and easthere and reshere:goto "start"
?!westhere and !easthere and !reshere:goto "start"
?westhere and easthere or reshere:goto "start"
?easthere and westhere or reshere:goto "start"
?reshere and westhere or reshere:goto "start"
goto "start"
#westscore
_westscore=_westscore+1
~5
titletext[format["MISSION STATUS:\nNATO  %1 <-> Soviets  %2 <-> Resistance %3",_westscore,_eastscore,_resscore],"PLAIN DOWN"]
goto "start"
#eastscore
_eastscore=_eastscore+1
~5
titletext[format["MISSION STATUS:\nNATO  %1 <-> Soviets  %2 <-> Resistance %3",_westscore,_eastscore,_resscore],"PLAIN DOWN"]
goto "start"
#resscore
_resscore=_resscore+1
~5
titletext[format["MISSION STATUS:\nNATO  %1 <-> Soviets  %2 <-> Resistance %3",_westscore,_eastscore,_resscore],"PLAIN DOWN"]
goto "start"
#end
exit

muntahunta

  • Guest
Re:TKOTH score
« Reply #5 on: 28 Oct 2004, 12:54:48 »
cool, thanks man, ill be sure to try it out

thanks alot for the help, much appreciated