Rpg Maker Vx Abs Script

Posted on by

RPG Maker VX Ace. All Discussions. So I copied the ABS event over onto the level with no ABS and it broke that also, so I knew the issue was that ABS script.

Rpg Maker Vx Abs ScriptRpg Maker Vx Abs Script

I forgot to add to the title but this is for VX. Hey everybody recently my ABS has been causing me a slight issue, but I think there's a way around it. You see, my enemies are evented, and I'm trying to do a thing where the enemy walks on a custom route, and if he sees you he uses a skill which raises the alarms SFX and all that jazz at this point he's supposed to start a random move route and load a new 'enemy' which is basically just a new skillset. Long story short, the event page obviously flips - the npc walks randomly, however the new skillset does not load. I've found using this script command will in fact make the skillset load: $game_map.setup($game_map.map_id)$game_player.moveto($game_player.x,$game_player.y)$scene = Scene_Map.newThe problem then arises that the sprite moves back to it's initial place on the map, which looks stupid as heck.

I want to retain it's position with something like: $game_map.events[evID].moveto(x, y) Where x and y would be determined by variables:s I only have a couple maps where I need to do this, and never more than 3 events per map so I need to be able to target them by ID as well - I got that little bit above from an XP forum so I dunno if it even works. Regardless I need it to check for variables rather than put it in set coordinates. I think you are going about it the wrong way. Find out WHY the new skillset does not load when you switch event pages, and fix THAT problem. Reloading the whole map is overkill and, as you've found, introduces other problems. Why spend time solving problems caused by a workaround instead of solving the REAL problem itself?

Notorious Big Life After Death Rar. What IS a 'new skillset'? How have you implemented it? How does he use a skill?

Events are not enemies. Events don't have skills. It's all about your ABS and how you're handling the transition. You might just need a simple script call to refresh the event rather than the entire map. I think you are going about it the wrong way.

Organic Chemistry By Janice Smith Pdf. Find out WHY the new skillset does not load when you switch event pages, and fix THAT problem. Reloading the whole map is overkill and, as you've found, introduces other problems. Why spend time solving problems caused by a workaround instead of solving the REAL problem itself?

What IS a 'new skillset'? How have you implemented it? How does he use a skill?

Events are not enemies. Songs Zip File Hindi there. Events don't have skills. It's all about your ABS and how you're handling the transition. You might just need a simple script call to refresh the event rather than the entire map. Click to expand.Ah but see - if I try to treat the ailment directly it would bring about WAY more work and probably exceedingly so beyond my capabilities. I use Vlad's Requiem ABS - or to say the least, a heavily modified version of it. Enemies are determined by a Comment 'Enemy 46'.

Then please provide a link to the script (if you've heavily modified it, load it up to dropbox or pastebin and give us a link there), along with screenshots of your event with all the things we need to see to try and follow what it's doing. Or create a very small, basic project that uses that script and has one enemy, to show this happening, and put it online somewhere so we can download. I stand by my 'refreshing the whole map is just a bad idea' comment Did you try doing $game_map.events[id].refresh? That should clear the comments from the previous page and load the ones for the new page. Then please provide a link to the script (if you've heavily modified it, load it up to dropbox or pastebin and give us a link there), along with screenshots of your event with all the things we need to see to try and follow what it's doing. Or create a very small, basic project that uses that script and has one enemy, to show this happening, and put it online somewhere so we can download. I stand by my 'refreshing the whole map is just a bad idea' comment Did you try doing $game_map.events[id].refresh?

That should clear the comments from the previous page and load the ones for the new page. Revival, please avoid double posting, as it is against the forum rules. You can review our forum rules. And please don't quote yourself just for the purpose of adding a new comment. Just edit your post instead.

Click to expand.ULTIMATE EDIT OF IRONY. I don't know if it was the blessing of the gods smiling upon me, or if you knew or remembered. But Shaz, you made my solution.

It was an Ace script but I hazarded my chances and found out it works for VX. Ultimately it took $game_map.events[14].save_pos()$game_map.setup($game_map.map_id) $game_player.moveto($game_player.x, $game_player.y) $scene = Scene_Map.new But dayum, it's functional and it's amazing. I get my slight frame skip from the scene_map.new but that's a small price to pay for having my game functional again.

Comments are closed.