viewing paste Unknown #744 | C

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
-   script  werbung -1,{
 
OnWhisperGlobal:
    if ( getgmlevel() < 99 ) end; // <-- change gm level here
 
L_anfang:
    mes "^FF0000[Werbeagent]^000000";
    mes "Schön dich zu sehen ^0000CD "+strcharinfo(0)+" ^000000!";
    menu "Werbetext anzeigen",L_showtext,"Text ändern",L_change,"Jetzt Einblenden",L_shownow,"Nix bye",-;
    close;
 
 
L_change:
 
    mes "^FF0000[Werbeagent]^000000";
    mes "Gib bitte nun die erste Zeile ein";
    input @msg$;
    next;
    mes "^FF0000[Werbeagent]^000000";
    mes "Gib bitte nun die zweite Zeile ein";
    input @msg2$;
    next;
    mes "^FF0000[Werbeagent]^000000";
    mes "Gib bitte nun die dritte Zeile ein";
    input @msg3$;
    next;
 
    mes "^FF0000[Werbeagent]^000000";
    mes "Korrekt so:";
    mes "Zeile 1: "+@msg$+"  ";
    mes "Zeile 2: "+@msg2$+" ";
    mes "Zeile 3: "+@msg3$+" ";
    menu "Nein!",L_anfang,"Jep!",-;
 
    mes "^FF0000[Werbeagent]^000000";
    mes "Gut, gut!";
    set $Msg1$, @msg$;
    set $Msg2$, @msg2$;
    set $Msg3$, @msg3$;
    next;
    goto L_anfang;
 
 
 
L_showtext:
    mes "^FF0000[Werbeagent]^000000";
    mes "Das hier wird zur Zeit gebroadcastet:";
    mes "Zeile 1: >"+$Msg1$+"<  ";
    mes "Zeile 2: >"+$Msg2$+"< ";
    mes "Zeile 3: >"+$Msg3$+"< ";
    next;
    goto L_anfang;
 
 
// 66FFF0 HELLBLAU
// FF6699 ROSA
// 00FF00 Hellgrün
// FF0000 ROT
// FFFF00 GELB
// FFFFFF WEIß
 
 
OnClock0001:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFFFFFF;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFFFFFF;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0xFFFFFF;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0xFFFFFF;
    end;
OnClock0201:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFFFF00;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFFFF00;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0xFFFF00;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0xFFFF00;
    end;
OnClock0401:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0x00FF00;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0x00FF00;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0x00FF00;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0x00FF00;
    end;
OnClock0601:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0x66FFF0;
    sleep2 5500;
    Announce " "+$Msg1$+" ",bc_all,0x66FFF0;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0x66FFF0;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0x66FFF0;
    end;
OnClock0801:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFF6699;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFF6699;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0xFF6699;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0xFF6699;
    end;
OnClock1001:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFF0000;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFF0000;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0xFF0000;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0xFF0000;
    end;
OnClock1201:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFF0000;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFF0000;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0xFF0000;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0xFF0000;
    end;
OnClock1401:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFF6699;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFF6699;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0xFF6699;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0xFF6699;
    end;
OnClock1601:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0x66FFF0;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0x66FFF0;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0x66FFF0;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0x66FFF0;
    end;
OnClock1801:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0x00FF00;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0x00FF00;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0x00FF00;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0x00FF00;
    end;
OnClock2001:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFFFF00;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFFFF00;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0xFFFF00;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0xFFFF00;
    end;
OnClock2201:
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFFFFFF;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFFFFFF;
    sleep2 4000;
    Announce " "+$Msg2$+" ",bc_all,0xFFFFFF;
    sleep2 4000;
    Announce " "+$Msg3$+" ",bc_all,0xFFFFFF;
    end;
 
L_shownow:
close2;
    Announce " Please don't forget to vote for us ^.~ You'll find the Votebuttons on our Homepage ",bc_all,0xFFFFFF;
    sleep2 5500;    
    Announce " "+$Msg1$+" ",bc_all,0xFFFFFF;
    sleep2 5500;
    Announce " "+$Msg2$+" ",bc_all,0xFFFFFF;
    sleep2 5500;
    Announce " "+$Msg3$+" ",bc_all,0xFFFFFF;
    end;
 
}
Viewed 710 times, submitted by Guest.