SphereCommunity

Full Version: I can send movies?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can i send a movie from script type/like cinematics or something? My idea is send a movie in a quest.

Thanks
In a word... no
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
Reference URL's