Jump to content
  • 0

Waitingroom Sign With Style...


Question

Posted (edited)

I would like to request a waiting that would do this....

(1)

 


[  H                             ]

 

[  H  E                         ]

 

[  H  E  A                    ]

 

[  H  E  A  L                 ]

 

[  H  E  A  L  E             ]

 

[  H  E  A  L  E  R        ]

after the word is complete it start spining

 

(2)



[  H  E  A  L  E  R      ]

 

[  E  A  L  E  R       H  ]

 

[  A  L  E  R    H  E   ]

 

[ L  E  R    H  E  A    ]

 

[  E  R    H  E  A  L    ]

 

[   R    H  E  A  L  E    ]

[  H  E  A  L  E  R      ]

then after that it would start blinking for 3 times....

 

(3)

[  H  E  A  L  E  R      ]

[                                ]

[  H  E  A  L  E  R      ]

[                                ]

[  H  E  A  L  E  R      ]

 

[                                ]

then redo the (1).....

i've seen this on AERO so im sure its doable =3
 

Edited by caspa

7 answers to this question

Recommended Posts

Posted
OnInit:
    set .delay,500;
    setarray .msg1$,"H","H E","H E A","H E A L","H E A L E R",
            "H E A L E R","E A L E R  H","A L E R  H E","L E R  H E A","E R  H E A L","R  H E A L E","H E A L E R",
            "H E A L E R"," ","H E A L E R"," ","H E A L E R"," ";

    while(1) {
        for(set .i,0; .i < getarraysize(.msg$); set .i,.i + 1) {
            waitingroom .msg$[.i],0;
            sleep .delay;
            delwaitingroom;
        }
    }
    end;
Posted

OnInit:

set .@delay, 500; // in ms

setarray .@m$[0], // message list

"Message 1",

"Message 2",

"Message 3";

set .@s, getarraysize(.@m$);

while(1) {

for(set .@i,0; .@i<.@s; set .@i,.@i+1) {

waitingroom .@m$[.@i],0;

sleep .@delay;

delwaitingroom;

}

}

end;

Posted (edited)

You just need to write

 

    setarray .@m$[0], // message list
        "[  H             ]",
        "[  H  E          ]",
        "[  H  E  A       ]",
        "next message";// etc.. 3 times ? 


It *also does the 'spinning' part to this way

Edited by Capuche

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...