rakuzas Posted May 12, 2017 Group: Members Topic Count: 152 Topics Per Day: 0.03 Content Count: 459 Reputation: 7 Joined: 06/29/12 Last Seen: April 25, 2019 Share 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 Link to comment Share on other sites More sharing options...
0 Ninja Posted May 12, 2017 Group: Members Topic Count: 54 Topics Per Day: 0.01 Content Count: 513 Reputation: 84 Joined: 08/11/12 Last Seen: July 4, 2024 Share 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 Link to comment Share on other sites More sharing options...
0 rakuzas Posted May 13, 2017 Group: Members Topic Count: 152 Topics Per Day: 0.03 Content Count: 459 Reputation: 7 Joined: 06/29/12 Last Seen: April 25, 2019 Author Share 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 Link to comment Share on other sites More sharing options...
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.
Link to comment
Share on other sites
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.