Original Source
- Original title: Game_Interpreter line 1411 error from a common event
- Original author: lord_steak
- Original date: September 13, 2014
- Source thread: https://forums.rpgmakerweb.com/threads/game_interpreter-line-1411-error-from-a-common-event.32006/
- Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSSx Script Support
Summary
A bit thrown by this one, 'specially since the exact same lines worked peach-keen in a parallel process common event. I'm setting up save points, and that a bedroll or tent must be used either there or on the overworld map. The trouble comes when the item permissions when approaching or stepping on the save point. Maybe what I've punched up would be helpful in diagnosing what the crap went awry. Having it recognize map types is going without a hitch, using this script (my apologies for the lack comments)....
Archived First Post
I'm setting up save points, and that a bedroll or tent must be used either there or on the overworld map. The trouble comes when the item permissions when approaching or stepping on the save point.
Maybe what I've punched up would be helpful in diagnosing what the crap went awry. Having it recognize map types is going without a hitch, using this script (my apologies for the lack comments).
alias steak_wants_map_types_declared setup
def setup(map_id)
steak_wants_map_types_declared(map_id)
$tell_steak_about_the_map = ["nope", "nothing"]
@map.note[/<(Overworld|Level|Dungeon|SaveRoom|Cutscene), (Safe|Unsafe)>/]
$tell_steak_about_the_map[0] = $1
$tell_steak_about_the_map[1] = $2
end
end
$game_items[33].occasion = 3
$game_items[34].occasion = 3
And this on the save point itself, so that they could be:
$game_items[33].occasion = 2
$game_items[34].occasion = 2
EDIT: I should specify, both sets of lines were set in common events, that were called for by a step-on triggered event.
And while these lines were there, it threw me this error.
Downloads / Referenced Files
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadReferenced Images / Attachments
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
Topic Summary
Loading summary...

