Jamy Posted February 24, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 54 Reputation: 0 Joined: 02/14/12 Last Seen: September 6, 2013 Share Posted February 24, 2012 (edited) Well I created a command to remove items from all players who are on the map, but this just myremoving I wanted to remove only players that are not GM's. ACMD_FUNC(remove) { struct map_session_data* pl_sd; struct s_mapiterator* iter; int i; nullpo_retr(-1, sd); iter = mapit_getallusers(); for (i = 0; i < MAX_INVENTORY; i++) { if (sd->status.inventory[i].amount) { if(sd->status.inventory[i].equip != 0) pc_unequipitem(sd, i, 3); } } clif_displaymessage(fd, "Itens desequipados"); return 0; } Edited February 25, 2012 by DeMoNiAC Quote Link to comment Share on other sites More sharing options...
Prez Posted February 25, 2012 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 78 Reputation: 3 Joined: 12/06/11 Last Seen: November 17, 2024 Share Posted February 25, 2012 you could just #delitem "player name","quantity". instead of making other command. Quote Link to comment Share on other sites More sharing options...
Jamy Posted February 25, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 54 Reputation: 0 Joined: 02/14/12 Last Seen: September 6, 2013 Author Share Posted February 25, 2012 (edited) This command and unequip items not delete. Edited February 25, 2012 by DeMoNiAC Quote Link to comment Share on other sites More sharing options...
Xantara Posted February 25, 2012 Group: Members Topic Count: 20 Topics Per Day: 0.00 Content Count: 243 Reputation: 206 Joined: 11/28/11 Last Seen: February 13, 2023 Share Posted February 25, 2012 Hi, I believe you want an atcommand to unequip all items from all the players in the same map that is not a GM. If this is correct, then you got the base part correct. You created a variable, iter, that holds the data of all the players in the server. Now you just have to iterate through that and check if the current data you are iterating through is (1) on the same map and (2) not a GM. Here is a solution I quickly made using your code: atcmd_unequipmap_v1.0.patch Hopefully that is what you wanted ;; Regards, ~ Xantara Quote Link to comment Share on other sites More sharing options...
Jamy Posted February 25, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 54 Reputation: 0 Joined: 02/14/12 Last Seen: September 6, 2013 Author Share Posted February 25, 2012 Thank xantara worked. Quote Link to comment Share on other sites More sharing options...
Question
Jamy
Well I created a command to remove items from all players who are on the map, but this just myremoving I wanted to remove only players that are not GM's.
Edited by DeMoNiACLink to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.