Jump to content

Vykimo

Members
  • Posts

    236
  • Joined

  • Last visited

  • Days Won

    21

Posts posted by Vykimo

  1. Another feature to bring to RO some fresh air (and to looks like more like an actual mmorpg).

    We are all accustomed to play some characters with no voices but what if they can now shouting when dying, attacking, receiving damage and even shouting some skill's names?

    I called it "Voices Mod by Vykimo", take a look at this video demo :

    Feel free to express your feeling about this very very unusual thing in Ragnarok. :lol:

  2. Wanna see something new into Ragnarok?

    Let's check my latest creation : Little Jump in Ragnarok !

    Check it now :

    In this version you only can jump with Inser on the keyboard (usually used for sitting), that's why I don't release this now. I dream that one day I can put it on space or another one keyboard button.

     

    Can I get some review?  smile.png

    • Upvote 2
  3. Hmm, I don't think there is something interesting in map.c.

     

    It's more in script.c (and a bit in npc.c) with the function run_script_main.... 

     

    But I really need advice from src expert or rather core dev... :/ Not sure they look often at this section.

  4. Fresh idea, i like it :) may u attach screen shot?

    You want screenshot of what?

    nice idea,

    how about give an option next and close for each picture?

    I could add some extra option later like pause or stop the animation but for now I need to build the core function.

    @jezznar I succeed of making it with script but its dirty and i want to make clean src function..

    @Eat sleep Yes I need to make new thread, its where I need some precisions.

  5. Hi all,

    I'm trying to build a src function to show kind of ""video"" (more a gif since it'll play a lot of .bmp in succession) based on the cutin function.

    In fact, It's already possible doing things like this :

    mes "Video";
    for(.@i=0;.@i<100;.@i++) {
    cutin "image"+.@i,0;
    sleep2 500;
    }
    close2;
    cutin "",255;
    end;

    BUT the problem is that during the animation, the player can't do anything!!

    What I'd to do is a src function like that :

     

     *video "<filename>,<position>,<number of frame>,<number of repeat 0 for infinite>,<timetick>; 

     

    And during the animation, the player can close the npc dialog to stop the video for example.

     

     

    I'm convinced that I need to create a sub-executed program like 'donpcevent' does and put a line in 'close' function to abort this sub-program.

    but I don't know how to manage to do this.

     

    I started like this :

    BUILDIN(video)
    {
        TBL_PC* sd;
        int i;
        char *image;
    
        sd = script->rid2sd(st);
        if( sd == NULL )
            return true;
        
        image = Malloc((sizeof(script_getstr(st,2)) + 1)*sizeof(char));
        
        // Need to create a sub-executed program to not interrupt the running of the main script
    
        do {
            for(i=1; i<=script_getnum(st,4);i++) {
                
                sprintf(image,"%s%d",script_getstr(st,2),i);
                
                clif->cutin(sd,image,script_getnum(st,3));
                
                ticks = script_getnum(st,5);
    
                // Timer Function, still don't know what using
                
        } while(script_getnum(st,4)==0);
        
        free(image);
        return true;
    }

    Can someone help me to build it?

    It's a masterpiece function in customization and I'm sure It'll help a lot of people.. wink.png

    Thanks in advance!

  6. Hello,

    I've one question for the extremely-friendly browedit's mappers :

    216153screenHercules000.jpg

     

    How can I remove this ghost textures? AS you can see on the screenshot, it happend ONLY on the bottom of the screen (and rarely on the top) and partially.

    BUT, I already tested following solutions :

    1.  Changing with an hex-editor the version of the quadtree to 0x109 : the result is worse
    2. I tryed to raise the height of the ground of the fountain in the center ( it's a hole ) : no effect
    3. I tryed to bring closer the models to the ground (I raised the low-lying models and dropped the high-lying models) : no effect too
    4. I tryed too to raise the height of water... no effect
    5. And finally, I tried to save with Brow v.620 : There is no more this problem of ghost texture on the bottom But There are too many ghost models around the map.

     

    That why I prefer BrowEdit 586 to save.

     

    Does anyone have an answer? sad.png

     

     

    EDIT/ The most curious thing, is when I raise the water height, WE CAN SEE that only a small part is not loaded :

    627591screenHercules000.jpg

     

     

    Wtfgravity?

×
×
  • Create New...