You'll need to trigger the cutin display when interacting with the NPC. by using the onNPCTalk or onNPCTouch event handlers within the NPC script. These handlers will execute your custom script defined for the cutin. Here is the approach:
// Define your cutin graphic
script MyCutin {
// Specify image filename, position (x,y), and size (width,height)
image "..." x "..." y "..." w "..." h "...";
}
// NPC Script
script MyNPC {
... // Other NPC definitions
// Trigger cutin display on NPC interaction
onNPCTalk:
MyCutin; // Call the cutin script
... // Continue NPC interaction logic
}
// In your main script
showwindow {
// Define window properties (size, position, background)
button "..." { /* NPC interaction button */ };
}