Jump to content

huntax

Members
  • Posts

    44
  • Joined

  • Last visited

Posts posted by huntax

  1. src/map/statuc:

     

     

    if((skill=pc_checkskill(sd,MO_DODGE))>0)
            status->flee += (skill*3)>>1;
    
    

    The Formula does: (SkillLevel * 3) / 2 because >> 1 acts like / 2

    haha not good at this so how to make it go up by 3 each level?

    Do I remove the 1?

     

    if((skill=pc_checkskill(sd,MO_DODGE))>0)

            status->flee += (skill*3)>>0;

    like this?

     

  2. I need help making it so the player or monster does not turn around to face you.

    What should i edit here?

     


    case RG_BACKSTAP:
            {
                uint8 dir = map_calc_dir(src, bl->x, bl->y), t_dir = unit_getdir(bl);
                if ((!check_distance_bl(src, bl, 0) && !map_check_dir(dir, t_dir)) || bl->type == BL_SKILL) {
                    status_change_end(src, SC_HIDING, INVALID_TIMER);
                    skill_attack(BF_WEAPON, src, src, bl, skill_id, skill_lv, tick, flag);
                    dir = dir < 4 ? dir+4 : dir-4; // change direction [Celest]
                    unit_setdir(bl,dir);
                }
                else if (sd)
                    clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0);
            }
            break;
     
  3. I have this vote for points system. It was working before but my Flux CP had to reinstall because of my name change to my server. So I installed a fresh copy of Flux CP and the Vote 4 points system. But my problem is that under the Admin Panel for the Vote4points system it doesnt show add banners. Here is a screenshot.

    oscxms.jpg

     

    Where it says Menu:/ there is nothing there. It was there before and i never changed it. Only thing i did was reinstall my FluxCP.

  4. I was able to make my own custom homunculus skill. The skills work and every thing but the only problem is the sprite showing as a poring. I think the poring is the default if the client can't find the sprite. I'm pretty sure I did everything right. I added my own custom mobs but this homunculus sprite problem i can't figure out.

    Anyone know where we can get this to work.

    Here is a post that i found with people with the same problem.
    http://www.eathena.ws/board/index.php?showtopic=278734



    http://i556.photobucket.com/albums/ss10/kris_soler/screeneAthena000.jpg

     

     



    bump

     

  5. I'm using the job changer from rathena.

     

    This is how my job changer goes.

     

    for example: novice>Thief>Assassin>Assassin Cross

     

    I took out the rebirth part so they can go straight to Trans Class.

    I didn't want them leveling back to High Novice and High thief.

     

    My question is about those 100 stat points they get from rebirth.

    Are they suppose to keep those or they get removed when they change to Trans Class?

     

     

     

    The jobchanger in down below.

    jobmaster.txt

  6. Thank you and also do you have the .act file for it too. How were you able to find the item in the data.grf?

    Bump anyone know where i can get the drop and act. files for the easter egg shell?

  7. Hi guys Im having trouble with adding custom items into my 2012-04-10 client, My item doesnt show up when I equipe it. All of the information is on them and the stats take affect, but it just doesnt show up. I've tried a lot of guides but I havent found one thats helped with my problem. If you know how to help please reply or add me on skype: Th34gotten1

    These are the errors I get when I run the client.post-14481-0-81823800-1359854088_thumb.pngpost-14481-0-95497500-1359854093_thumb.png

    post-14481-0-12291000-1359853339_thumb.pngpost-14481-0-52205100-1359853396_thumb.pngpost-14481-0-51641500-1359853643_thumb.pngpost-14481-0-53281700-1359853719_thumb.pngpost-14481-0-46726600-1359853792_thumb.pngpost-14481-0-45260800-1359853845_thumb.pngpost-14481-0-48669400-1359853891_thumb.png

    the problem is the commas. they don't want commas at the very end of the list.

    at the very bottom it should be

    ACCESSORY_Baal_Helmet = 2000

    DO NOT PUT A , ON THE LAST ITEM OF THE LIST.

    and for [ACCESSORY_IDs.ACCESSORY_SKYMET] = "_½ºÄ«À̸ä" its going to need a , because its not the last item of the list the Baal Helmet is the last item of the list.

    and remove the _ in [ACCESSORY_IDS.ACCESSORY_Baal_Helmet] = "_baal_helmet" You don't have a files called _baal_helmet. Change it to baal_helmet

    Just remember no commas at the very last item of the list of your lub/lua files. If you add something remember to put a comma on it if its not the last item on the list.

  8. good day rathena, im using a vps server via asurahosting and i am now stuck on setting up my fluxcp. ive been following judasbible for quite some time now and it helped me a lot. the thing is i already have a phpmyadmin database setup provided by asurahosting. and im trying to import? im not sure what to do. basically i want players to be able to register to my server, and other stuff on my database to show up on my website like, pvpladder, guild ladder, online players, etc. im very new to using sql and php stuff. so if anyone can help thankyou so much.

    bump

    If I do remember asura hosting does a free one time setup flux CP. Send a ticket to them and they should set you up for free.

  9. try this

    OnTouch:
    while (!getmapxy(.@map$,.@x,.@y,0) == 0 ) {
      	 // check distance
    	if (.npc_map$!=.@map$ || distance(.@x,.@y, .npc_x,.npc_y) > 2 ) {
    		set @idtime,0;
    		break;
    	}
    	set @idtime,@idtime+1;
    	if (@idtime >=3600) { getexp 100,100;  set @idtime,0;  }
    	sleep2 1000;
    
    
    }
    end;
    

    Thank you I'll try it out!

  10. So i have this script that i found somewhere in eathena. What it does it cast santuary and when you stand near the area of the npc it heals you. Does anyone know how to change it so if you stand there for a certain amount of time "say like 1 hour" It will give you a certain amount of exp or maybe an item perhaps.

    This idea was from Forsaken Online

    Here's the script if anyone wants to help me out changing it to how i mentioned.

×
×
  • Create New...