Home   Help Search Login Register  

Author Topic: how do i stop the church from ringing the annoying bells?  (Read 2033 times)

0 Members and 1 Guest are viewing this topic.

_54th_Yoshi

  • Guest
I'm making a mp mission and i have time accel on but that makes the church bells ring every second.... :help:

tai mai shu

  • Guest
Re:how do i stop the church from ringing the annoying bells?
« Reply #1 on: 29 Aug 2002, 04:11:38 »
um, the acctime command wont work in ofp....

and the bell ringing is coded into the software.  you cannot change it

Offline Black_Feather

  • Former Staff
  • ****
  • I'll never forget you Daisey.
Re:how do i stop the church from ringing the annoying bells?
« Reply #2 on: 29 Aug 2002, 04:39:27 »
um, the acctime command wont work in ofp....

It does work.

tai mai shu

  • Guest
Re:how do i stop the church from ringing the annoying bells?
« Reply #3 on: 29 Aug 2002, 06:28:42 »
oops, i meant, it wont work in multiplayer. thatd be cool if it did though...

me11ai

  • Guest
Re:how do i stop the church from ringing the annoying bells?
« Reply #4 on: 30 Aug 2002, 01:47:35 »
skiptime # works  ;D

do you want the timeskipping to happen gradually when during play. or just blackout the screen and when it comes back the time has skipped few hours?

if its the later you could move the soldiers to another place during the timeskipping with:
unit setpos [getpos object select 0, getpos object select 1,getpos object select 2]
where unit is your soldier and object a thing you put somewhere far from the church, like invisible H.
then you have to move them back again ofcourse

Hope this helps  :)

tai mai shu

  • Guest
Re:how do i stop the church from ringing the annoying bells?
« Reply #5 on: 30 Aug 2002, 08:26:08 »
how do you make it change gradually?

me11ai

  • Guest
Re:how do i stop the church from ringing the annoying bells?
« Reply #6 on: 30 Aug 2002, 15:39:01 »
You could make a script and write:

i=0

#loop
? (i<20) : goto "timeskip"
exit

#timeskip
i=i+1
skiptime 0.05
~5
goto "loop"


increase or decrease the skiptime value if you want it to go faster or smoother

tai mai shu

  • Guest
Re:how do i stop the church from ringing the annoying bells?
« Reply #7 on: 30 Aug 2002, 22:34:46 »
cool thanks.  ill try this biznatch out.