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!

Search results

  1. eivl

    Good luck :)

    Good luck :)
  2. eivl

    you can not, you have to have the highest drawn last.... well.. damn... back to the drawing board.

    you can not, you have to have the highest drawn last.... well.. damn... back to the drawing board.
  3. eivl

    Input Mapping and Calling Common Events

    Missed this part of the question. Y is mapped to a keycode on the keyboard. your shootButton should just use the keycode instead and you are set. if(Input.keyTriggered(Input.shootButton)){ $gameTemp.reserveCommonEvent(1); //shootButton will call common event 1
  4. eivl

    Keyboard plugin

    keyboard only have these tree states, if you want to have a toggle you must make a switch for it when you open your map. and when you press the key again it will turn of the map and reset the switch. Make a thread on the support forum if you need more help ;)
  5. eivl

    How do i change in what order already drawn sprites are shown?

    How do i change in what order already drawn sprites are shown?
  6. eivl

    What parameters to enter for this pixel collision script?

    I was thinking about writing a event collision plugin.. let me look at this and see what it does.
  7. eivl

    Follower Control

    that is build into the game, no need to use plugins for that.
  8. eivl

    Input Mapping and Calling Common Events

    That is no problem, you just call $gameTemp.reserveCommonEvent(n);
  9. eivl

    Working on a NPC relationship system

    ok, that is just fine, make sure you have code checking on or if not just check it on http://jshint.com/ only error in your code was in the JSON file and where you used == instead of = Luckily JS is not a strict language, so missing semi colons are not that big a deal, myself i do not fix...
  10. eivl

    You can ask anything in MV Support, i would be glad to help you with anything ;)

    You can ask anything in MV Support, i would be glad to help you with anything ;)
  11. eivl

    Working on a NPC relationship system

    What IDE do you use for writing code?
  12. eivl

    Do you want to make a game or do you want to learn the software? I have been using RPG Maker for...

    Do you want to make a game or do you want to learn the software? I have been using RPG Maker for many hours, but have not made anything yet. I enjoy other aspects of the software then making games. So, what do you want to do?
  13. eivl

    Working on a NPC relationship system

    [ [Unknown, Known], { "id": 1, "face": People1, 2, "name": "Beverly", "cat": 0, "current_status": "none", "desc": "Beverly is outgoing and fun to be around", "levelvar": 100, "eventid": 17, "likes":[ ["item"...
  14. eivl

    JSON Syntax

    JSON Syntax Rules JSON syntax is derived from JavaScript object notation syntax: Data is in name/value pairs Data is separated by commas Curly braces hold objects Square brackets hold arrays JSON Data - A Name and a Value JSON data is written as name/value pairs. A name/value pair consists...
  15. eivl

    Keyboard plugin

    Sure thing, i was just looking at Window_TextInput to figure out how it works, and reading your script i must say you did some really smart things when you removed the image. I did not know that the input field was so closely tied up the the actor. Solving the keyboard typing would most likely...
  16. eivl

    Plugin Change armor and stuff

    most likely because it changes the core of the game how sprites are drawn on screen and that is not easily done over night ;)
  17. eivl

    Keyboard plugin

    Thanks, i did follow this a while back but then nothing was working! =) Do you have any more plans for this?
  18. eivl

    Plugin Port Request: Batch Event Collision and Collision Checking

    When i need break from writing my armor system i will make this for you ;)
  19. eivl

    To Function or Not To Function

    I can talk for hours about this, i am glad it was clear.
  20. eivl

    Plugin Port Request: Batch Event Collision and Collision Checking

    and by touching you mean overlapping or on the next tile? what about the player?
Top