Advertisement
Dettolsoap

Transformice defilante guide.

Jun 8th, 2013
1,129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. For everyone who was wondering how to make your map extremely long, or auto scrolling. Or even better how to add items. Here's a short tutorial.
  2.  
  3. Step 1
  4.  
  5. load the xml of your map in any editor (i use notepad)
  6. find <P /> and add this between it: defilante="speed,acceleration"
  7.  
  8. Result will look like this:
  9. <P defilante="10,4" />
  10. Your map will now auto scroll to the right. (to make it static use defilante="0,0")
  11.  
  12. Step 2
  13.  
  14. Make your map longer!
  15. <P defilante="10,4" L="4800" />
  16. 4800 is the maximum length
  17.  
  18. Step 3
  19.  
  20. Things will change when your map has defilante:
  21.  
  22. Runes will become boosters
  23. Balls will become +1 coins
  24. Left rotating blue anchors will become trampolines
  25. Right rotating blue anchors will become skulls
  26.  
  27. New: Step 4
  28.  
  29. You can add new options for the map. There are 2 new options.
  30. Max speed, and Free scroll.
  31.  
  32. The max speed can be used in combination with the acceleration and is the 3rd part of defilante:
  33. <P defilante="10,4,30" L="4800" />
  34. The start speed of the scrolling will be 10, it will accelerate with '4' and will stop accelerating when the speed is 30.
  35.  
  36. Another new tag is Free Scroll.
  37. If you get too far ahead, outside the right screen border, you will die. Now, you can add Free Scroll to defilante.
  38. This is how you do it
  39. <P defilante="10,4,30,1" L="4800" />
  40. Free scroll is either 1 (if enabled) or 0 (if disabled)
  41.  
  42. Summary
  43.  
  44. <P defilante="begin speed, acceleration, max speed, free scroll" L="higher than 800, lower than 4800" />
  45.  
  46. To create a scrolling map with length 3000 and with the boosters and other coins, you need to do this:
  47. <P defilante="-1,-1,-1,1" L="3000" />
  48.  
  49.  
  50. The codes for xml are 6, 15, 16, 32 (C="6") but you don't have to edit the xml :)
  51.  
  52. This is all you need to know for now, good luck with the mapping!
  53. Note: The cheese item is useless. You will gain neither hearts nor cheese from it
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement