Blockland Forums > Suggestions & Requests
Actors
Johnny Blockhead:
--- Quote from: Port on August 24, 2013, 09:49:45 AM ---Why not just use /placeCam and do it in one go?
--- End quote ---
You can't have multiple actors.
tredden:
Ive almost got a working script for this (basically just stole code from a bunch of addons, but im just a beginner).
/filmscene begins filming your movements to the next available scene number. Currently supports looking, moving, crouching, light, and sitting (maybe someone with more experience can add more functionality).
/endscene ends filming.
/playscene [number] will playback the specified scene (currently supports playing only 1 scene at a time).
/endscene also cancels playbacks.
/deletescene [number] deletes a scene for re-recording.
Going to add /listscene, and maybe /playscene "all" functionability.
tredden:
This is a basic version. Laid the foundation, someone else can keep bulding.
--- Code: ---Author: Whirlwind
Code from: SupportHeightControl, SuperMacro, CopyMod, et. al
Description: Record your movements, then have a bot play them back.
Commands:
/filmscene - Begins filming to the next available spot. Supports moving, jumping, crouching, sitting, and light. Caution: It has some eye movement function ability, but the playback will glitch if you move your camera too fast.
/listscene - Lists all recorded scenes and their times.
/deletescene number or "all" - Deletes specified scene.
/playscene number or "all" - Plays back specified scene. Ability to play multiple scenes at a time.
/endscene [number optional] - Ends filming. It also ends playbacks. Leave blank to end all playbacks.
--- End code ---
Use at your own risk.
http://www.mediafire.com/?5tuk5y3p59mfsx4
Johnny Blockhead:
Nice, I will look at it