User Tools

Site Tools


crpl:docs:self

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
crpl:docs:self [2013/01/14 18:59] – created chanicrpl:docs:self [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-TODO+ 
 +<- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#unit_commands|Unit Commands]] 
 +=====  Self  ===== 
 + 
 +^Arguments^Result^Notation^ 
 +| |Unit UID for current unit | '' -- i1''
 + 
 + 
 +=== Description === 
 +Pushes the unique unit ID (an int) for the current unit to the stack. 
 +=== Examples === 
 +Trace current unit's ID 
 +<code>Self Trace</code> 
 +If the unit's ammo is full, destroy it 
 +<code> 
 +Self CONST_AMMO GetUnitAttribute ->ammo 
 +Self CONST_MAXAMMO GetUnitAttribute ->maxAmmo 
 + 
 +<-ammo <-maxAmmo gte if 
 +    Self CONST_DESTROYMODE GetUnitAttribute ->destroyMode 
 +     
 +    Self <-destroyMode Destroy 
 +endif 
 +</code> 
 +Creates a unit then tells it its creator's UID in the "myCreator" variable 
 +<code> 
 +"CRPLCORE" CurrentCoords CreateUnit ->unit 
 +<-unit "doThings.crpl" AddScriptToUnit 
 +<-unit "doThings.crpl" "myCreator" Self SetScriptVar 
 +</code> 
crpl/docs/self.1358189999.txt.gz · Last modified: 2025/02/14 14:56 (external edit)