Color code for wood.

Carnerox

The one and only.
Reaction score
84
Any one know the color code for wood, like when you pick up a bundle of lumber or return lumber to your base?
 

Sevion

The DIY Ninja
Reaction score
413
It is in EGUI.

If you don't like using EGUI, the color code is: 00C850

This is the function EGUI:

JASS:
function CreateTextTagLumber takes string s, location loc returns texttag
    local texttag t = CreateTextTag()
   
    call SetTextTagText(t, s, 0.023)
    call SetTextTagPos(t, GetLocationX(loc), GetLocationY(loc), 0)
    call SetTextTagColor(t, 0, 200, 80, 255)
    call SetTextTagVelocity(t, 0, 0.036)
    call SetTextTagPermanent(t, false)
    call SetTextTagLifespan(t, 3.00)
    call SetTextTagFadepoint(t, 2.00)
   
    return t
endfunction


And I just realized that it leaks....
 
General chit-chat
Help Users

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top