Newbiedev-chan Posted September 5, 2020 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 33 Reputation: 2 Joined: 01/19/16 Last Seen: March 19, 2021 Share 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 Link to comment Share on other sites More sharing options...
0 Start_ Posted September 5, 2020 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 950 Reputation: 181 Joined: 04/05/13 Last Seen: Wednesday at 08:26 AM Share Posted September 5, 2020 - script GuideCommands -1,{ OnInit: bindatcmd "guide","GuideCommands::OnGuide"; end; OnGuide: dispbottom "Helpful"; end; } 1 Quote Link to comment Share on other sites More sharing options...
1 Wazaby Posted September 11, 2020 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 31 Reputation: 12 Joined: 04/19/20 Last Seen: April 21, 2024 Share 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 Link to comment Share on other sites More sharing options...
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!~
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.