• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

Nes DDS vs Bribe DDS. Question on installation of Nes DDS

Status
Not open for further replies.
Level 7
Joined
Feb 9, 2021
Messages
301
I just wanted to ask what can you do with Nes DDS compared to Bribe DDS? (I build for 1.26).

Also, I tried to install Nes DDS, and I get an error after installing his Init library...

1620039821538.png




JASS:
library Init /* v1.0.0.0
************************************************************************************
*
*    module Init
*
*        interface private static method init takes nothing returns nothing
*            -    Runs at map init
*
*************************************************************************************
*
*    module InitTimer
*
*        interface private static method init takes nothing returns nothing
*            -    Runs after a one-shot timer with a period of 0
*
************************************************************************************/
    module Init
        static if thistype.init.exists then
            private static method onInit takes nothing returns nothing
                call init()
            endmethod
        endif
    endmodule
   
    module InitTimer
        static if thistype.init.exists then
            private static method initex takes nothing returns nothing
                call DestroyTimer(GetExpiredTimer())
                call init()
            endmethod
            private static method onInit takes nothing returns nothing
                call TimerStart(CreateTimer(), 0, false, function thistype.initex)
            endmethod
        endif
    endmodule
endlibrary
 
Last edited:
Status
Not open for further replies.
Top