[Request] Random cutins on login

keough

New member
Messages
173
Points
0
Emulator
Hello, i would like to request atleast 3 random cutins pop-up every login in-game when login with an announcement. can someone please give me the script?

Thank you in advance!

 
Last edited by a moderator:
Something like this?

- script cutin_announce -1,{OnPCLoginEvent: switch(rand(1,3)){ // You can add more cutins editing second parameter of rand() and adding a new case on the switch case 1: cutin "cutin_1", 3; break; case 2: cutin "cutin_2", 3; break; case 3: cutin "cutin_3", 3; break; } sleep2 5000; // Wait 5 seconds with the cutin open cutin "",255; end;}

P.S.: Remember that cutins are .bmp files, placed in datatexture유저인터페이스illust

 
Back
Top