kugelfang Posted March 1, 2022 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 11/20/20 Last Seen: April 10, 2022 Share Posted March 1, 2022 hello , request if can someone send me a script for NPC who can respawn mobs like 1 treasure chest with a specif location + GM level 99 can only access example : prontera,168,191,3 script Treasure Summoner 4_F_JOB_BLACKSMITH,{ monster "prontera", 166, 192, "treasure", 1354, 1, strnpcinfo(0) + "::OnMobKilled"; monster "prontera", 166, 191, "treasure", 1354, 1, strnpcinfo(0) + "::OnMobKilled"; end; OnMobKilled: getitem 501, 0; // nothing end; } Quote Link to comment Share on other sites More sharing options...
0 kugelfang Posted March 1, 2022 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 11/20/20 Last Seen: April 10, 2022 Author Share Posted March 1, 2022 5 hours ago, kugelfang said: hello , request if can someone send me a script for NPC who can respawn mobs like 1 treasure chest with a specif location + GM level 99 can only access example : prontera,168,191,3 script Treasure Summoner 4_F_JOB_BLACKSMITH,{ monster "prontera", 166, 192, "treasure", 1354, 1, strnpcinfo(0) + "::OnMobKilled"; monster "prontera", 166, 191, "treasure", 1354, 1, strnpcinfo(0) + "::OnMobKilled"; end; OnMobKilled: getitem 501, 0; // nothing end; } problem solved Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted March 5, 2022 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted March 5, 2022 (edited) should share your solution if its already solved. prontera,168,191,3 script Treasure Summoner 4_F_JOB_BLACKSMITH,{ if (getgmlevel() >= 99) { mes "Monster spawned."; npctalk "Monster spawned!"; monster "prontera", 166, 192, "treasure", 1354, 1, strnpcinfo(0) + "::OnMobKilled"; close; } end; OnMobKilled: getitem 501, 1; // rewards end; } Edited March 5, 2022 by Emistry Quote Link to comment Share on other sites More sharing options...
Question
kugelfang
hello ,
request if can someone send me a script for NPC who can respawn mobs like 1 treasure chest with a specif location + GM level 99 can only access
example :
prontera,168,191,3 script Treasure Summoner 4_F_JOB_BLACKSMITH,{
monster "prontera", 166, 192, "treasure", 1354, 1, strnpcinfo(0) + "::OnMobKilled";
monster "prontera", 166, 191, "treasure", 1354, 1, strnpcinfo(0) + "::OnMobKilled";
end;
OnMobKilled:
getitem 501, 0; // nothing
end;
}
Link to comment
Share on other sites
2 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.