Jump to content

Syndicate

Members
  • Posts

    108
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Syndicate

  1. http://athena-scripts.googlecode.com/svn/dev/Brian/script_requests/vip_rental.txt

    //===== eAthena Script =======================================

    //= VIP Rental System

    //===== By: ==================================================

    //= Brian

    //===== Current Version: =====================================

    //= 1.0

    //===== Compatible With: =====================================

    //= eAthena SVN (SQL only)

    //===== Description: =========================================

    //= Makes a player VIP (GM level 1) for a set amount of time.

    //===== Additional Comments: =================================

    //=

    //============================================================

    function script F_VIPstart {

    set .@ticks, getarg(0); // getarg(0) = ticks (seconds)

    if (.@ticks <= 0) {

    debugmes "F_VIPstart - tried to set a timer in the past";

    end;

    }

    // #VIP_expire = Unixtime when their VIP expires

    set #VIP_expire, ((#VIP_expire > gettimetick(2)) ? #VIP_expire : gettimetick(2)) + .@ticks;

    doevent "vip_rental::OnPCLoginEvent"; // trigger the VIP to start

    return;

    }

    - script vip_rental -1,{

    OnPCLoginEvent:

    if (#VIP_expire > gettimetick(2)) {

    // they still have time left

    dispbottom "VIP Rental : expires in " + callfunc("Time2Str",#VIP_expire);

    atcommand "@adjgroup 1 "+strcharinfo(0);

    deltimer strnpcinfo(3)+"::OnPCLoginEvent";

    if ((#VIP_expire - gettimetick(2)) < 2147483) { // prevent overflow error

    addtimer (#VIP_expire - gettimetick(2)) *1000, strnpcinfo(3)+"::OnPCLoginEvent";

    } else {

    addtimer 2147483000, strnpcinfo(3)+"::OnPCLoginEvent";

    }

    } else if (#VIP_expire) {

    atcommand "@adjgroup 0 "+strcharinfo(0);

    set #VIP_expire, 0;

    dispbottom "Your VIP Rental has expired.";

    }

    end;

    }

  2. just change 

     

     

    lhz_dun03,138,138,36,34    monster    High Wizard Kathryne    1645,1,2580000,2460000,1

    to

     

    lhz_dun03,138,138,36,34    boss_monster    High Wizard Kathryne    1645,1,2580000,2460000,1

     

     

    Where should I put this?

  3. Can I ask something If what is the 100% working SVN renewal with pre-re and re at SVN?

    cause my SVN has bugged

    1.my ELEMENTAL CHANGING [ PROFESSOR ] cant use to Player , only at monsters.

    2.my devotion to my party nor guildmates is not working. Instead the damage goes to paladin , the damage goes to the one I devo'ed

    3. My Skills of STALKER can use STRIP to Players but it wont take

    long. They can wear it again in a few seconds.

    * I tried to use SEARCH button , but I failed to find it.

    Please help me thank you very much!!

    *I heard , this are a new changes in prere and re . But I want to turn it back or revert it back. Thank you

    Thank you sir

    God bless to you and take care.

    bump

  4. Hi,

    Thanks to both of you..

    Can I ask for a new help again?

    Cause when I turned to crusader or 2nd job class

    The options are:

    Rebirth

    3rd Job Class

    Can anyone modify it to only one choice

    Rebirth

    And then... high novice, high swordsman, high Lord Knight , Rune Knight.

    Thanks and advance.

    btw. I have another questions

    How to change mp3 sound in login screen background?

  5. Hi !

    I would like to request some additional to this jobmaster.txt script

    My current script is working only in transcended.

    I want to add 3rd jobs after transcended.

    and also add baby in choices.

    Thanks and god bless ...

    And additional again for Babies ..

    Can anyone add it also for babies with 3rd babies. Thanks

    and after changing to 3rd job. the blvl will reset to 1 and jlvl to 1

    jobmaster.txt

×
×
  • Create New...