Plate Posted August 3, 2012 Share Posted August 3, 2012 Hola quisiera saber como hacer para restartear una variable Link to comment
Castillo Posted August 3, 2012 Share Posted August 3, 2012 La volves a definir con el valor inicial. Link to comment
Plate Posted August 3, 2012 Author Share Posted August 3, 2012 Se puede hacer para cuando un bot muera? zombiesMatados = 0 function restartear ( ) if ( isElementWithinColShape ( source, colshape ) ) then onZomieWasted = 0 end end addEventHandler( "onBotWasted",getRootElement(),restartear ) Link to comment
Castillo Posted August 3, 2012 Share Posted August 3, 2012 Queres decir esto: zombiesMatados = 0 function restartear ( ) if ( isElementWithinColShape ( source, colshape ) ) then zombiesMatados = 0 end end addEvent ( "onBotWasted", true ) addEventHandler ( "onBotWasted",getRootElement(), restartear ) Link to comment
Plate Posted August 3, 2012 Author Share Posted August 3, 2012 Hay se restartearia la variable? Link to comment
Plate Posted August 4, 2012 Author Share Posted August 4, 2012 Funciona muchas gracias solid pero tengo una duda como puedo hacer para que se destruya un blip cuando un bot muere Link to comment
Plate Posted August 4, 2012 Author Share Posted August 4, 2012 Ok muchas gracias denuevo una ultima duda como hago para que en el colshape no tenga una sola posicion z tenga todas Link to comment
Plate Posted August 4, 2012 Author Share Posted August 4, 2012 function destroyblip() destroyElement(myblip) end addEventHandler("onBotWasted",getRootElement(),destroyblip) Link to comment
Recommended Posts