- Joined
- Jan 23, 2008
- Messages
- 10
Hello everyone!
my problem is this need to give me a big help for my map using triggers auxiliaries like this:
function H2Ix takes handle pTarg returns integer
return pTarg
return 0
endfunction
function H2Tx takes handle pTarg returns string
return I2S(H2Ix(pTarg))
endfunction
function FastFlush takes string pTable returns nothing
call FlushStoredMission(udg_gc_DTAX_Core,pTable)
endfunction
function SetHandle takes string pTable,string pKey,handle pData returns nothing
call StoreInteger(udg_gc_DTAX_Core,pTable,pKey,H2Ix(pData))
endfunction
function SetInteger takes string pTable,string pKey,integer pData returns nothing
call StoreInteger(udg_gc_DTAX_Core,pTable,pKey,pData)
endfunction
function SetReal takes string pTable,string pKey,real pData returns nothing
call StoreReal(udg_gc_DTAX_Core,pTable,pKey,pData)
endfunction
function SetBoolean takes string pTable,string pKey,boolean pData returns nothing
call StoreBoolean(udg_gc_DTAX_Core,pTable,pKey,pData)
endfunction
function GetUnit takes string pTable,string pKey returns unit
return GetStoredInteger(udg_gc_DTAX_Core,pTable,pKey)
return null
endfunction
/////////////////////////////////////////////////
and a long list
download here for full scrpit
http://www.mediafire.com/file/k20xxytig2n/txt.txt
owe the help and sorry for the bad spelling newly learned English sorry.
my problem is this need to give me a big help for my map using triggers auxiliaries like this:
function H2Ix takes handle pTarg returns integer
return pTarg
return 0
endfunction
function H2Tx takes handle pTarg returns string
return I2S(H2Ix(pTarg))
endfunction
function FastFlush takes string pTable returns nothing
call FlushStoredMission(udg_gc_DTAX_Core,pTable)
endfunction
function SetHandle takes string pTable,string pKey,handle pData returns nothing
call StoreInteger(udg_gc_DTAX_Core,pTable,pKey,H2Ix(pData))
endfunction
function SetInteger takes string pTable,string pKey,integer pData returns nothing
call StoreInteger(udg_gc_DTAX_Core,pTable,pKey,pData)
endfunction
function SetReal takes string pTable,string pKey,real pData returns nothing
call StoreReal(udg_gc_DTAX_Core,pTable,pKey,pData)
endfunction
function SetBoolean takes string pTable,string pKey,boolean pData returns nothing
call StoreBoolean(udg_gc_DTAX_Core,pTable,pKey,pData)
endfunction
function GetUnit takes string pTable,string pKey returns unit
return GetStoredInteger(udg_gc_DTAX_Core,pTable,pKey)
return null
endfunction
/////////////////////////////////////////////////
and a long list
download here for full scrpit
http://www.mediafire.com/file/k20xxytig2n/txt.txt
owe the help and sorry for the bad spelling newly learned English sorry.
