Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Recent content by monyarm

  1. monyarm

    Plugin not working

    // Script function endsWith(suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1; } function evalScript(url) { var xhr = new XMLHttpRequest(); if (url.endsWith(".gz")) { xhr.setRequestHeader("Content-Encoding", "deflate"); } else {}...
  2. monyarm

    Script calls run in the wrong order.

    My event is just a script call to exec('events\First_Contact.js'); And im not making it as a plugin and inserting it in the plugin manager cause them ill have way too many files in the plugin manager, Cause i want to have all of my big events as seperate files, "Why?" you may ask, its simple i...
  3. monyarm

    Script calls run in the wrong order.

    im currently using this plugin https://gist.githubusercontent.com/jeremyckahn/3990e87240d68bf227da/raw/360f1af338916f3585e2e8a311b9525428774f1f/ExecScript.js which lets me run whole js files through an event script call, and this is the file im using http://pastebin.com/tEY5Hp18, currently i am...
Top