Jump to content

WorldSeed

Members
  • Posts

    56
  • Joined

  • Last visited

Posts posted by WorldSeed

  1. Good evening to everyone. I'm just wondering if someone could help me with this Script. It is working but i would like to do it for the whole account instead of 1 character per account, and how would i be able to lower the death rate % when you're a premium/vip members? thanks in advance.

    prontera,97,85,5	script	Sample	757,{
    
    mes "Want to be Premium Users for 1 week ?";
    
    mes "Then give me "+1+" x "+getitemname(7608);
    
    if( countitem( 7608 ) >= 1 ){
    
            if( select("YES:NO") == 1 ){
    
                    delitem 7608,1;
    
                    set #PremiumUser,gettimetick(2) + ( .Day * 3600 * 24 );
    
                    sc_start SC_ITEMBOOST,( #PremiumUser * 1000 ),200;
    
                    sc_start SC_EXPBOOST,( #PremiumUser * 1000 ),200;
    
                    mes "Done. enjoy your Premium Services for 1 Week.";
    
            }
    
    }
    
    close;
    
    
    
    OnPCLoginEvent:
    
    if( #PremiumUser > gettimetick(2) ){
    
            sc_start SC_ITEMBOOST,( ( #PremiumUser - gettimetick(2) ) * 1000 ),200;
    
            sc_start SC_EXPBOOST,( ( #PremiumUser - gettimetick(2) ) * 1000 ),200;
    
    }
    
    end;
    
  2. Good evening, i was just wondering if someone by any chance would have a script for a Premium User that would work for 1 Account(All Slot Characters) not just one character per account. I found a few but so far it only works for 1 character per account. thanks in advance.

×
×
  • Create New...