Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- default
- {
- state_entry()
- {
- llSetAlpha(1.0, ALL_SIDES);
- llSetTimerEvent(0.2);
- }
- timer()
- {
- if (llGetAgentInfo(llGetOwner()) & AGENT_WALKING)
- {
- state walking;
- }
- }
- }
- state walking
- {
- state_entry()
- {
- llSetTimerEvent(0.2);
- llSetAlpha(0.0, ALL_SIDES);
- }
- timer()
- {
- if (!(llGetAgentInfo(llGetOwner()) & AGENT_WALKING))
- {
- state default;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement