import "std.zh" //Disable this if you already have imported std.zh. import "std_extra.zh" //Import stdExtra.zh to make the FFC script work. (Disable if you already have this.) import "ffcscript.zh" //Import ffcscript.zh to make FFC functions work. (Disable if you already have this.) //////////////////// /// Delay Item //// //////////////////////////////////////////////////////////////////////////////////////////// /// This creates a time interval between when Link uses a specific item, and when he can // /// use that item again. Set this to the active script slot for the item to delay. // //////////////////////////////////////////////////////////////////////////////////////////// // D0: Time in frames before Link can use weapon again. // //////////////////////////////////////////////////////////////////////////////////////////// item script DelayItem{ void run(int NOUSE){ Link->ItemJinx = NOUSE; } }