rakuzas Posted May 12, 2017 Posted May 12, 2017 Hi guys, I'm wondering how to make loading cutin? Because I do see some scripts like Fishing have their own loading cutin but I dont really understand how it works.. Can someone please guide me? Thank you in advance. Quote
0 Ninja Posted May 12, 2017 Posted May 12, 2017 (edited) Loading cutins are just images shown one after the other. For example, . You have to break it frame by frame depending on how smooth you want the animation to look like (more frames, smoother.) then you just loop them in. e.g. setarray .@ThisLoadingCutin$[0],"LoadingFrame1", "LoadingFrame2", "LoadingFrame3", "LoadingFrame4", "LoadingFrame5"; for (set @j,0; @ < 10; set @j,@j+1){ for (set @i,0; @i < 5; set @i,@i+1) { cutin .@ThisLoadingCutin$[@i], 3; sleep2 1000; } } cutin "", 255; Edited May 12, 2017 by Ninja 1 Quote
0 rakuzas Posted May 13, 2017 Author Posted May 13, 2017 4 hours ago, Ninja said: Loading cutins are just images shown one after the other. For example, . You have to break it frame by frame depending on how smooth you want the animation to look like (more frames, smoother.) then you just loop them in. e.g. setarray .@ThisLoadingCutin$[0],"LoadingFrame1", "LoadingFrame2", "LoadingFrame3", "LoadingFrame4", "LoadingFrame5"; for (set @j,0; @ < 10; set @j,@j+1){ for (set @i,0; @i < 5; set @i,@i+1) { cutin .@ThisLoadingCutin$[@i], 3; sleep2 1000; } } cutin "", 255; I see.. Its work like this.. I think I understand now.. Thank you very much for give explanation with example code.. +1 For you.. Quote
Question
rakuzas
Hi guys,
I'm wondering how to make loading cutin? Because I do see some scripts like Fishing have their own loading cutin but I dont really understand how it works.. Can someone please guide me?
Thank you in advance.
2 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.