Guest User

Untitled

a guest
Oct 15th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. # Everything automatically extends root.
  2.  
  3. [root]
  4. int version=1.0
  5. int extini_ver=0.01
  6. string name="random program that uses extini"
  7.  
  8. # New node
  9. [characters]
  10. #Just a placeholder for character nodes to extend it.
  11. int x=0
  12. int y=0
  13.  
  14. [player]
  15. !inherit characters
  16. # Make this an extension of characters.
  17. !extend characters
  18. # Change the x value for this player to 500
  19. int x=500
  20. name ="MiningMarsh"
  21.  
  22. [enemy]
  23. !inherit characters
  24. # Make this an extension of characters.
  25. !extend characters
  26. # Change the y value for this player to 400
  27. int y=400
  28. name ="Grue"
  29.  
  30. # Change some of the character settings
  31. [characters]
  32. # Set players to everything that extends this node. At this point, player and enemy extend this node.
  33. array node players=this.extended
  34. node main_character=this.player
Add Comment
Please, Sign In to add comment