Jump to content
  • 1

[Solved] Enchanced itemshower


GM Winter

Question


  • Group:  Members
  • Topic Count:  176
  • Topics Per Day:  0.15
  • Content Count:  666
  • Reputation:   9
  • Joined:  12/04/20
  • Last Seen:  

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
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2345
  • Joined:  10/28/11
  • Last Seen:  

2 hours ago, chadness said:

can i set this for only gm 99

bindatcmd "shower",strnpcinfo(3)+"::OnShower", 99;
Edited by Emistry
  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  176
  • Topics Per Day:  0.15
  • Content Count:  666
  • Reputation:   9
  • Joined:  12/04/20
  • Last Seen:  

On 8/26/2021 at 8:41 PM, Emistry said:
bindatcmd "shower",strnpcinfo(3)+"::OnShower", 99;

thanks sir @Emistry

Link to comment
Share on other sites

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.

×
×
  • Create New...