18.01.2017, 10:29
A dialog is a kind of asynchronous event; it doesn't block code that comes after it. So what you likely should should do is, if it is the first report, store the params in a variable. A PVar is a good choice for this because it'll only be used once. Then in OnDialogResponse, if they click Yes, fetch those params and execute the command again for that player with those params. Making sure that you alter the variable that stores whether it's the first report otherwise you'll get stuck in a loop.