Jump to content

Ridley

Administrators
  • Content Count

    1157
  • Joined

  • Last visited

  • Days Won

    86

Posts posted by Ridley


  1. k I hope to do that without beeing too dramatic or insulting xD

     

    rAthena's content is not merged (most of the time) because the code is crap. I don't know Haru personally but if you follow the pull requests you can see that he is quite picky. But that is one of the reasons why Herc is so much faster (and imo better) than rA. Why should they blindly merge code which Ind removed/replaced over several years.

    I won't say Herc is dead, they announced that thei're looking for staff. Most of the current ones are more the architect type.

    Then there is the aim to be official. It has no use to add some fantasy formulas (rA's HomunS, Rebellion) but this is my opinion. And yea there is no recent Aegis leak to get proper information.

     

    What I like on Herc: Even if it's official but obviously a bug they won't implement it. Playtester is following blindly and even add those bugs. But from what I saw recently from him he now adds options to disable those.

     

    Years ago I was part of rA by myself and I know what drama happens there. I do not know how it's here but the simple fact is that the Emu Architects are here while the content writers are at rA and blow their code up.

     

    Edit:

    Additionaly I have the feeling that's most ppl can't stand when their code is reviewed in a negative way. As you can see on rA is no code review at all. Here on herc you get instructions what to do/improve and they ask questions for specific lines in the code. I think that's another reason why people stay on other emulators.


  2. @Ridley Good script!  useful for other events and instances.

     

    Anyways, what if i will set only for an accout not global (for everyone). i will use this as for VIP.

    $@ temporarpy global account var

     

     

    Not sure what you want to say, but I asume you want only your VIP's to be warped?

     

    either check for normal players and exclude them (default groupID 0)

     

    		if(.active == 1 && (getgroupid() != 0)){
    
     

    or check if they have your VIP Group ID

     

    	OnInit:
    		bindatcmd "autores", strnpcinfo(0) +"::OnAtcommanda", 14, 99;
    		bindatcmd "autorescheck", strnpcinfo(0) +"::OnAtcommandb", 14, 99;
    		.vipgroup = 4; // Group ID for VIP
    		end;
    
     
    		if(.active == 1 && (getgroupid() == .vipgroup)){
    

  3. it's no texture but a sprite (ef_snow.spr)

    and hardcoded in the client. but you can disable it with a hex editor (I use Hexedit)

    open your client with Hexedit

    find: 786D61732E727377

    replace with: 0000000000000000

     

    result:

    6a80b5bd441f48f8ae5ed505c473d098.gif

     

    @@Mysterious this should be moved to Client-Side Support

     

     


  4. OnPCDieEvent:
    		if(.active == 1) {
    			getmapxy(@mapname$,@mapx,@mapy,0);
    			if(@mapname$ == .map$) {
    				message strcharinfo(0),"AUTO REVIVING IN 5 SECONDS";
    				sleep2 5000;
    				atcommand "@alive";
    				warp .map$,.mapx,.mapy;
    				end;
    			} else {
    				end;
    			}
    		} else {
    		end;
    		}

    use the command before the warp, (warp detaches the player)

    example above is how i did it in the autores command

     

    http://herc.ws/board/files/file/240-autores-auto-resurrection/


  5. the grf has some minor issues which i will fix for the next update (no eta on this yet).

     

    Hi! can i use this as base grf of my test server? Because i can't find basic or clean data folder to use as grf in my test server.

     

    you still need stuff like the client translationf rom https://github.com/ROClientSide/Translation and a clientinfo providing your server information

    either make a custom grf or merge it with the data.grf

     

    I just wanted to mention that this special compressed .grf does not work with BrowEdit.

    Great work anyway. I love it. :')

     

    yeah that's true. i will post here if i have an update for it

     

    Hi Ridley Could I share your data folder to update my maps and quest !! :sob:

     

    uhm, what do you mean? feel free to use it for your server


  6. 
    

    prontera,150,150,3 script Name 4_M_SAGE_C,{

    mes "Hey bro!";

    mes "I work in a pizzeria because I love pizza! HAHA";

    next;

    mes "Do you love pizza?";

    if (select("Yes","No") == 2) { mes "You do not know what you're missing!"; close; }

    mes "I can't give you a piece of that, sorry...";

    mes "But If you bring some items for me, I can give you a incredible hat!";

    next;

    mes "Do you want a Pizza Hat?";

    mes "Besides being beautiful, it enables ^0000FFLv1 Provoke.";

    next;

    if (select("Sure!","No, Thanks..") == 2) { mes "Ok, no problem. Cya"; close; }

    mes "Ok, I will need:";

    mes "^0000FF50x Cheese";

    mes "^0000FF50x Egg";

    next;

    emotion e_heh;

    mes "And please don't forget my tip";

    mes "^0000FF150.000 Zeny";

    next;

    mes "You have my items?";

    if (select("Yes","Not yet") == 2) { mes "Take your time and come back whenever you have them."; close; }

    if (countitem(Egg) >= 50) && (countitem(Cheese) >= 50) && (Zeny >= 150000) {

    next;

    mes "There you go!!";

    close2;

    delitem Egg,50;

    delitem Cheese,50;

    Zeny = Zeny - 150000;

    getitem Pizza_Hat, 1;

    end;

    } else {

    next;

    mes "Hmmm... It seems as though you dont have the correct amount of items needed. Come back when you do!";

    close;

    }

    }

×
×
  • Create New...

Important Information

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