Jump to content
  • 0

Custom Monster w/ Custom Drops


Question

Posted

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

  • 0
Posted (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 by KyleEzra

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...