caspa Posted February 20, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Share Posted February 20, 2013 (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 February 20, 2013 by caspa Quote Link to comment Share on other sites More sharing options...
Aleos Posted February 20, 2013 Group: Development Manager Topic Count: 56 Topics Per Day: 0.01 Content Count: 732 Reputation: 525 Joined: 12/13/11 Last Seen: June 13, 2024 Share Posted February 20, 2013 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; Quote Link to comment Share on other sites More sharing options...
Euphy Posted February 20, 2013 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted February 20, 2013 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; Quote Link to comment Share on other sites More sharing options...
caspa Posted February 20, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Author Share Posted February 20, 2013 This only does the blinking part where is the spinning part and the by letter on it? Quote Link to comment Share on other sites More sharing options...
Capuche Posted February 20, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted February 20, 2013 (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 February 20, 2013 by Capuche Quote Link to comment Share on other sites More sharing options...
caspa Posted February 20, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Author Share Posted February 20, 2013 yep.............. just what i needed........ thx ya'll [ problem solved ] Quote Link to comment Share on other sites More sharing options...
Brian Posted February 20, 2013 Group: Members Topic Count: 75 Topics Per Day: 0.02 Content Count: 2223 Reputation: 593 Joined: 10/26/11 Last Seen: June 2, 2018 Share Posted February 20, 2013 delchar and charat can also be used to "scroll" through the word! scrolling_waitingroom.txt Quote Link to comment Share on other sites More sharing options...
Emistry Posted February 20, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Thursday at 04:49 PM Share Posted February 20, 2013 Number 1 : http://pastebin.com/raw.php?i=0AGjsKQV Number 2: delchar and charat can also be used to "scroll" through the word! scrolling_waitingroom.txt Number 3: http://pastebin.com/raw.php?i=ZWTrjxyd Quote Link to comment Share on other sites More sharing options...
Question
caspa
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 ]
[ ]
Edited by caspathen redo the (1).....
i've seen this on AERO so im sure its doable =3
Link to comment
Share on other sites
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.