Jump to content
  • 0

Custom Monster w/ Custom Drops


IvanD

Question


  • Group:  Members
  • Topic Count:  61
  • Topics Per Day:  0.03
  • Content Count:  110
  • Reputation:   0
  • Joined:  11/13/17
  • Last Seen:  

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)

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  86
  • Reputation:   21
  • Joined:  10/02/13
  • Last Seen:  

He is requesting a script that spawns modified porings in Prontera which drop item ID 1000.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

I don't think our script commands are that ... advance yet

create a new monster with mob_avail might be a faster way

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   0
  • Joined:  10/29/14
  • Last Seen:  

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
Link to comment
Share on other sites

  • -1

  • Group:  Members
  • Topic Count:  61
  • Topics Per Day:  0.02
  • Content Count:  911
  • Reputation:   166
  • Joined:  11/27/14
  • Last Seen:  

are you looking for this NPC script commands ?

try to look here all you need about scripting is right here
https://github.com/rathena/rathena/blob/master/doc/script_commands.txt

Link to comment
Share on other sites

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.

×
×
  • Create New...