[RGSS] Throw System
Explanation
Player can pick and throw objects
All event can be picked if <ThrowX> is included in the event name while X is the power of your throw
To use it you need two images for your character with the suffix _PICK and _TRW
Example Image
Thank you for your script. I'd love to have it in my game. But the error message keeps popping out, saying there's a TypeError in line 268: "Klass is not a class". Could you offer a demo so I might know what went wrong in my case?
ReplyDeleteThanks in advance.
P.S. I haven't used any version of Blizz ABS. No SDK either.
Redownload the script or replace
DeleteKlass = $BlizzABS ? BlizzABS::Controller : Game_Player < Game_Character
into
Klass = $BlizzABS ? BlizzABS::Controller : Game_Player
I've redownloaded the script, but a similar error (NoMethodError) occurs in line 378 again, saying "undefined method `*' for nil:NilClass".
DeleteRedownload the script or replace
Delete@carry_time = event.carrytime * 40
into
@carry_time = (event.carrytime || 0) * 40