clydelion Posted February 26, 2013 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 754 Reputation: 186 Joined: 05/22/12 Last Seen: October 15, 2022 Author Share Posted February 26, 2013 You can use this trick http://www.eathena.ws/board/index.php?showtopic=181741 Quote Link to comment Share on other sites More sharing options...
PewN Posted February 26, 2013 Group: Members Topic Count: 209 Topics Per Day: 0.04 Content Count: 892 Reputation: 27 Joined: 12/09/11 Last Seen: April 16, 2016 Share Posted February 26, 2013 You can use this trick http://www.eathena.ws/board/index.php?showtopic=181741 it's only 128 max. Quote Link to comment Share on other sites More sharing options...
Peopleperson49 Posted March 20, 2013 Group: Members Topic Count: 219 Topics Per Day: 0.05 Content Count: 1181 Reputation: 141 Joined: 01/27/12 Last Seen: July 15, 2024 Share Posted March 20, 2013 This really really really needs to be added officially!!!!!!!!!! Nice work! Peopleperson49 Quote Link to comment Share on other sites More sharing options...
Zopokx Posted March 20, 2013 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 22 Reputation: 4 Joined: 01/09/13 Last Seen: November 13, 2022 Share Posted March 20, 2013 An excellent work! Thank you! Quote Link to comment Share on other sites More sharing options...
Onairda Posted July 17, 2022 Group: Members Topic Count: 74 Topics Per Day: 0.02 Content Count: 176 Reputation: 9 Joined: 12/30/16 Last Seen: March 8 Share Posted July 17, 2022 On 11/30/2012 at 1:36 AM, clydelion said: Mail via Scriptcommand With this mod, you can do something like this.. (The sample code in the background is outdated) This is a scriptcommand I wanted when I still had a server. It can be used in Achievement Systems, WoE prizes, and other events. This is better than getitem because the recipient doesn't need to be online. Usage: * sendmail <Recipient's Char ID>,"<Sender's Name>","<Title>","<Body>",<zeny>,<item_id>,<amount>{,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>}; Description: Uses the same functions as the default mail system, but this time, it is done via script. All item, recipent, message, and title assignment are done in the background. Enjoy this free release. PS: This have not been used on a live server, if you discover a bug (or if there's something wrong with my coding) let me know. My sample script: This code will give the player a +10 Knife and 10,000 zennies upon reaching job level 10. -<tab>script<tab>Mail Test<tab>-1,{ OnPCJobLvUpEvent: if(JobLevel != 9) end; set .charid, getcharid(0); set .sender$, "Achievement System"; set .title$, "Basic Skills"; set .itemid, 1201; set .itemamount, 1; set .zeny, 10000; set .refine, 10; set .body$, "You have successfully unlocked the achievement '"+.title$+"'. You have received "+.itemamount+" "+getitemname(.itemid)+"s and "+.zeny+" zennies."; sendmail .charid,.sender$,.title$,.body$,.zeny,.itemid,.itemamount,.refine; end; } PS: This wasn't used on a live server, please report any bugs you encounter. DIFF LINK Are this added to latest rA svn? Quote Link to comment Share on other sites More sharing options...
EAJ_BASEMASK Posted August 3, 2022 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 45 Reputation: 8 Joined: 03/17/21 Last Seen: 2 hours ago Share Posted August 3, 2022 On 7/16/2022 at 10:11 PM, G-RO said: Are this added to latest rA svn? When you already have the RODEX MAIL. Quote Link to comment Share on other sites More sharing options...
Onairda Posted August 5, 2022 Group: Members Topic Count: 74 Topics Per Day: 0.02 Content Count: 176 Reputation: 9 Joined: 12/30/16 Last Seen: March 8 Share Posted August 5, 2022 On 8/4/2022 at 12:51 AM, RikuTzy said: When you already have the RODEX MAIL. I mean the function to send email thru Script :). Is it existing now? Quote Link to comment Share on other sites More sharing options...
LearningRO Posted August 5, 2022 Group: Members Topic Count: 107 Topics Per Day: 0.02 Content Count: 778 Reputation: 72 Joined: 02/10/12 Last Seen: 23 hours ago Share Posted August 5, 2022 8 hours ago, G-RO said: I mean the function to send email thru Script :). Is it existing now? *mail <destination id>,"<sender name>","<title>","<body>"{,<zeny>{,<item id array>,<item amount array>{,refine{,bound{,<item card0 array>{,<item card1 array>{,<item card2 array>{,<item card3 array> {,<random option id0 array>, <random option value0 array>, <random option paramter0 array>{,<random option id1 array>, <random option value1 array>, <random option paramter1 array> {,<random option id2 array>, <random option value2 array>, <random option paramter2 array>{,<random option id3 array>, <random option value3 array>, <random option paramter3 array> {,<random option id4 array>, <random option value4 array>, <random option paramter4 array>}}}}}}}}}; Quote Link to comment Share on other sites More sharing options...
Onairda Posted August 5, 2022 Group: Members Topic Count: 74 Topics Per Day: 0.02 Content Count: 176 Reputation: 9 Joined: 12/30/16 Last Seen: March 8 Share Posted August 5, 2022 4 hours ago, LearningRO said: *mail <destination id>,"<sender name>","<title>","<body>"{,<zeny>{,<item id array>,<item amount array>{,refine{,bound{,<item card0 array>{,<item card1 array>{,<item card2 array>{,<item card3 array> {,<random option id0 array>, <random option value0 array>, <random option paramter0 array>{,<random option id1 array>, <random option value1 array>, <random option paramter1 array> {,<random option id2 array>, <random option value2 array>, <random option paramter2 array>{,<random option id3 array>, <random option value3 array>, <random option paramter3 array> {,<random option id4 array>, <random option value4 array>, <random option paramter4 array>}}}}}}}}}; wow thanks for this could you show some example how to define it in script? thanks Quote Link to comment Share on other sites More sharing options...
LearningRO Posted August 5, 2022 Group: Members Topic Count: 107 Topics Per Day: 0.02 Content Count: 778 Reputation: 72 Joined: 02/10/12 Last Seen: 23 hours ago Share Posted August 5, 2022 1 hour ago, G-RO said: wow thanks for this could you show some example how to define it in script? thanks see on docs/script_command.txt 1 Quote Link to comment Share on other sites More sharing options...
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.