Jump to content

kukayasko

Members
  • Content Count

    44
  • Joined

  • Last visited

Posts posted by kukayasko


  1. On 28/09/2016 at 6:10 PM, Aurora said:

    Solved. Found it myself

    NICE! You should share, but then you just go away.
    This is how most people of this forum thinks: HEY HEY HEY I NEED HELP PLEASE HELP. Oh, I found the solution and will keep this for me.

    Go back to the first step and remember that you was the one asking for solution, and you could help people like you.


  2. Quote

    -    script    hourlypoints    FAKE_NPC,{
    OnPCLoginEvent:    
    if (getgmlevel() == 99){
    initnpctimer;
    end;
    }

    OnTimer1000:
        getitem 20172,1;
        stopnpctimer;
        end;
        
    OnPCLogoutEvent:
    stopnpctimer;
    }


  3. Before: No virus

    After: Trojan in almost all.

     

    Tested: Custom Icon in Nemo = 62x Trojan

    Test2: Custom Icon random in nemo (not an icon related to ragnarok) = 0 virus

    Test3~10: Many icons differents about ragnarok = 62x trojan

    Test11: Another icon about ragnarok = ok.

     

    So guys, this is the solution if you have this problem. Do not use the diff option "Use ragnarok icon", instead of this use "custom icon" and try to find one untill you scan find no virus.

     

    @4144 Thanks for the good intention.


  4. Hi. It's a gold way to easily edit your skills damage if you are trying to balance your server.

    Using this method, you can remove/add damage only for PvP/GvG/BM, then the players will do the original damage in mobs.

    db/pre-re/map_zone_db.conf  or  db/re/map_zone_db.conf

    Sample 1 - PvP:

    {


        /* PvP zone is applied to all maps with a pvp mapflag */
        name: "PvP" /* changing this name requires MAP_ZONE_PVP_NAME to also be changed in src/map/map.h file */
        
        disabled_skills: {
            BS_GREED: "PLAYER"
            CG_HERMODE: "PLAYER"
        }
        
        disabled_items: {
            Greed_Scroll: true
        }
        
        mapflags: (
            "nocashshop",
    "adjust_skill_damage    ASC_BREAKER    150",
    "adjust_skill_damage    CR_ACIDDEMONSTRATION    50",

        )
        
    },

    What that means: working of PvP maps (pvp mapflag)

    ASC_BREAKER (Soul Breaker) will have 150% damage (50% more damage) (If the damage was 10k, then now it will be 15k)

    CR_ACIDDEMONSTRATION will have 50% damage (50% less damage) (If the damage was 20k, then now it will be 10k)

     

    Now you can do the same in "    /* GvG zone is applied to all maps with a gvg mapflag */"  and "    name: "GvG2"" or in what you want. But these will make changes for PvP and WoE1/WoE2.

     

     


  5. Hi! Try this:

    https://technet.microsoft.com/en-us/library/ff431742.aspx

     

    To mark an application to always run as an administrator, do the following: 
    1. On the Start menu, locate the program that you want to always run as an administrator. 
    2. Right-click the application’s shortcut, and then click Properties. 
    3. In the Properties dialog box, click the Compatibility tab. 
    4. Do one of the following: 

    • To apply the setting to the currently logged-on user, select the Run This Program As An Administrator check box, and then click OK.
    • To apply the setting to all users on the computer and regardless of which shortcut is used to start the application, click Change Setting For All Users to display the Properties dialog box for the application’s .exe file, select the Run This Program As An Administrator check box, and then click OK twice.



    The application will now always run using an administrator access token. Keep in mind that if you are using a standard account and prompting is disabled, the application will fail to run. 


  6. 17 hours ago, meko said:
    
    -	script	AutoVIP	FAKE_NPC,{
    
    OnPCLoginEvent:
    	// save the original group
    	@ACTUAL_GROUP = getgroupid();
    
    	// check if the player was never a VIP
    	if (##VIP_UNTIL < 1) {
    		// give the free VIP status
    		##VIP_UNTIL = gettimetick(2) + .free_vip_length;
    	}
    
    	// check if the player is currently a VIP
    	if (##VIP_UNTIL > gettimetick(2)) {
    		// move the player to the VIP group until logout
    		setgroupid(.vip_group);
    
    		// notify the player
    		dispbottom("You are a VIP player.");
    
    		// schedule a timer to revert the group on expiration
    		addtimer((##VIP_UNTIL - gettimetick(2)) * 1000, strnpcinfo(0) + "::OnExpire");
    	}
    
    	// check if the player was a VIP but it expired while away
    	else if (##VIP_UNTIL > 1) {
    		goto OnExpire;
    	}
    end;
    
    OnExpire:
    	if (##VIP_UNTIL <= gettimetick(2)) {
    		// revert to the original group
    		setgroupid(@ACTUAL_GROUP);
    
    		// notify the player
    		dispbottom("Your VIP status expired. You are now a normal player.");
    
    		// update the variable
    		##VIP_UNTIL = 1;
    	}
    end;
    
    
    
    /////////// Configuration below
    OnInit:
    	.vip_group = 1; // the ID of your VIP group
    	.free_vip_length = (((60 * 60) * 24) * 5); // the length of the free VIP period (5 days)
    }

     

    Wow, you gave it on my hands for free. Thanks so much!!!

    Nice work ^.^


  7. Well, how it can work: 

    this script will check if the table "vipfree" is 0 or 1.

    If the value is 0, means that the player is new (this script never runned for him), then will add "adjgroup 1" to account for 5 days and change the value of "vipfree" to 1, which means that this script will never run again.

     

    Ok, now. How I can make it works?

    Also, I don't know how to add this table.

    It's just my idea õ/


  8.  

    Hi guys!

    I don't know how to transcript this in codes, but that is my logarithm idea:

    (no programming language, just logarithm)

    ON LOGIN:
    	{Check login, table_vipfree} // SQL TABLE
    	If table_vipfree = 1 then
    	end
    	If table_vipfree = 0 then
    	Adjust GM Level of account = 1
    	Change table_vipfree to 1
    	Set timer for GM Level = 7200 // 7200 Minutes = 5 days
    	mes "You get free VIP for 5 days, please disconnect.........................."
    	mes "msg msg msg"
    	end

  9. On 25/11/2017 at 3:30 AM, 4144 said:

    Try set packet_obfuscation in client.conf to 2, also no output from servers in report.

    Didn't worked. =/

    Now I can go to the char select, but when I select a char, I receive "Disconnected from Server" message.

    On 25/11/2017 at 1:23 AM, Wolfeh said:

    Add the NEMO patch "Disable packet encryption". The cursor bug means you need your cursors.spr updated, the new cursor will show a crossed out circle when you mouse over models or unwalkable tiles. A custom cursor sprite may need to be updated with these frames. The patch "Use custom aura limits" currently does not work/is bugged and produces the bug you are describing.

    Didn't work in any hexed?

    Btw, the cursor bug was not from the Client. It was a problem with Windows 10 that my friend was having. Thanks anyway.

     

    I'm almost givin up of a new client version. But also I'm not finding Ragexe 2014-03-05 to download anymore D:

    I guess I can diff the right way now lol


  10. This program is incredible, but now I can't oppen anymore. D:

    Windows 7

    	Assinatura do problema:
      Nome do Evento de Problema:    APPCRASH
      Nome do Aplicativo:    GRF Editor.exe
      Versão do Aplicativo:    1.5.3.3063
      Carimbo de Data/Hora do Aplicativo:    5980046b
      Nome do Módulo de Falhas:    KERNELBASE.dll
      Versão do Módulo de Falhas:    6.1.7601.17514
      Carimbo de Data/Hora do Módulo de Falhas:    4ce7b8f0
      Código de Exceção:    c06d007e
      Deslocamento de Exceção:    0000b760
      Versão do sistema operacional:    6.1.7601.2.1.0.256.1
      Identificação da Localidade:    1046
      Informações Adicionais 1:    0a9e
      Informações Adicionais 2:    0a9e372d3b4ad19135b953a78882e789
      Informações Adicionais 3:    0a9e
      Informações Adicionais 4:    0a9e372d3b4ad19135b953a78882e789
    	Leia nossa declaração de privacidade online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0416 


  11. emulador/src/map/skill.c

            case PA_GOSPEL:
                if (sce && sce->val4 == BCT_SELF) {
                    status_change_end(src, SC_GOSPEL, INVALID_TIMER);
                    return 0;
                } else {
                    sg = skill->unitsetting(src,skill_id,skill_lv,src->x,src->y,0);
                    if (!sg) break;
                    if (sce)
                        status_change_end(src, type, INVALID_TIMER); //Was under someone else's Gospel. [Skotlex]
                    status->change_clear_buffs(src,3);
                    sc_start4(src,src,type,100,skill_lv,0,sg->group_id,BCT_SELF,skill->get_time(skill_id,skill_lv));
                    clif->skill_poseffect(src, skill_id, skill_lv, 0, 0, tick); // PA_GOSPEL music packet
                }
                break;

     

    Coloque "//" na frente de:

                        status_change_end(src, type, INVALID_TIMER); //Was under someone else's Gospel. [Skotlex]
                    status->change_clear_buffs(src,3);

     

    Veja se é isso.

    Não esqueça de recompilar o emulador.


  12. 4 hours ago, Tsuuu said:

    Sorry for the delay to respond, had not seen before, could you tell me what is this npc? I searched and did not find or did not understand!

    Sorry, I don't remember.

    I'm sure that it is in npc/scripts.conf (or any scriptx.conf)

    I removed it from my RO but right now I don't remember.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.