I need help finding a system

Status
Not open for further replies.
Level 6
Joined
Feb 10, 2011
Messages
188
A long long time ago in a map I was making I used a script that someone from the hive wrote and posted on here. The script allowed a player to change the distance and angle of attack of their cam by using -cam xxx -aoa xxx for the commands, the xxx can be replaced by any number (there was a setable max distance)

Anyways I am looking for this system or a system very similar.

Basically It has to have
Changeable Camera Distance by using -cam X (x for any number)
Changeable AoA by using some commands

Optional
Changeable Camera Rotation, via command
 
This is very easy to make:

event - player enters chat message
condition - substring(entered chat string, 1, 4) equal to "-cam"
actions:
set input = convert string to real (entered chat string, 6, length of entered chat string)
camera - set camera field (distance) for triggering player to "input"

For angle of attack, just change the string and the field.
 
Status
Not open for further replies.
Top