exchisu Posted December 16, 2019 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 60 Reputation: 1 Joined: 12/12/13 Last Seen: July 22, 2023 Share Posted December 16, 2019 Hi all, i was looking for a Welcome pack script with a itembound (getitembound) i was trying somes but i get errors so... Want a Welcome Pack NPC one per IP with itembound Thanks! Quote Link to comment Share on other sites More sharing options...
1 Mabuhay Posted December 16, 2019 Group: Members Topic Count: 105 Topics Per Day: 0.02 Content Count: 446 Reputation: 232 Joined: 03/20/12 Last Seen: October 22, 2020 Share Posted December 16, 2019 1 hour ago, exchisu said: Hi all, i was looking for a Welcome pack script with a itembound (getitembound) i was trying somes but i get errors so... Want a Welcome Pack NPC one per IP with itembound Thanks! prontera,150,180,0 script Welcome Pack NPC 123,{ .@ip$ = replacestr(getcharip(),".","s"); if (getd("$ip_"+.@ip$)) { // edit message here. mes "You have claimed your reward."; close; } mes "Here you go."; close2; setd "$ip_"+.@ip$, 1; // add items here.. getitembound 1202, 1, Bound_Account; end; } 2 Quote Link to comment Share on other sites More sharing options...
0 exchisu Posted December 16, 2019 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 60 Reputation: 1 Joined: 12/12/13 Last Seen: July 22, 2023 Author Share Posted December 16, 2019 9 hours ago, Mabuhay said: prontera,150,180,0 script Welcome Pack NPC 123,{ .@ip$ = replacestr(getcharip(),".","s"); if (getd("$ip_"+.@ip$)) { // edit message here. mes "You have claimed your reward."; close; } mes "Here you go."; close2; setd "$ip_"+.@ip$, 1; // add items here.. getitembound 1202, 1, Bound_Account; end; } Thanks Mahubay, you're a boss dude Quote Link to comment Share on other sites More sharing options...
0 exchisu Posted December 17, 2019 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 60 Reputation: 1 Joined: 12/12/13 Last Seen: July 22, 2023 Author Share Posted December 17, 2019 @Mabuhay why? Quote Link to comment Share on other sites More sharing options...
0 sader1992 Posted December 17, 2019 Group: Content Moderator Topic Count: 55 Topics Per Day: 0.01 Content Count: 1691 Reputation: 716 Joined: 12/21/14 Last Seen: 19 hours ago Share Posted December 17, 2019 18 minutes ago, exchisu said: @Mabuhay why? because you blindly editing the script --------------------------------------- *getitembound <item id>,<amount>,<bound type>{,<account ID>}; *getitembound "<item name>",<amount>,<bound type>{,<account ID>}; This command behaves identically to 'getitem', but the items created will be bound to the target character as specified by the bound type. All items created in this manner cannot be dropped, sold, vended, auctioned, or mailed, and in some cases cannot be traded or stored. Valid bound types are: Bound_Account : Account Bound item Bound_Guild : Guild Bound item Bound_Party : Party Bound item Bound_Char : Character Bound item --------------------------------------- 2 Quote Link to comment Share on other sites More sharing options...
0 exchisu Posted December 18, 2019 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 60 Reputation: 1 Joined: 12/12/13 Last Seen: July 22, 2023 Author Share Posted December 18, 2019 On 12/17/2019 at 4:48 PM, sader1992 said: because you blindly editing the script --------------------------------------- *getitembound <item id>,<amount>,<bound type>{,<account ID>}; *getitembound "<item name>",<amount>,<bound type>{,<account ID>}; This command behaves identically to 'getitem', but the items created will be bound to the target character as specified by the bound type. All items created in this manner cannot be dropped, sold, vended, auctioned, or mailed, and in some cases cannot be traded or stored. Valid bound types are: Bound_Account : Account Bound item Bound_Guild : Guild Bound item Bound_Party : Party Bound item Bound_Char : Character Bound item --------------------------------------- Im missing then the bound type... would be getitembound 19596,1,1 then? (ID,amount,Boundtype) Quote Link to comment Share on other sites More sharing options...
1 Mael Posted December 18, 2019 Group: Forum Moderator Topic Count: 25 Topics Per Day: 0.01 Content Count: 837 Reputation: 321 Joined: 02/11/19 Last Seen: Sunday at 01:54 PM Share Posted December 18, 2019 48 minutes ago, exchisu said: Im missing then the bound type... would be getitembound 19596,1,1 then? (ID,amount,Boundtype) prontera,150,180,0 script Welcome Pack NPC 123,{ .@ip$ = replacestr(getcharip(),".","s"); if (getd("$ip_"+.@ip$)) { // edit message here. mes "You have claimed your reward."; close; } mes "Here you go."; close2; setd "$ip_"+.@ip$, 1; // add items here.. getitembound 1202, 1, Bound_Account; getitembound 1202, 1, Bound_Account; getitembound 1202, 1, Bound_Account; getitembound 1202, 1, Bound_Account; getitembound 1202, 1, Bound_Account; getitembound 1202, 1, Bound_Account; getitembound 1202, 1, Bound_Account; getitembound 1202, 1, Bound_Account; getitembound 1202, 1, Bound_Account; end; } 1 Quote Link to comment Share on other sites More sharing options...
0 exchisu Posted December 19, 2019 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 60 Reputation: 1 Joined: 12/12/13 Last Seen: July 22, 2023 Author Share Posted December 19, 2019 Gracias @Mael Thanks Working fine! Quote Link to comment Share on other sites More sharing options...
Question
exchisu
Hi all, i was looking for a Welcome pack script with a itembound (getitembound) i was trying somes but i get errors so...
Want a Welcome Pack NPC one per IP with itembound
Thanks!
Link to comment
Share on other sites
7 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.