I'm sorry for bother you , but what are these #define macro values , are there real values because there are not used in Race functions with like real values. For Example
PHP Code:
#define TASK_LIGHTNING 960
// Initial Ultimate call
public OR_ULT_ChainLightning( iCaster, iTarget, iBodyPart )
{
// Display the lightning effect
OR_ULT_ChainEffect( iCaster, iTarget, CHAINLIGHTNING_LINEWIDTH, CHAINLIGHTNING_DAMAGE, iBodyPart );
// Now we need to search for the next "jump"
new parm[5];
parm[0] = iTarget;
parm[1] = CHAINLIGHTNING_DAMAGE;
parm[2] = CHAINLIGHTNING_LINEWIDTH;
parm[3] = iCaster;
parm[4] = iBodyPart;
set_task( 0.2, "_OR_ULT_ChainLightning", TASK_LIGHTNING + iTarget, parm, 5 );
Could you explain the TASK_LIGHTNING which is #define value of 960 .