I can't use DisableHotspot(1); in dialog
It's normal ?
How can i do ?
Are you asking how to turn a hotspot off during a conversation? If so, you need to use the run-script option in the dialog, so the dialog script should look something like:
@S // dialog startup entry point
return
@1 // option 1
EGO: I'll just take that away.
run-script 1
stop
Or whatever option/character you use. Then you need to make sure the Global Script contains:
function dialog_request(int value) {
if (value == 1) {
DisableHotspot(1);
}
}
Hope this helps.
thanks a lot :D