RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
(RMVXA) How I called script?

0 Members and 1 Guest are viewing this topic.

*
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
Rep:
Level 96
&&&&&&&&&&&&&&&&&&&&&&&&&&&
GIAW 14: 2nd Place (Hard Mode)2013 Zero to Hero2013 Biggest Drama WhoreParticipant - GIAW 11Secret Santa 2013 ParticipantFor taking arms in the name of your breakfast.
How do I make something have the ability to be summoned by a call script event?

I feel like such a noob babby asking all these questions, sorry.  ;9
&&&&&&&&&&&&&&&&

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Veteran2011 Favourite Staff Member2011 Most Mature Member2011 Best RPG Maker User (Scripting)2011 Best Use of Avatar and Signature Space2010 Most Mature Member2010 Favourite Staff Member
It depends on what you're calling. If you are trying to go to a new scene, then you could use this:

Code: [Select]
    SceneManager.call(Scene_Menu)

Replace Scene_Menu with the name of the scene you are calling.

If you want to do something else (or even if you want to do that but need to do some other things first), then you just do it. Notably, however, the context for anything you are doing is the Game_Interpreter class. Thus, if you want to do something particular, or complicated, you could do it as a method of that class.

If what you are looking to do is just create a window, then the window should ultimately be located within the Scene_Map class. So, you should make a method in that class doing it, and then you can call it with something like:

Code: [Select]
$scene.method

Where method is the name of the method you created.

*
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
Rep:
Level 96
&&&&&&&&&&&&&&&&&&&&&&&&&&&
GIAW 14: 2nd Place (Hard Mode)2013 Zero to Hero2013 Biggest Drama WhoreParticipant - GIAW 11Secret Santa 2013 ParticipantFor taking arms in the name of your breakfast.
Thank you Mr. Algebra.
« Last Edit: June 18, 2013, 07:03:42 AM by Lord Stark »
&&&&&&&&&&&&&&&&