Jump to content

Eraumavez

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by Eraumavez

  1. Hello, i would like a script that disable some skills during WoE time, i know i can use skill_nocast_db but mine isn't working, i've tried to use restricted map and add in db, but it doesn't worked. I dont know why, because it's loading in map-server. So, i'd like to request this script, if it can disable in all maps during WoE its better. I had find this topic, but the command sc_end just works with usable skills, like assumptio, and i didn't find another command in script_commands.

     

  2. On 7/13/2020 at 1:33 AM, Bringer said:
    
    			} else {
    				if ( sc->data[SC_REFLECTSHIELD] && skill_id != WS_CARTTERMINATION && skill_id != GS_DESPERADO ) {
    					// Don't reflect non-skill attack if has SC_REFLECTSHIELD from Devotion bonus inheritance
    					if (!skill_id && battle_config.devotion_rdamage_skill_only && sc->data[SC_REFLECTSHIELD]->val4)
    						rdamage = 0;
    					else {
    						rdamage += damage * sc->data[SC_REFLECTSHIELD]->val2 / 100;
    						if (rdamage < 1)
    							rdamage = 1;
    					}
    				}

     

    Worked, thank ^^'

  3. On 7/10/2020 at 9:12 PM, Bringer said:

    https://github.com/rathena/rathena/blob/master/src/map/battle.cpp#L7302

     

    
    	if (flag & BF_SHORT) {//Bounces back part of the damage.
    		if ( (skill_get_inf2(skill_id, INF2_ISTRAP) || !status_reflect) && sd && sd->bonus.short_weapon_damage_return ) {
    			rdamage += damage * sd->bonus.short_weapon_damage_return / 100;
    			rdamage = i64max(rdamage,1);
    		} else if( status_reflect && sc && sc->count ) {
    			if( sc->data[SC_REFLECTSHIELD] ) {
    				struct status_change_entry *sce_d;
    				struct block_list *d_bl = NULL;


    NO Reflect CT & Desperado
     

    
    if ( (skill_get_inf2(skill_id)&INF2_TRAP || !status_reflect) && sd && sd->bonus.short_weapon_damage_return && skill_id != WS_CARTTERMINATION && skill_id != GS_DESPERADO ) {

     

    First of all i would like to say thanks for u reply, but it didn't worked (yes i've recompilated).

  4. Good evening ! I'm creating the server but I'm having difficulty with the damage, as it is full pvp 999 it is usual to have 15000000 maximum life, but then when I put this life the damage is relatively low it is almost impossible to kill to have an idea of the damage even with the high attack (7500) is only 7k how do I increase the overall damage of skills and attacks?

     

    Em português:

    Boa noite ! To criando o servidor mas estou tendo dificuldade com o dano, como é full pvp 999 é usual ter 15000000 de vida máxima, mas dai quando coloco essa vida o dano fica relativamente baixo fica quase impossível de matar, pra se ter uma ideia o dano mesmo com o ataque alto (7500) está rancando apenas 7k como faço pra aumentar o dano geral?

  5. Good morning! Im customizing my server but when i add a custom item it doesn't appear in the character. Its possible to read the item's information with the right button, the photo of the same appears, but when equipping the character it is as if he had not equipped anything. I looked for other posts with the same problems, but i couldn't identify the error. I use hexed 2018-06-21 and the latest version of the emulator. 

    Spoiler

        ACCESSORY_Poporing_Gigante = 4516
    }

    Spoiler

        [ACCESSORY_IDs.ACCESSORY_Poporing_Gigante] = "_Poporing_Gigante",

    Spoiler

    11078,Poporing_Gigante,Poporing Gigante,4,0,,100,,30,,4,0xFFFFFFFF,63,2,512,,1,1,4516,{},{},{}

    Spoiler

    [11078] = {
            unidentifiedDisplayName = "Hat",
            unidentifiedResourceName = "Poporing_Gigante",
            unidentifiedDescriptionName = {
                "Custom"
            },
            identifiedDisplayName = "Poporing Gigante",
            identifiedResourceName = "Poporing_Gigante",
            identifiedDescriptionName = {
                "Custom adquirido por meio de doação.",
                "Class:^6666CC Headgear^000000",
                "Defense:^0000FF 30^000000",
                "Location:^6666CC Superior^000000",
                "Weight:^009900 90^000000",
                "Level Requirement:^009900 0^000000",
                "Jobs:^6666CC Todas as classes^000000"
            },
            slotCount = 4,
            ClassNum = 4516,
            costume = false
     

     

  6. Good evening! When connecting my server the error below is being pointed out, I looked for solutions here in the forum but the topics with the same error "111" do not contain a solution. I tried to change The error is happening on the linux system. [Success]: Connecting to 127.0.0.1
    [Error]: make_connection: connection failure (socket # 7, error 111: Connection refused)!

    Em português/In portuguese:

    Boa noite! Ao ligar o meu servidor o erro abaixo está sendo apontado, procurei por soluções aqui no fórum porém os tópicos com o mesmo erro "111" não contem uma solução. O erro está acontecendo no sistema linux. [Sucesso]: Conectando a 127.0.0.1
    [Erro]: make_connection: falha na conexão (soquete # 7, erro 111: Conexão recusada)!

  7. 3 hours ago, Zack- said:

    You mean you dont have src/config? try find the src/config/renewl.h if you dont see the renewal.hpp

     

    No, I have the file, but it doesn't have that option

    /// Leave this line to activate the renewal calculation to increase the status / parameter points

    #define RENEWAL_STAT

  8. 50 minutes ago, Litro Endemic said:

    yes there is, just inverse the atk calc on renewal part since you want only atk stats part

    but that would give you more headache...

    or you can try only turn off setting below, to use all pre-re stats calc while enabling renewal feature,

    
    /// Renewal stat calculations
    /// (disable by commenting the line)
    ///
    /// Leave this line to enable renewal calculation for increasing status/parameter points
    #define RENEWAL_STAT

     

     

    Sorry for the delay I was looking for, but I'm not finding this option, its in which file?

  9.  

    Good night! I'm working on a 999 server but when I put the maximum in strength (800) it takes only 1.3k of atk. How do I make each point of str give + atk? For example, with same 800 strength get 8k de ataque. I looked for topics and tutorials focused on this teaching, but the ones I found were unanswered.

     

    Boa noite! Estou mexendo num server 999 mas quando eu coloco o máximo em força (800) pega apenas 1,3k de atk. Como faço pra cada ponto de str dar + atk? Pra por exemplo, com 800 de força pegar 8k de ataque. Procurei por tópicos e tutoriais voltados a esse ensinamento, porém os que achei estavam sem resposta.

×
×
  • Create New...