ooGubAoo Posted November 1, 2023 Group: Members Topic Count: 22 Topics Per Day: 0.03 Content Count: 55 Reputation: 1 Joined: 06/08/23 Last Seen: April 7 Share Posted November 1, 2023 Quote - script Freeitem FAKE_NPC,{ OnInit: .min_lvl = 70; .item_id = 501; .amount = 1; .item_name = getitemname(.item_id); end; OnClock0000: addrid(0); if(BaseLevel < .min_lvl) end; getitem(.item_id, .amount); message(strcharinfo(0), "ท่านได้ของรางวัลเป็น " + .@item_name$ + "."); } Can i fix map Izlude to get item? I must add what to fix map. Thank you to help. Quote Link to comment Share on other sites More sharing options...
0 Rynbef Posted November 1, 2023 Group: Forum Moderator Topic Count: 48 Topics Per Day: 0.01 Content Count: 941 Reputation: 125 Joined: 05/23/12 Last Seen: 2 hours ago Share Posted November 1, 2023 In the script is nothing depends on izlude. Walk through: OnClock loop throw every online player. Attach them and check the map of the player and give them an item. Rynbef~ Quote Link to comment Share on other sites More sharing options...
0 ooGubAoo Posted November 3, 2023 Group: Members Topic Count: 22 Topics Per Day: 0.03 Content Count: 55 Reputation: 1 Joined: 06/08/23 Last Seen: April 7 Author Share Posted November 3, 2023 On 11/1/2023 at 6:26 PM, Rynbef said: In the script is nothing depends on izlude. Walk through: OnClock loop throw every online player. Attach them and check the map of the player and give them an item. Rynbef~ How to change can get item in map izlude Quote Link to comment Share on other sites More sharing options...
0 Winterfox Posted November 3, 2023 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 245 Reputation: 93 Joined: 06/30/18 Last Seen: November 27, 2024 Share Posted November 3, 2023 - script Freeitem FAKE_NPC,{ OnInit: .min_lvl = 70; .required_map$ = "izlude"; .item_id = 501; .amount = 1; .item_name = getitemname(.item_id); end; OnClock0000: addrid(0); getmapxy(.@current_map$, .@x, .@y); if(BaseLevel < .min_lvl || .@current_map$ != .required_map$) end; getitem(.item_id, .amount); message(strcharinfo(0), "ท่านได้ของรางวัลเป็น " + .@item_name$ + "."); } 1 Quote Link to comment Share on other sites More sharing options...
0 ooGubAoo Posted November 7, 2023 Group: Members Topic Count: 22 Topics Per Day: 0.03 Content Count: 55 Reputation: 1 Joined: 06/08/23 Last Seen: April 7 Author Share Posted November 7, 2023 On 11/3/2023 at 7:12 PM, Winterfox said: - script Freeitem FAKE_NPC,{ OnInit: .min_lvl = 70; .required_map$ = "izlude"; .item_id = 501; .amount = 1; .item_name = getitemname(.item_id); end; OnClock0000: addrid(0); getmapxy(.@current_map$, .@x, .@y); if(BaseLevel < .min_lvl || .@current_map$ != .required_map$) end; getitem(.item_id, .amount); message(strcharinfo(0), "ท่านได้ของรางวัลเป็น " + .@item_name$ + "."); } Thank You very much. Thank to help every time. Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted January 23, 2024 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted January 23, 2024 addrid(0); change to addrid(5, 0, "izlude"); Quote Link to comment Share on other sites More sharing options...
Question
ooGubAoo
Can i fix map Izlude to get item?
I must add what to fix map.
Thank you to help.
Link to comment
Share on other sites
5 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.