Advertisement
Florenzius

bruh

Jun 8th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. #RequireContext CEditorPlugin
  2.  
  3. Text CreateManialink()
  4. {
  5. declare Integer MaxBlocksCount for ManialinkPage;
  6. declare Ident[Integer] BlockModelIds for ManialinkPage;
  7. declare Text[Integer] BlockModelNames for ManialinkPage;
  8. //Working
  9. declare MLText = """
  10. <quad posn="-138 20.5 1" sizen="9 9" bgcolor="FFFA" style="Icons64x64_1" substyle="ArrowDisabled" rot="-3"/>
  11. <quad posn="-58 24.8 1" sizen="9 9" bgcolor="FFFA" style="Icons64x64_1" substyle="ArrowNext" rot="-3"/>
  12. <label posn="-115 19 0" sizen="44 5" text="THE PERFECT MAP" rot="-3"/>
  13. <label posn="-129.5 -23 0" sizen="66 4" text="Pluginversion 0.1.1 by $069ԍτx$fff»$i$069f$ffflorǝи$069ɀ$fffιus" rot="-3" tex tsize="1"/>
  14. <label posn="-132 9 0" sizen="80 5" text="Welcome to your new mapping-coach!" rot="-3" textsize="3" autonewline="1"/>
  15. <label posn="-130 -18 0" sizen="80 5" text="Good luck and have fun! :)" rot="-3" textsize="3" autonewline="1"/><label posn ="-131 1 0" sizen="81 17" text="In this short guide you will learn some cool tricks for perfect maps. In <number> sites yo u'll get the best tricks and some example pictures and maps to test!" rot="-3" textsize="2" autonewline="1"/>
  16. <quad posn="-141 23 0" sizen="95 14" bgcolor="FFFA" style="Bgs1InRace" substyle="BgTitle3_4" rot="-3"/>
  17. <quad posn="-141 23 0" sizen="95 14" bgcolor="FFFA" style="Bgs1InRace" substyle="BgTitle3_4" rot="-3"/>
  18. <quad posn="-138.5 18 -1" sizen="90.5 78" bgcolor="FFFA" style="Bgs1InRace" substyle="BgGradTop" rot="-3"/> """;
  19. return MLText;
  20. }
  21.  
  22. main() {
  23. // Without multiples layers :
  24. ManialinkText = CreateManialink();
  25. // With
  26. declare Layer1 <=> UILayerCreate();
  27. Layer1.ManialinkPage = CreateManialink();
  28. }
  29.  
  30. //Test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement