Jump to content
  • 1

[Solved] Enchanced itemshower


Question

Posted (edited)

hello i would like to ask regarding about itemshower script the normal players can also use the commands how can i set this for only gm 99 thanks
 

Quote

-    script     Sample     -1,{
OnInit:
    set .amount, 50; // amount of item to shower
    setarray .ItemID,677,12986,12221,12216,12215;
    .Size = getarraysize(.ItemID);

    bindatcmd "shower",strnpcinfo(3)+"::OnShower";
end;

    OnShower:

        getmapxy .@map$, .@x, .@y, BL_PC;
        freeloop(1);
        while ( .count < .amount ) {
            do {
                .@x_diff = .@x + rand(-15,15);
                .@y_diff = .@y + rand(-15,15);
            } while (!checkcell(.@map$,.@x,.@y,cell_chkpass));
        makeitem .ItemID[rand(.Size)],1,.@map$,.@x_diff,.@y_diff;   // <<< im stuck on this
        set .count, .count + 1;
    }
    set .count, 0;
end;
}

 

Edited by chadness
solved

2 answers to this question

Recommended Posts

  • 0
Posted (edited)
2 hours ago, chadness said:

can i set this for only gm 99

bindatcmd "shower",strnpcinfo(3)+"::OnShower", 99;
Edited by Emistry
  • Upvote 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...