1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
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{=showgui help}^fS to open the ^fs^fyhelp menu^fS at any time"
addtip "press ^fs^fw^f{=showgui 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{=showgui profile 2}^fS to change your ^fs^fyloadout weapons^fS"
addtip "press ^fs^fw^f{=showgui 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#redeclipse^fS on ^fs^fcirc.freenode.net^fS"
addtip "share your own tips with the developers in ^fs^fc#redeclipse^fS on ^fs^fcirc.freenode.net^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)
|