ole1986 / a3-admintoolkit

AdminToolkit for Arma 3 (ATK) - Extensions, Moderators, Godmode, Vehicle, global chat
http://www.exilemod.com/topic/7690-admintoolkit-for-arma-3-v222-exile-edition
35 stars 13 forks source link

repeat button/f5 not work correctly #22

Closed Warsheep-GER closed 8 years ago

Warsheep-GER commented 8 years ago

example case1: i spawn a vehicle for me (getvehicle/ exile_getvehicle) repaired the vehicle (exile_repvehicle) need to repair it again hit f5(click the repeat button) but its spawn a new vehicle .

think its case of ext commands variable ( exile_getvehicle is working bec [AdminToolkit_Action] call AdminToolkit_doAction; exile_repvehicle isnt working bec [player, 'exile_repvehicle', cursorObject] remoteExecCall ['AdminToolkit_network_receiveRequest', 2];

with the standard commands i dosnt found a case, ( getitems ,message ec)

and the hotkey f5 dosnt work anytime

ole1986 commented 8 years ago

Using the remoteexec isn't a good solution at all. For example Battleye need additional restrictions for any remoteexec being called on different places.

So my recommendation is to replace it with the usual AdminToolkit_doAction call... This would solve the BE restriction as well as the repeat function..

Are you motivated to fix this issue the way I suggested?

Warsheep-GER commented 8 years ago

sure will overwork this with AdminToolkit_doAction

ole1986 commented 8 years ago

how is it going with this issue?