Open main menu

UESPWiki β

Morrowind Mod talk:Scripting for Dummies

Important thing about optimizing scripts is missing in MWSfD. Let's say we have 2 scripts:

  Begin script1
  short done
  if ( done == 0 )
     ; lots of lines of code
     set done to 1
  endif
  end   
  Begin script2
  short done
  if ( done == 1 )
     return
  endif
  ; lots of lines of code
  set done to 1
  end

For some reason script2 takes less CPU time than script1. Can I just add this info to MWSfD page? Or Should I create another page? --Qqqbbb 22 September 2015

  • I think that that all pages in the wiki can be edited, even the guides that were copied, like MWSFD. This is a normal practice in other wikis, too. --Wretched fetcher (talk) 21:40, 22 September 2015 (UTC)
  • How did you verify this, I wonder? Curiosity aside, it could be the case, but are you certain - I haven't heard mention of this before. And yeah, no problem with improving copied resources if it can be done, that's probably the point of having them in article format. --Golken (talk) 07:01, 24 September 2015 (UTC)

Fixed LinkEdit

I think they intended to reference the Morrowind main page. Kalevala (talk) 12:53, 10 April 2021 (UTC)

Return to "Scripting for Dummies" page.