Jump to content

Ukiram

Members
  • Posts

    291
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by Ukiram

  1. 50 minutes ago, Celldweller6 said:

    Hello friend thank you very much for answering, come on believe you did not understand exactly my problem.
    I created a custom map from 0 and basically didn't make many changes other than placing an existing Ragnarok texture I saved normally and did all the steps you mentioned but in game it looks like this

     

    Please Help me

     

    aSem título.png

    Make sure you followed this steps: 

    https://github.com/rathena/rathena/wiki/Custom_Maps

    • Upvote 1
  2. 2 minutes ago, Takuyakii said:

    into these?

                if(Zeny < 1000000) {
                set Zeny,Zeny - 1000000;

    Yes try it. ?

    If any errors occurs post it here.

    • Upvote 1
  3. On 4/6/2017 at 10:14 PM, Daegaladh said:

    New @security system for item and zeny protection [no src mod required]


    The new @security system does all those old and clunky security systems did (not so well) in the past and much more, without source modifications!

    • Protects the player items and zeny with a password (that can be as long and complex as the player wants), if hacked or they share their account
    • Allows the player to temporary disable the system and play as usual, so when the player logs out, the system reactivates
    • When an intruder fails to enter the password X times (configurable), the system resets the player's account password and kicks the intruder out
    • Available in English and Spanish

     

    PS.: If you have any idea or suggestion for new features or improvements, feel free to tell me and I'll add them to the system!

     

     

    By buying this script, you agree to these terms:

    • You are not allowed to redistribute this script in any way, shape, or form.
    • Chargeback scams are not tolerated and will get you punished on rAthena.
    • I (Daegaladh) still retain all rights to this script.
    • Terms above may be changed or adjusted without prior notification.

    © Daegaladh 2017


    • Submitter
    • Submitted
      04/06/2017
    • Category
    • Video
       
    • Content Author
      Daegaladh

     

    Is this still working sir?

  4. On 11/6/2019 at 1:32 AM, Takuyakii said:

    Thanks it works! , but you forgot the REquired zeny for Restoration .

    can please help me more ?

    Just change countitem to zeny.

    Just change if(countitem) to if(Zeny < 1000000)

  5. 12 hours ago, Takuyakii said:

    Hi! i need help for this. 

     

    after 24 hours the timer go count again negatively.

     

    See pic below. and no error on map.

     

    
    set .Hour,24;
    if(gettimetick(2) - #dailytimer < ( .Hour * 3600)) {
    mes .@npcname$;
    
    
    		set .@last,#dailytimer - gettimetick(2);
    		set .@hour, .@last % ( 24 * 3600 ) / 3600;
    		set .@min, .@last % ( 24 * 3600 ) % 3600 / 60;
    		set .@sec, .@last % ( 24 * 3600 ) % 3600 % 60;
    		mes "You have to wait for your next delivery.";
    		mes "Time CountDown : ^FF0000"+.@hour+":"+.@min+":"+.@sec+"^000000";
    close;
    }
    
    
    mes .@npcname$;
    mes "Congrats!";
    mes " ";
    mes "Here's your reward 1 Activity Point!(s)";
    mes "Check your Chat-Log!";
    ++#activity_points;
    dispbottom "You've gained one Activity Point! Your total is ["+#activity_points+"] Activity point(s).";
    set #dailytimer,gettimetick(2) + ( .Hour * 3600 );

     

    bug.png

    Post your whole script. We'll fix it for you.

  6. 13 hours ago, Hakahay said:

    Olá,

      Eu usei somente os Diff's recomendados e todos os acentos no jogo ficam em coreano ou "?" não é só com os itens mas no chat e em todo o resto. Meu itemInfo ja está em ANSI e nada.

    Uso o Hexed 2018-04-18b

    screenrAthena000.jpg

    I'm sorry, I think the problem is your System/itemInfo.lua or System/itemInfo.lub

    • Upvote 1
  7. Hello, I'm actually looking for a script and i'm also willing to pay for it.

    1. Guild vs Guild 

    * there's a barricade in every spawn point of guild

    * you can't walk to barricade until the countdown finish

    * 5 seconds and then barricade will disappear and it will automatically set the map for @gvgon 
    * to the guild who will win will received item and cash points

     

    * GM commands

    - @gvgeventstart ( start of event )

    - @gvgeventend ( end of event )

     

    * player commands

    - players need to be a guild leader to be registered and have atleast 10 members online

    - @gvgeventjoin

  8. 2 hours ago, Hakahay said:

    Olá,

      Eu usei somente os Diff's recomendados e todos os acentos no jogo ficam em coreano ou "?" não é só com os itens mas no chat e em todo o resto. Meu itemInfo ja está em ANSI e nada.

    Uso o Hexed 2018-04-18b

    screenrAthena000.jpg

    Check your Main GRF.

    • Upvote 2
  9. 9 hours ago, Functor said:

    Hello! You have already asked about "Body Relocation + Spider Web" and got the solution: 

    https://rathena.org/board/topic/118958-block-body-relocation-while-spider-web/

    But it is without checking the status of "Ankle Snare".

    The final solution:

    Open ../src/map/skill.cpp and in the function skill_castend_pos2 after:

    
    	case MO_BODYRELOCATION:
    		if (unit_movepos(src, x, y, 2, 1)) {

    add:

    
    			if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLE]))
    				break;

     

    Thank you, very much appreciated.

×
×
  • Create New...