IvanD Posted May 29, 2018 Posted May 29, 2018 hello anyone have this script? Custom monster in prontera porings monster with fake name on it and drops id 1000 or if it cant be drop... maybe the one killed it received it instead. if this script already exist please tell me... (already did a search/not good at it) Quote
0 Tyrfing Posted May 29, 2018 Posted May 29, 2018 He is requesting a script that spawns modified porings in Prontera which drop item ID 1000. Quote
0 AnnieRuru Posted May 30, 2018 Posted May 30, 2018 I don't think our script commands are that ... advance yet create a new monster with mob_avail might be a faster way Quote
0 KyleEzra Posted June 5, 2018 Posted June 5, 2018 (edited) if you mean CUSTOM NAME only not CUSTOM MOB this script will help you - script monster_script -1,{ // "Poring (1002)" spawns on random coordinates // Fake Name is "Kill Me!" monster .map$,0,0,"Kill Me",.monster,.monster_count,strnpcinfo(0)+"::OnMobKilled"; // Event Configurations OnInit: set .monster,1002; // Mob ID set .monster_count,1; // Mob Count set .map$,"prontera"; // Possible map set .prize,1000; // 1000 is the item ID set .prize_amount,1; // Prize quantity end; OnMobKilled: getitem .prize,.prize_amount; // Prize of the Killer announce "[ "+strcharinfo(0)+" ] has killed ["Kill Me!"] on ["+.map$+"]",bc_map; // Broadcast the killer on current map; monster .map$,0,0,"Kill Me",.monster,.monster_count,strnpcinfo(0)+"::OnMobKilled"; // The Mob will spawn again end; } Edited June 5, 2018 by KyleEzra Quote
-1 Poring King Posted May 29, 2018 Posted May 29, 2018 are you looking for this NPC script commands ? try to look here all you need about scripting is right herehttps://github.com/rathena/rathena/blob/master/doc/script_commands.txt Quote
Question
IvanD
hello
anyone have this script?
Custom monster in prontera
porings monster with fake name on it
and drops id 1000 or if it cant be drop... maybe the one killed it received it instead.
if this script already exist please tell me... (already did a search/not good at it)
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.