RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RESOLVED] Ive Searched alot but i need a movie Script

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 86
Falling under chaos
Ok i just spent 2 hours searching for movie scripts I found alot but nothing that works Im making my movies from Window movie maker and i whant to stick them in my game (btw im using rmxp) if someone could link me a page or the script it would be the best  ;D thnx in advance
« Last Edit: February 08, 2008, 10:36:45 PM by Falcon »

*
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
Rep:
Level 96
&&&&&&&&&&&&&&&&&&&&&&&&&&&
GIAW 14: 2nd Place (Hard Mode)2013 Biggest Drama Whore2013 Zero to HeroParticipant - GIAW 11Secret Santa 2013 ParticipantFor taking arms in the name of your breakfast.
Code: [Select]
###########################################################
class Scene_Movie
###########################################################
#Created by SoundSpawn
###########################################################
#Fixed by Popper
###########################################################
#Instruction
#  1) Movies must in in a new folder called Movies in your directory
#  2)If you call this script from and event (EG:    Call Script: $scene = Scene_Movie.new("INTRO") )
#  3) Have fun playin movies with this script!!!
###########################################################
###########################################################
###########################################################

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(0.1)
Graphics.update
sleep(0.1)
Graphics.update
sleep(0.1)
fullscreen
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)
$scene = Scene_Map.new
break
end
end
$scene = Scene_Map.new
end

end
&&&&&&&&&&&&&&&&

***
Rep:
Level 86
Falling under chaos
Ok I put in And made the new folder called Movies and inserted the call Script excactly how it was shown am I supposed to put the Movies folder in Graphics where Animations pararomas and characters are and stuff or sumthin cuz i get Santax error I know its somthing  im doing wrong but ya can you help me plz? Oh thnx for the Script :)

***
Rep:
Level 86
Falling under chaos
Hello?   ???

*
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
Rep:
Level 96
&&&&&&&&&&&&&&&&&&&&&&&&&&&
GIAW 14: 2nd Place (Hard Mode)2013 Biggest Drama Whore2013 Zero to HeroParticipant - GIAW 11Secret Santa 2013 ParticipantFor taking arms in the name of your breakfast.
Just drop it anywhere and make sure it is labled right. I didn't write is, so I don't know.
&&&&&&&&&&&&&&&&

***
Rep:
Level 86
Falling under chaos
well I did that part im just not entirly sure excactly were to put the movie folder where the game will read it lol

***
I'M SUPERMAN!
Rep:
Level 88
HURR DE DURRR
Well, I got it to work, but only the sound plays...


You put it outside of all but the game folder, next to Data and Audio.
FFFFFFFFFFFFFFFFFFFFFF

***
Rep:
Level 86
Falling under chaos
oh well if its only the sound that work then I'm not going to use but thnx anyways it was worth a try  :)

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Strike 1, this should have gone in script requests.