• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Code tag css

Status
Not open for further replies.

Chaosy

Tutorial Reviewer
Level 41
Joined
Jun 9, 2011
Messages
13,241
It is possible this is just me, but I HATE the new code color usage. Genuinely unreadable.

vJASS:
set dum = CreateUnit(GetOwningPlayer(source), OrbDummy_ID, GetUnitX(source)-50, GetUnitY(source), 0.00)
call UnitAddAbility(dum,MostSpeed_ID)
call UnitApplyTimedLife(dum, 'BTLF', 1)
call SetUnitPosition(dum,GetUnitX(targ)-50, GetUnitY(targ)-0.1)
set ang = Atan2(GetUnitY(targ)-GetUnitY(dum),GetUnitX(targ)-GetUnitX(dum))*bj_RADTODEG
call IssueTargetOrder(dum,"attack",targ)
call SetUnitFacingTimed(dum,ang,1)
set dum = null

Specifically the blue color used for functions and the pink hurts my eyes.
 
Status
Not open for further replies.
Top