Code: Select all
//under globals
trigger tfai=CreateTrigger()
real FaiTime=60
//under endglobals
function displayFaiText takes nothing returns nothing
call DisplayTimedTextToForce(bj_FORCE_ALL_PLAYERS,20,"You Are Gay!")
endfunction
//under function main, after locals
call TriggerAddAction(tfai,function displayFaiText)
call TriggerRegisterTimerEvent(tfai,FaiTime,true)
FaiTime is 60. Which means the text will appear every 60 seconds. Edit it to your timer if you want to.
"you are gay" is the text message.
number 20 before the text message is the duration for the text on the screen(how long the text will last)
good luck have fun.