![]() |
CTP2 Bureau The Modding Knowledgebase |
|
Apolyton CTP2 forums Apolyton CTP2 archives Source Code Project SVN |
![]() |
Search the site: |
SLIC-Reference :
|
Arguments: | location, int-index, unitvar | Type: | int |
Returns true if there is a unit given by index (from 0 up to number of units in the cell -1) at the given location and stores it into unitvar |
tested
working
SFN_ERROR Slic_GetUnitFromCell::Call(SlicArgList *args) { m_result.m_int = 0; if(args->Count() != 3) { return SFN_ERROR_NUM_ARGS; } MapPoint pos; if(!args->GetPos(0, pos)) return SFN_ERROR_TYPE_ARGS; sint32 index; if(!args->GetInt(1, index)) return SFN_ERROR_TYPE_ARGS; if(args->m_argValue[2].m_type != SA_TYPE_INT_VAR) { return SFN_ERROR_TYPE_ARGS; } Cell *cell = g_theWorld->GetCell(pos); if(index < 0 || index >= cell->GetNumUnits()) { return SFN_ERROR_OUT_OF_RANGE; } SlicSymbolData *sym = args->m_argValue[2].m_symbol; sym->SetUnit(cell->AccessUnit(index)); m_result.m_int = 1; return SFN_ERROR_OK; } |
Using this form you may add your own observations concerning the above item, e.g. additional hints for usage, limitations, oddities etc. Please note this is not the place for asking questions or carrying out discussions about modding - please refer to the Apolyton CTP2 Modification Forum on that purpose.
*) Required fields
![]() |
This site is currently maintained by: BureauBert (Webmaster) Maquiladora (Manager) Legal Notice: Legal Notice Statistics: 102503 unique users since 02.05.2004 (» Site Statistics) Hosted by: WebhostOne |