Permalink
Cannot retrieve contributors at this time
41 lines (39 sloc)
2.39 KB
| tips = 0 | |
| addtip = [ | |
| tips = (+ $tips 1) | |
| [tip@tips] = $arg1 | |
| ] | |
| resettips = [ | |
| tips = 0 | |
| addtip "press ^fs^fw^f{=jump}^fS to ^fs^fyjump^fS and again in mid-air to ^fs^fyimpulse boost^fS" | |
| addtip "press ^fs^fw^f{=crouch}^fS to ^fs^fycrouch^fS, doing so while landing will perform an ^fs^fyimpulse slide^fS" | |
| addtip "press ^fs^fw^f{=primary}^fS and ^fs^fw^f{=secondary}^fS to use your primary and secondary weapon fire modes" | |
| addtip "press ^fs^fw^f{=reload}^fS to ^fs^fyreload^fS your weapon, timing this can be crucial to survival" | |
| addtip "press ^fs^fw^f{=use}^fS to ^fs^fyuse items^fS and ^fs^fytriggers^fS" | |
| addtip "press ^fs^fw^f{=special}^fS to ^fs^fywall run^fS, ^fs^fywall kick^fS, or ^fs^fymelee^fS" | |
| addtip "press ^fs^fw^f{=saytextcommand (getsaycolour)}^fS to ^fs^fytalk^fS and ^fs^fw^f{=sayteamcommand (getsaycolour)}^fS to only speak to ^fs^fyteammates^fS" | |
| addtip "press ^fs^fw^f{=special}^fS while in the air to ^fs^fyfly-kick^fS enemies" | |
| addtip "press ^fs^fw^f{=suicide}^fS to ^fs^fysuicide^fS, this will reset you in ^fs^fyrace^fS" | |
| addtip "press ^fs^fw^f{=crouch}^fS to crouch when landing to perform an ^fs^fyimpulse slide^fS" | |
| addtip "press ^fs^fw^f{=jump}^fS during an ^fs^fyimpulse slide^fS to perform an ^fs^fyimpulse launch^fS" | |
| addtip "press ^fs^fw^f{=show_ui help}^fS to open the ^fs^fyhelp menu^fS at any time" | |
| addtip "press ^fs^fw^f{=show_ui maps 1}^fS to make a ^fs^fymap selection^fS" | |
| addtip "press ^fs^fw^f{=showservers}^fS to show the ^fs^fyserver list^fS" | |
| addtip "press ^fs^fw^f{=show_ui profile 2}^fS to change your ^fs^fyloadout weapons^fS" | |
| addtip "press ^fs^fw^f{=show_ui team}^fS to ^fs^fychange teams^fS" | |
| addtip "when you're ^fs^foon fire^fS you can ^fs^fcjump in water^fS to put yourself out, crouch if necessary" | |
| addtip "you're ^fs^fyless accurate^fS when ^fs^fyjumping^fS and ^fs^fymoving^fS, stop for a perfect shot" | |
| addtip "you can chat with the community and developers in ^fs^fc#blue-nebula^fS on ^fs^fcirc.libera.chat^fS" | |
| addtip "share your own tips with the developers in ^fs^fc#blue-nebula^fS on ^fs^fcirc.libera.chat^fS" | |
| addtip "tips are ^fs^fccool^fS, you should ^fs^fyread them more often^fS" | |
| ] | |
| lasttip = 0 | |
| showtip = [ | |
| if (|| [= $lasttip 0] [> (- (getmillis) $lasttip) 30000]) [ | |
| resettips | |
| curtip = $[tip@(+ (rnd $tips) 1)] | |
| lasttip = (getmillis) | |
| ] | |
| result $curtip | |
| ] | |
| curtip = (showtip) |