I was wondering how do i add 3 different colour aura during the same time.
which mean there will be Red, Blue, Green during the same time, it depends
PHP Code:
static Float:originF[3]
pev(id, pev_origin, originF)
engfunc(EngFunc_MessageBegin, MSG_PVS, SVC_TEMPENTITY, originF, 0)
write_byte(TE_DLIGHT) // TE id
engfunc(EngFunc_WriteCoord, originF[0]) // x
engfunc(EngFunc_WriteCoord, originF[1]) // y
engfunc(EngFunc_WriteCoord, originF[2]) // z
write_byte(50) // radius
write_byte(0) // r
write_byte(225) // g
write_byte(0) // b
write_byte(2) // life
write_byte(0) // decay rate
message_end()
If i change those colour like this:
PHP Code:
write_byte(225) // r
write_byte(225) // g
write_byte(255) // b
it will mix the colour so it will be white for this case.
so now the question is how do i prevent the colour from mixing ?
__________________