Newbiedev-chan Posted September 5, 2020 Posted September 5, 2020 Hi, i want a script for newbies when they type @guide as command, the command will display at bottom helpful tips. TIA!~ Quote
0 Start_ Posted September 5, 2020 Posted September 5, 2020 - script GuideCommands -1,{ OnInit: bindatcmd "guide","GuideCommands::OnGuide"; end; OnGuide: dispbottom "Helpful"; end; } 1 Quote
1 Wazaby Posted September 11, 2020 Posted September 11, 2020 - script GuideCommands -1,{ OnInit: bindatcmd "guide","GuideCommands::OnGuide"; end; OnGuide: setarray .@tips$, "Tip1","Tip2","Tip3"; .@len = getarraysize(.@tips$); .@opt = rand(1,.@len); dispbottom "Tip: " + .@tips$[.@opt]; end; } Quote
Question
Newbiedev-chan
Hi, i want a script for newbies when they type @guide as command, the command will display at bottom helpful tips. TIA!~
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.