Function:
Comments:
The file name will be searched in: Gothic II\_Work\Data\video
Video must have .bik format
Examples:
Download for Dev 8:
http://www.mediafire.com/file/v176ctqp62...Player.nud
Download for *.5:
http://www.mediafire.com/file/szxg62u6wq...Player.zip
Code:
int PlayVideo(string FileName, int ScreenBlend, int ExitSession);
Comments:
The file name will be searched in: Gothic II\_Work\Data\video
Video must have .bik format
Examples:
Code:
function onInit()
{
PlayVideo("intro.bik", 1, 0);
}
Code:
function onCommand(cmd, params)
{
switch (cmd)
{
case "play":
local scan = sscanf("s", params);
if(scan)
{
PlayVideo(scan[0], 0, 0);
}
return 1;
}
}
Download for Dev 8:
http://www.mediafire.com/file/v176ctqp62...Player.nud
Download for *.5:
http://www.mediafire.com/file/szxg62u6wq...Player.zip