Advertisement
bcup

icandoanything.csx

Nov 13th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. // I can do anything...?
  2. // Really dumb mod by Bananacup
  3. // Turns Jevil's carousel attack into the unused Susie sprite.
  4.  
  5. EnsureDataLoaded();
  6.  
  7. var code = Data.GameObjects.ByName("obj_carouselbullet").EventHandlerFor(EventType.Draw, Data.Strings, Data.Code, Data.CodeLocals);
  8. code.Append(Assembler.Assemble(@"
  9. push.i 79
  10. conv.i.v
  11. pop.v self.sprite_index
  12. call.i draw_self(argc=0)
  13. popz.v
  14.  
  15. ", Data.Functions, Data.Variables, Data.Strings));
  16.  
  17. ChangeSelection(code);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement