1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | OnPCLoadMapEvent: deltimer strcharinfo(0)+"::OnEvent"; Loop: if(!agitcheck() && !agitcheck2()) end; if(#TimeWoe > 180) end; for(.@i = 0; .@i < getarraysize(.maps$); .@i++){ if(strcharinfo(3) == .maps$[.@i]){ dispbottom "Your Points: " + #TimeWoe; addtimer (1 * 10 * 1000), strnpcinfo(0)+"::OnEvent"; } } end; OnEvent: set #TimeWoe, #TimeWoe + 1; goto Loop; end; } |