Config by GreenEdiits
http://youtube.com/GreenEdiits

I do not take any responsibility for any game bans or whatever this may do to your computer n shit like that...


If you want to make your own sun animation script, heres the base for a python script that will write it all for you :)
Just paste it into Python and edit it.
Reminder: if theres too much code, the bo2 console will not send the commands to the game, if that happens just reduce the code lenght

________________________________________________________________________

fnumber=180
snumber=-360
print('wait;')

for x in range(540):
    print('r_lightTweakSunDirection '+str(fnumber)+' '+str(snumber)+';')
    print('wait;wait;wait;wait;wait;wait;wait;wait;')
    snumber = snumber + 0.5
    fnumber = fnumber + 0.5



