Jump to content

HD Scripts

Members
  • Posts

    183
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by HD Scripts

  1. On 8/31/2021 at 6:20 AM, Emistry said:

    custom skill effect? or something that work like functor mod? the LGP i think... that highlight cell area for skills

    Hey, 

    I was told it's something with "hateffect"...
    maybe creating a .spr and calling NPC.

  2. Try

     

    -	script	acclv10	-1,{
    
    OnPCLoginEvent:
    
    if(!#japegou && BaseLevel == 1){
    	mes "Bem-vindo ao Oasis!";
    	mes "Vou te desconectar apenas para atualizar sua conta.";
    	close2;
    	BaseLevel += 9;
    	JobLevel += 9;
    	#japegou = 1;
    	atcommand "@kick "+strcharinfo(0);
    	end;
    	} else { end; }
    }

     

  3. Goodnight.

    I would like to know how I can make this effect from the image below?
    I searched in rathena/doc but didn't find anything related.

    Appreciate.

     

    Spoiler

    Screenshot_1.jpg.5fc16dbf1f0443f4c20c0b2e9eb58928.jpg


     

  4. Hi.

    So, what folder is recommended for emulator?
    My: /var/opt/emulator

    #edit

    Quote

     

    
    sudo yum install devtoolset-7-gcc devtoolset-7-gcc-c++

     

     


    image.png.91f96cc14518dde77bb9b8971b2872f0.png

    @edit 2

    My VPS is running, this command can disable my vps? or lost my files?


    sudo yum install centos-release-scl

  5. Hi,

    i'm trying to compile a old emulador +/- 2012.
    VPS has installed zlib.
    But when digit coomand

    ./configure
    

    Show this error on console:

    configure: error: zlib library not found or incompatible, please specify the correct path with --with-zlib=DIR... stopping
    

     

    asdasd.jpg.f3ca626e8fa43800809f445ba45b7fe2.jpg


    Version zlib instaled: Package zlib-1.2.7-18.el7.x86_64 already installed and latest version
    Somebody can tell me what to do? ths

     

  6. Hi,

    Can anyone tell me which files in the texture / basic_interface folder are responsible for this "message box"? Thanks.
     

    image.png.2f5990b0c06d505fa8d1001f835f5a47.png

    @edit

    I found files called "sysbox_ld.bmp", "sysbox_lm.bmp", "sysbox_lu.bmp", "sysbox_md.bmp", "sysbox_mu.bmp", "sysbox_rd.bmp", "sysbox_rm.bmp", "sysbox_ru.bmp". Hexed 20141022a.
    Can close topic.

  7. Even trying to copy the "announce" command, making the changes to leave it just below the old one, changing the X and Y and align positions.
    Even after compiling, there is no change in the game.
    Anybody know?

    const char *mes       = script_getstr(st,2);
        int         flag      = script_getnum(st,3);
        const char *fontColor = script_hasdata(st,4) ? script_getstr(st,4) : NULL;
        int         fontType  = script_hasdata(st,5) ? script_getnum(st,5) : FW_NORMAL; // default fontType
        int         fontSize  = script_hasdata(st,6) ? script_getnum(st,6) : 12;    // default fontSize
        int         fontAlign = script_hasdata(st,7) ? script_getnum(st,7) : 0;     // default fontAlign
        int         fontY     = script_hasdata(st,8) ? script_getnum(st,8) : 0;     // default fontY
    

    doc/scripts_commands.txt

    Optional parameters may not work well (or at all) depending on a game client used.
    

×
×
  • Create New...