Jump to content

n3ySkie

Members
  • Posts

    48
  • Joined

  • Last visited

Posts posted by n3ySkie

  1. hi guys i want to ask how i change this script to baby 3rd job and baby 2nd job class

     

    {},{ changebase roclass(eaclass()|EAJL_THIRD); },{ changebase Class; }  normal size of 3rd job  -Note it change 3rd job Sprite depends on your Job

     

    {},{ if(roclass(eaclass()|EAJL_UPPER)) changebase BaseJob; },{ changebase Class; } normal size of 2nd job -Note it change 2nd job Sprite depends on your Job

  2. On 11/14/2019 at 4:05 AM, Moooooon-Aisha said:
    
    // Should Dispel work on songs when the target is not in the song area? (Note 1)
    // On official servers, it's impossible to dispel songs.
    // Hint: Also affects the Rebellion skill "Vanishing Buster".
    dispel_song: no

    It's already available on rA. conf/battle/skill.conf

    it doesnt work, cant cancel the clown buffs 

  3. -    script    zxzasasas    -1,{

    OnCmdHour:
        dispbottom "Your Server Cash:";
        message strcharinfo(0),"Cash Points Total Balance = "+#CASHPOINTS+" Cash Points(s)";
        end;

    OnInit:
        bindatcmd "points","playerpoints::OnCmdHour"; //@points to view time till next point.
    }

     

     

    just copy paste  "message strcharinfo(0),"Cash Points Total Balance = "+#CASHPOINTS+" Cash Points(s)";

    and edit #CASHPOINTS+ depends on your #variables

  4. hello guys i want to ask how to make invalid command in normal player, let say i'm using gm right now and  i left @warp prontera 125 111 in my alt , then i change to normal account i have mistakenly use @warp 125 111 in public, so other's think i'm a gm because i know that command i want to make it invalid when i mistakenly type it.

  5. annie how about the cell block if someone hide on that cell then the player cant forward because there's a invi player there.

    BTW its working. emotion is my probleim can emote inside the map i wonder how to disabled it.

    Cell Block Also can forward.

  6. good day im requesting a GVG SPECTATOR THAT'S WORKING 

    this one its not working. the .patch file 

    prontera,153,178,4 script GvGPvP Watcher 414,{
        if ( select ( "go to pvp", "spectator" ) == 1 )
            warp "pvp_y_2-1",0,0;
        else {
            pcblockchat getcharid(3), 1;
            pcblockattack getcharid(3), 1;
            setoption 0x40, 1;
            warp "pvp_y_2-1",0,0;
        }    
        end;
    OnPCLogoutEvent:
        setoption 0x40, 0;
        end;
    }
    pvp_y_2-1    mapflag    pvp

    pcblockattack_pcblockchat_20140107.patch

  7. not working in latest rathena. the .patch its different.

     

    like this one

    it doesnt exist if you search in unit.c

    diff --git a/src/map/unit.c b/src/map/unit.c
    index a29605f..3472ab3 100644
    --- a/src/map/unit.c
    +++ b/src/map/unit.c
    @@ -1850,7 +1850,7 @@ int unit_attack(struct block_list *src,int target_id,int continuous)
                 npc_click(sd,(TBL_NPC*)target); // Submitted by leinsirk10 [Celest]
                 return 0;
             }
    -        if( pc_is90overweight(sd) || pc_isridingwug(sd) ) { // Overweight or mounted on warg - stop attacking  <------- Cant search in unit.c im using latest rathena.
    +        if( pc_is90overweight(sd) || pc_isridingwug(sd) || sd->state.blockedattack ) { // Overweight or mounted on warg OR pcblockattack - stop attacking
                 unit_stop_attack(src);
                 return 0;
             }

    also

     orig

        if ( sd->state.blockedattack )
            return false;

      .patch

    if ( sd->state.blockedattack )
           return 0;

     


     

     

×
×
  • Create New...