.project pinguin.

all about the game music art...

Tempus

Current Game: Jagged Alliance 2

Current Music: Jack and Indra Lesmana - Children of Fantasy

Current PTC: TakeTheGlobe

"What we might be without time..."

Brief News

Auh, I finally found new easy tips for forex trading. It's called "khalayak umum" technical analysis!! hehehe.. Almost 90% success!! Curious!? See the tips here! (oct. 08)

Announcement! ProjectPinguin is Moving!

Dear all readers and visitors!

Sadly, I am moving to www.projectpinguin.890m.com. It is for the better I guess. Thank you for supporting me here. Don't forget to visit my new home.

Sincerely,
gurakuto

Top Ten Reffs Get Half!

The top ten referral get 50% of I get from referral klik. So if you are already my referral please claim your click. If youre not my referral please join under the referral bellow. Honestly, I am not good into referrals thing, so whoever wan to be my referral and became top ten of the referral, as a thank you I would give you 50% of the profit referrals. If you gain 10$ you get 5$ of em.

This is not scam. Eniwei, if you interested please register or read the review first.

TakeTheGlobe: Daftar | Review
Thinkbux: Daftar | Review
Crewbux v4.: Daftar | Review
SandraClick: Daftar | Review
Adandel: Daftar | Review
Mainbux: Daftar | Review
Worldbux: Daftar | Review

Oh iya, I will update the entri every 1st each month. Please bookmark this post to see the increment. For referrals noted by me, would get notice on his mail every month.

So if your name is registered as top ten clickers, please put your user name, email, and alertpay email to this post. To prevent unwanted wrong claim I will ask a verification on the ads before the first payment.

Well, that’s all, I feel a bit sleepy. Need some pillow.

Dygta – Kesepian Ini

Hehehe, lately I always listen to this song:

I missed to be loved, as deep as my love as sincere as my heart
I want to had a lover
Without the tears without mistakes
Not the love that hurt and left me again

Please help me from this emptiness
Save my love from my broken heart
Please let me free from this condition
Perfect my life from my fragile soul
Is there anybody who can set me free from this loneliness

Not the love that hurt and left me again.
Please help me from this emptiness
Save my love from my broken heart
Stomp this endless loneliness
Perfect my life from my fragile soul
Is there anybody who can set me free from this loneliness

This loneliness

Eclipse Harmony Live Stage

Hiyah!! Eclipse Harmony is said going to be in concert again on 2nd November. Add into outlook alarm! Gotta watch gotta watch. They said it’s going to be held on Pekan Raya Jakarta Kemayoran.

Feedburner! Blogarama! Digg it! Stumble! Ah.. whatever..

RMXP Script For Movie Playback

Well, guess what, we can actually play movie in RMXP with a certain RGSS script of course. It’s not mine to made though. I forgot where did I got them since they are in my HD for long. I post in the blog just to share it with you all. If you happen to be the one who write the script, please claim and so I’ll add all the credits goes to you.

class Scene_Movie

def initialize(movie)

@readini = Win32API.new 'kernel32', 'GetPrivateProfileStringA', %w(p p p p l p), 'l'

@movie_name = Dir.getwd()+"\\Movies\\"+movie+".avi"

main

end



def main



game_name = "\0" * 256

@readini.call('Game','Title','',game_name,255,".\\Game.ini")

game_name.delete!("\0")

@wnd = Win32API.new('user32','FindWindowEx','%w(l,l,p,p)','L')

@temp = @wnd.call(0,0,nil,game_name).to_s

movie = Win32API.new('winmm','mciSendString','%w(p,p,l,l)','V')

movie.call("open \""+@movie_name+"\" alias FILE style 1073741824 parent " + @temp.to_s,0,0,0)

@message = Win32API.new('user32','SendMessage','%w(l,l,l,l)','V')



@detector = Win32API.new('user32','GetSystemMetrics','%w(l)','L')

@width = @detector.call(0)

if @width == 640

fullscreen

Graphics.update

sleep(1)

Graphics.update

sleep(1)

Graphics.update

sleep(1)

end



status = " " * 255

movie.call("play FILE",0,0,0)

loop do

sleep(0.1)

@message.call(@temp.to_i,11,0,0)

Graphics.update

@message.call(@temp.to_i,11,1,0)

Input.update

movie.call("status FILE mode",status,255,0)

true_status = status.unpack("aaaa")

if true_status.to_s != "play"

break

end

if Input.trigger?(Input::B)

Input.update

break

end

end

movie.call("close FILE",0,0,0)

bail

end



def bail

if @width == 640

fullscreen

end

end

end



def fullscreen()



$full.call(18,0,0,0)

$full.call(13,0,0,0)

$full.call(18,0,2,0)

$full.call(13,0,2,0)

end

$full = Win32API.new('user32','keybd_event','%w(l,l,l,l)','')


I don’t think that I understand the script, but it seems that the RGSS support playing movie type file. Anyway, to play the movie with script above follow this steps:

  1. Just copy the script and create new script on your RMXP project, name them anything you like (mine Scene_Movie).
  2. Create directory in your RMXP project and name it ‘Movies’.
  3. Put your movie files there.
  4. Use Event Command. Look for the command Script on third page. Add the script ‘Scene_Movie.new("your_movie_files_name_without_extension")’

There goes the tutorial. Okay then just try the script, will you. See you later and good night, I’m sleepy now.