То есть мне надо делать так
Function ApplyChild(child)
Local name$=Lower(EntityName(child))
If Instr(name$,"startplaer")>0 Then
filein = ReadFile("startpaer.dat")
x# = ReadFloat( filein )
y# = ReadFloat( filein )
z#= ReadFloat( filein )
PositionEntity plaer,x#,y#,z#
CloseFile( filein )
EndIf
If Instr(name$,"shield")>0 Then
; ставим броню в месте этого чилда
EndIf
If Instr(name$,"enemy")>0 Then
; ставим врага в месте этого чилда
EndIf
End Function