EngineLoadIFP

From Multi Theft Auto: Wiki
Revision as of 12:24, 10 December 2010 by Luk-ry (talk | contribs) (→‎Example)
Jump to navigation Jump to search

This function loads an animation library (IFP) file into GTA.

  • This function does not replace animations yet, you can only use the animations that are inside the IFP with setPedAnimation.
  • To use this correctly, you need to use an IFP file with new animation blocks with different names than existing ones.


This is a client side function. Be sure to transfer your IFP file by including it in the meta file.

Syntax

ifp engineLoadIFP ( string ifp_file ) 

Required Arguments

  • ifp_file: The filepath to the IFP file you want to load

Returns

Returns an IFP element if the IFP file loaded, false otherwise.

Example

animation.lua

function setanimation()
engineLoadIFP("data/ani.ifp")
setPedAnimation(getLocalPlayer(), "ANIMATIONBLOCK", "animation1")
end

addCommandHandler("animation", setanimation)

meta.xml

<info author="lukry" version="1.0" type="script" />
<script src="animation/animation.lua" />
<file src="animation/data/ani.ifp" />

See Also