Page 3 of 7

Re: Happy New Year

Posted: Fri Jan 01, 2010 5:09 am
by GeoTrail
idle wrote:happy new year hope you all got good hangovers!
We will see tomorrow ;)

Re: Happy New Year

Posted: Fri Jan 01, 2010 11:24 am
by jamirokwai
idle wrote:happy new year hope you all got good hangovers!
Happy new year!
The hangover is successfully over now, I hope :)

Re: Happy New Year

Posted: Fri Jan 01, 2010 8:05 pm
by thefool
Was at a great party until 8 in the morning. Then i went with a friend to his apartment and apperently got some wrong shoes on which where 3 numbers larger than my size (And they where gym shoes with no pattern underneath, and there's snow everywhere outside). I then made a faceplant which resulted in a shock when i got up and looked in the mirror around 17 this afternoon and saw lots of blood hehe. Especially because i don't remember when it happened, my friend told me after i got up.

Also blew up an old toilet and oven without loosing my fingers hehe. But damn what a hangover.

Happy new year :D

Re: Happy New Year

Posted: Fri Dec 31, 2010 2:00 pm
by Baldrick
Yet another has has gone & it is now 2011 here in Aus.

Code: Select all

ct=Date()
Debug ct
Debug FormatDate("%dd/%mm/%yyyy - %hh:%ii:%ss",ct)
  • 1293840000
    01/01/2011 - 00:00:00
Happy New Year to everybody :)

Got a little inspired

Posted: Fri Dec 31, 2010 2:29 pm
by codewalker
Got a little inspired by tron legacy and together with photodraw this came out.
Hope to read more from all of you in a happy new year 2011

Image

greetings
cw

Re: Happy New Year

Posted: Fri Dec 31, 2010 2:32 pm
by ts-soft
nice picture codewalker

@Baldrick
Happy New Year for you, i have to wait some hours :mrgreen:

Re: Happy New Year

Posted: Fri Dec 31, 2010 3:29 pm
by Jago
My New Year's resolution is: I promise to finish at least game project during the year 2011.

Re: Got a little inspired

Posted: Fri Dec 31, 2010 3:49 pm
by Hysteria
codewalker wrote:Got a little inspired by tron legacy and together with photodraw this came out.
Hope to read more from all of you in a happy new year 2011

Image

greetings
cw
That's a great film isn't it? Great soundtrack too. It's nice that they did a good job on it and didn't ruin it.

Hey, suggestion for PB in 2011 - MakeTronGraphic command, LOL!

Re: Happy New Year

Posted: Fri Dec 31, 2010 3:59 pm
by GWarner
Hayyp New Year everyone!

I hope it will be a safe, peaceful, and properous year for all!

Any New Year's resolutions?

Mine is to get back to being physically fit and to lose about 60 pounds.
codewalker wrote:Got a little inspired by tron legacy and together with photodraw this came out.
Hope to read more from all of you in a happy new year 2011

Image
I haven't seen the movie yet but am definitely looking forward to it having seen and enjoyed the original movie from the 1980s

I've also played the video games and am currently playing Tron Evolution for the PC.

Re: Happy New Year

Posted: Fri Dec 31, 2010 4:20 pm
by Andre
Even if it's some hours here too....
Happy New Year 2011 from me too! :mrgreen:

Re: Happy New Year

Posted: Fri Dec 31, 2010 5:08 pm
by DoctorLove
Happy new YEAR!

Still 7 hours to go from Holland :)

Cheers :)

Re: Happy New Year

Posted: Fri Dec 31, 2010 6:13 pm
by idle
Happy new year, hope 2011 is good to everyone.

Re: Happy New Year

Posted: Fri Dec 31, 2010 7:35 pm
by DoubleDutch
Happy New Year (still 5 1/2 hours to go here!)...

Re: Happy New Year

Posted: Fri Dec 31, 2010 8:08 pm
by Inf0Byt3
Happy New Year to you and yours!

Edit: Strange, this is my 2011'th post :lol:

Re: Happy New Year

Posted: Fri Dec 31, 2010 8:17 pm
by Vera
Good times to come to everybody Image
here's what's left ;)

Code: Select all

CreateImage(0, 300, 200)
StartDrawing(ImageOutput(0))
DrawingMode(#PB_2DDrawing_Outlined)
Circle(115, 45, 30 ,$FF0000)
FillArea( 115, 45, $FF0000, $18E4E7)
Circle(230-15, 200-40, 30, $FF0000)
FillArea( 230-15, 200-40, $FF0000, $191CEb)
StopDrawing()

If OpenWindow(0, 0, 0, 300, 200, "Time to go", #PB_Window_SystemMenu|#PB_Window_ScreenCentered)
  ImageGadget(2, 0, 0, 300, 200, ImageID(0))
  CompilerIf #PB_Compiler_OS = #PB_OS_Windows
    DisableGadget(2,1)
  CompilerEndIf
  ProgressBarGadget(0, 20, 10, 36, 180, 0, 100,#PB_ProgressBar_Vertical|#PB_ProgressBar_Smooth)
  AddWindowTimer(0, 123, 1000)
  LoadFont(0, "", 14)
  SetGadgetFont(#PB_Default, FontID(0))
  TextGadget(1,75,85, 210,30, "Time to go", #PB_Text_Center)
  SetGadgetColor(1, #PB_Gadget_FrontColor, $18E4E7)
  SetGadgetColor(1, #PB_Gadget_BackColor, $85297A)
  
  Repeat
    Event = WaitWindowEvent()
    
    If Event = #PB_Event_Timer And EventTimer() = 123
      now =  Date()
      soon =  Date(2011, 01, 01, 00, 00, 01)
      today = Date(2010, 12, 31, 00, 00, 01)
      diff = soon - now
      leftover= today + diff
      If now >= soon
        SetGadgetText(1, FormatDate("%yyyy ~ happy new year",now))
        SetGadgetState(0, 100)
      Else
        SetGadgetText(1, FormatDate("%dd.%mm.%yyyy ~ %hh:%ii:%ss",leftover))
        Value.f = (diff/86400) * 100
        SetGadgetState(0, Value)
        GadgetToolTip(0, Str(GetGadgetState(0)) + " %")   
      EndIf
    EndIf    
    
  Until Event = #PB_Event_CloseWindow
EndIf
Inf0Byt3 wrote:Edit: Strange, this is my 2011'th post :lol:
so you're already done for next year :mrgreen: