SphereCommunity
I can send movies? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: I can send movies? (/Thread-I-can-send-movies)



I can send movies? - daedelus - 10-04-2012 01:42 AM

Can i send a movie from script type/like cinematics or something? My idea is send a movie in a quest.

Thanks


RE: I can send movies? - Mordaunt - 10-04-2012 04:11 AM

In a word... no


RE: I can send movies? - Barnabus - 10-04-2012 06:07 AM

Mord is right but there is a way around it! That could be suitable...

WEBLINK

Example :: To complete the quest the player must drop a quest item on the ground, then a movie appears.

Code:
[EVENTS e_SomeQuest]

ON=@DROPON_GROUND
// I is the item being dropped
// SRC is the guy dropping

IF <I.BASEID> == i_the_quest_item && <SRC.REGION.TAG.QuestRegion>
    SRC.WEBLINK www.youtube.com/watch?v=grZBjzGmmRw
ENDIF

To test it in game just do
Code:
.xweblink www.youtube.com/watch?v=grZBjzGmmRw
and target a player.

Or if you would like all the players in the game to see your girl friends bum from game:
Code:
.serv.allclients weblink www.MyGirlFriendsBooty.com
Maybe something like that would help you.. Its an idea anyway.

Just remeber not to include the http:// because you know what // means in sphere Tongue