Jump to content

Poring King

Members
  • Posts

    911
  • Joined

  • Last visited

  • Days Won

    18

Community Answers

  1. Poring King's post in Monster spawns, is it random? was marked as the answer   
    ra_san01,0,0 monster Isilla 1772,10  // the green color set to 0 . 0 = random map spawn
    ra_san01,61,141,58,98 monster Vanberk 1771,20,300000 // in this case it spawn in the are of ra_san01 61,141

    Structure
    <map name>,<x>,<y>{,<xs>{,<ys>}}%TAB%monster%TAB%<monster name>{,<monster level>}%TAB%<mob id>,<amount>{,<delay1>{,<delay2>{,<event>{,<mob size>{,<mob ai>}}}}}

    Referrence off all script here is the path
    others: trunk/doc/script_commands.txt
    Centos/VPS : root/doc/script_commands.txt
    Windows: rathena-master/doc/script_commands.txt
  2. Poring King's post in How to disable 3rd job? was marked as the answer   
    If you want to remove the whole renewal on your server kindly define your renewal.h  #define renewal into #define pre renewal

     
    trunk/src/config/renewal.h
    /// game renewal server mode /// (disable by commenting the line) /// /// leave this line to enable renewal specific support such as renewal formulas #define RENEWAL or PRERE
  3. Poring King's post in How to Fix This? was marked as the answer   
    It should be work if you change the default reg into lua setting's /scissors
  4. Poring King's post in Mob info and rates difference was marked as the answer   
    Go to your conf/battle/item_drop

    The Item Drop rates 
    100x = 1% rates 1,000x=10% rates 5,000x=50% rates 10,000x=100% rates For BaseLevel/JobLevel rates/Quest Rates
    100x= 0.1k 1000x=1k 10000=10k 100000=100k
  5. Poring King's post in Special Prize Giver was marked as the answer   
    prontera,155,181,5 script Sample 757,{ if( getgmlevel() > 80 ){ mes "Enter Items ID :"; mes " 0 = Cancel"; do{ input .@ItemID; if( .@ItemID < 1 ) close; }while( getitemname( .@ItemID ) == "null" ); mes "Enter Amount :"; input .@Amount,1,30000; mes "Enter Name :"; input .@Name$; next; mes "Name : "+.@Name$; mes "Item : "+getitemname( .@ItemID ); mes "Amount : "+.@Amount; if( select("Confirm:Cancel") == 1 ){ if( !attachrid( getcharid(3,.@Name$) ) ) message strcharinfo(0),"Player not Found."; else{ getitem .@ItemID,.@Amount,getcharid(3,.@Name$); message strcharinfo(0),"Item Sent"; message .@Name$,"You Received item from "+strcharinfo(0); } } } close; } try this one 
     
    Creadit to mr.emistry
×
×
  • Create New...