Recent content by Time

  1. T

    Diffrence between Rad2Deg() and bj_RADTODEG?

    Ah, I see lol @ speed freaks.
  2. T

    Diffrence between Rad2Deg() and bj_RADTODEG?

    Rad2Deg() or bj_RADTODEG Is one faster or something? If one is faster which one would that be?
  3. T

    Having this null will leak?

    Does this leak if I keep it as null? If it does how would I remove the leak... Kinda confuse. call TriggerRegisterPlayerUnitEvent(gg_trg_Point, Player(i), EVENT_PLAYER_UNIT_ISSUED_POINT_ORDER, null) and this one to.. call TriggerRegisterUnitInRange(gg_trg_Collision, u, 80.00, null)
  4. T

    DisplayText Desync?

    Thanks again your always giving the answer I'm looking for.
  5. T

    DisplayText Desync?

    function DisplayTextToForce takes force toForce, string message returns nothing if (IsPlayerInForce(GetLocalPlayer(), toForce)) then // Use only local code (no net traffic) within this block to avoid desyncs. call DisplayTextToPlayer(GetLocalPlayer(), 0, 0, message)...
  6. T

    Timer String leak how do I remove the leak?

    Well that sucks.. Is the leak anything serious? Don't wanna end up removing the timer but if it is serious then I will remove it.
  7. T

    Timer String leak how do I remove the leak?

    No idea how to remove the string leak... Can anyone help? Or is their any other way to show the timer in the Multiboard with out using strings?
  8. T

    Multiboard help

    Well I fixed it... it was was the size, rows and cols set wrong and no I did not need a system for such a simple Multiboard. Bleh next time you try helping don't suggest a system if the trigger is simple.. Thanks for the help PurgeandFire.
  9. T

    Multiboard help

    bleh knew someone was gonna suggest a system.. don't really wanna use a system then i have to learn how to use it.. already having trouble as it is..
  10. T

    Multiboard help

    Nope still the same. Continues and time dosen't show up. But yea has to be something with the Item.
  11. T

    Multiboard help

    Fixed the problem. No longer need help no one really actually help besides Purge... +rep Purge
  12. T

    GetPlayerId(p) Why do sometimees do i have to add +1 to work?

    The thing is im trying to stay away from gui.. thats why always use this local player p = GetTriggerPlayer() local integer i = GetPlayerId(p)+1
  13. T

    GetPlayerId(p) Why do sometimees do i have to add +1 to work?

    I was wondering why do I have to add +1 next to GetPlayerId(p) to work? Can you tell me so I'll know when to put the +1..
  14. T

    TimerUtils Help

    So it works like this to right? function Trig_Hours takes nothing returns nothing call Hours() endfunction function InitTrig_Hours takes nothing returns nothing local timer t=NewTimer() set timers[1] = t call TimerStart(t, 3600, true, function Trig_Hours) set t =...
  15. T

    TimerUtils Help

    Alright mind showing me how to use the realsetimer() with an example? I learn better by looking at the trigger itself. Make sure its variable like you explain. thanks and yes im still learning the basics of jass..
Top