Clients can't tell the server what to do.Only the printer can be equipped clientside, I believe.
They tell the server to give the client the Wand, Duplicator, Fill can.
Well here's the updated code:Code: [Select]if (!$addedKeys){ $remapDivision[$remapCount] = "Guns Bind"; $remapName[$remapCount] = "Use AkimboGun"; $remapCmd[$remapCount] = "UseAkimboGun"; $remapCount++; $addedKeys = true;} function useAkimboGun(%on){if(!%on){return;}commandtoserver('AkimboGunImage');} function serverCmdAkimboGun(%client) { %player = %client.player; if(isObject(%player)) { %player.updateArms("AkimboGunImage"); %player.mountImage("AkimboGunImage", 0); } }So now with that code, it should be a command./AkimboGunbut its not working, so i must have done something wrong
if (!$addedKeys){ $remapDivision[$remapCount] = "Guns Bind"; $remapName[$remapCount] = "Use AkimboGun"; $remapCmd[$remapCount] = "UseAkimboGun"; $remapCount++; $addedKeys = true;} function useAkimboGun(%on){if(!%on){return;}commandtoserver('AkimboGunImage');} function serverCmdAkimboGun(%client) { %player = %client.player; if(isObject(%player)) { %player.updateArms("AkimboGunImage"); %player.mountImage("AkimboGunImage", 0); } }