Get Put and Drop made easy

... A place to ask for help on any topic whether it be starting out to player killing to IT issues.
Post Reply
Tiani
Posts: 49
Joined: Sat Nov 16, 2019 12:52 am

Get Put and Drop made easy

Post by Tiani » Sat Dec 21, 2019 11:33 pm

I got really tired of having to use individual commands to get/drop/put multiple things when I only wanted to perform the action on certain things and not all, so I made these Cmud scripts. Each script allows you to get/drop/put as many as ten items. In the item list space between the items, no punctuation.

You should be able to copy/paste these into the command line. I cannot vouch for whether it will work in Zmud.

GET
Syntax to get from a container: gt <container> <item1 item2 item3...>.
Syntax to get from the ground: gt g <item1 item2 item3...>.

#alias gt {#if (%1="g") {#if (%2) {get %2} {};#if (%3) {get %3} {};#if (%4) {get %4} {};#if (%5) {get %5} {};#if (%6) {get %6};#if (%7) {get %7} {};#if (%8) {get %8} {};#if (%9) {get %9} {};#if (%10) {get %10} {};#if (%11) {get1} {}} {#if (%2) {get %2 %1} {};#if (%3) {get %3 %1} {};#if (%4) {get %4 %1} {};#if (%5) {get %5 %1} {};#if (%6) {get %6 %1};#if (%7) {get %7 %1} {};#if (%8) {get %8 %1} {};#if (%9) {get %9 %1} {};#if (%10) {get %10 %1} {};#if (%11) {get %11 %1} {}}}

PUT
Syntax: pt <container> <item1 item2 item3...>.

#alias pt {#if (%2) {put %2 %1} {};#if (%3) {put %3 %1} {};#if (%4) {put %4 %1} {};#if (%5) {put %5 %1} {};#if (%6) {put %6 %1};#if (%7) {put %7 %1} {};#if (%8) {put %8 %1} {};#if (%9) {put %9 %1} {};#if (%10) {put %10 %1} {};#if (%11) {put %11 %1} {}}

DROP
Syntax: dp <item1 item2 item3...>.

#alias dp {#if (%2) {put %2 %1} {};#if (%3) {put %3 %1} {};#if (%4) {put %4 %1} {};#if (%5) {put %5 %1} {};#if (%6) {put %6 %1};#if (%7) {put %7 %1} {};#if (%8) {put %8 %1} {};#if (%9) {put %9 %1} {};#if (%10) {put %10 %1} {};#if (%11) {put %11 %1} {}}

Post Reply