Jump to content

Domo

Members
  • Content Count

    28
  • Joined

  • Last visited

Posts posted by Domo


  1. Need to introduce a new item like dead branch.

    how do I configure the list of monsters that comes out from that item?

     

    I only see DB's script:

    monster "this",-1,-1,"--ja--",-1,1,"";

    and the mob_db.txt

    cant really tell what attaches the list to the item.


  2. I will be making the Spr and Act file since I need it to look like one of my characters :wow:

    Thank you for the replies

     

    if you guys have any links for the tutorial & application to make SPR and ACT files.

    (also for HG SPRs and ACTs) that would be great


  3.  

     

    Hi po mga kuya at ate.  :gawi:  Mga katanungan lamang po sa aking mga problema.

     

     

    1. I tried to edit "idnum2itemdesctable" and obviously "2014-02-05bRagexe" hindi nya na ata? supported kasi hindi naman napalitan yung description. Ano po ang solution dito para mapalitan ang descriptions ng mga items? gamit 2014 client.
     

     

    2. Adding new items such as Headgears/Costumes etc. Dahil sa una kong problema hindi ko magawa maglagay ng custom item kahit sa guide sa wiki. "http://herc.ws/wiki/Custom_Items#Structure" ano po ang solution dito? pareho ba method ng rathena/eathena sa hercules? I highly doubt na pareho or dahil sa 2014 Client lang.
     

    Maraming Salamat po!  :no1:  :awsm:  :kis:

    Sa #1 Posible try mo to http://herc.ws/board/topic/11686-guide-adding-new-items-without-iteminfolub/

     

    @@kyeme, pwede penge po files ng moon & star, world star, will o wisp and yung musical notes  :lol:


  4. It's a pretty simple NPC you can make using *getlook script command (*setlook for variable reference)

    Thank you very much; I didn't bother to read the variable references the first time i read that page  :)

     

    time to show my stylist script ?

    https://github.com/AnnieRuru/customs/blob/master/scripts/stylist.txt

     

    when you start searching, it automatically save a variable on which style you are on

    the revert feature was from Euphy script though

    https://github.com/HerculesWS/Hercules/blob/master/npc/custom/stylist.txt

    Thanks for the script; I could probably use this when I overhaul my existing NPCs to make them more efficient.


  5. Can somebody help me make an NPC that detects the character's Clothing dye, hair color, and hair style?

     

    example: if you click on the NPC it tells you your own variables (like clothing dye: 20, hairstyle: 10, hair color: 5)

     

    This is the current script for the stylist made by Hudelf. i think this is rAthena.

     

    -	script	Stylist#Man::ST_00	-1,{	 set .@name$,"[ ^FF8000Stylist^000000 ]";	setarray .@max[1],553,256,90;		// Number of cloths, haircolors, hairstyles in client	setarray .@blacklist[0],0,143,261;	// NPC will skip any cloth colors in this array.						// 	 Use for palettes that cause errors or just plain look bad.						//		Leave first value at 0 to disable.	setarray .@type[1],7,6,1;		// DO NOT EDIT	set .@style,0;		mes .@name$;	mes "I can change your appearance for you if you'd like.";	mes " ";	mes "Just choose what you'd like to change:";	next;	set .@s,select("Clothes color",				"Hair color",				"Hair style");		mes .@name$;	mes "Alright, how would you like to search?";	next;	menu "Start at the beginning",L_start,		"Choose where to start",-;		// CHOOSE WHERE TO START =====================================================	mes .@name$;	mes "Alright, choose a style between ^0000FF0 and " +.@max[.@s]+ "^000000.";	next;	input .@style;		if (.@style < 0 || .@style > .@max[.@s]) {		mes .@name$;		mes "Style chosen is out of range.";		close;	}   L_start:	setarray @revert[1],getlook(.@type[.@s]),0,0;	mes .@name$;	mes "Alright here we go, starting at style ^007700" +.@style+ "^000000.";	next;	  // BEGINNING OF STYLE MENU LOOP ================================================  L_menuloop:	if (.@blacklist[0]) {		for (set .@f,0; .@f < getarraysize(.@blacklist); set .@f,.@f+1) {			if (.@style == .@blacklist[.@f] && .@previous == 1 && .@s == 1) {				message strcharinfo(0),"GM Message - Cloth " +.@style+ " was removed.";				set .@style, .@style - 1;				goto L_menuloop;			} else if (.@style == .@blacklist[.@f] && .@s == 1) {				message strcharinfo(0),"GM Message - Cloth " +.@style+ " was removed.";				set .@style, .@style +1;				goto L_menuloop;			}		}	}	setlook .@type[.@s],.@style;	mes "This is style number ^007700" +.@style+ "^000000.";		set .@next, .@style + 1;	set .@prev, .@style - 1;		// MAXIMUM MENU	if (.@style == .@max[.@s]) {		set .@next,0;		message strcharinfo(0),"Limit Reached";	}		// MINIMUM MENU ==============================================================	if (.@style == 0) {		set .@prev,.@max[.@s];		message strcharinfo(0),"Beginning Reached";	}		// PREVIOUS MENU =============================================================	if (.@previous) {		menu "^FF0000Previous - " +.@prev+ "^000000",L_prev,			"^0000FFNext - " +.@next+ "^000000",L_next,			"Jump to",L_jump,			"Save",L_save,			"Load",L_load;	}		// DEFAULT MENU ==============================================================	menu "^0000FFNext - " +.@next+ "^000000",L_next,		"^FF0000Previous - " +.@prev+ "^000000",L_prev,		"Jump to",L_jump,		"Save",L_save,		"Load",L_load;		  L_next:	set .@previous,0;	set .@style, .@next;	goto L_menuloop;   L_prev:	set .@previous,1;	set .@style, .@prev;	goto L_menuloop;	  L_jump:	next;	mes .@name$;	mes "Choose which style you'd like to jump to:";	next;	input .@style;	if (.@style < 0 || .@style > .@max[.@s]) {		mes .@name$;		mes "Style chosen is out of range.";		close;	}	goto L_menuloop;	  L_save:	next;	mes .@name$;	mes "Choose which slot you'd like to save to:";	set .@x, select("Slot 1 - [" +@revert[1]+ "]",					"Slot 2 - [" +@revert[2]+ "]",					"Slot 3 - [" +@revert[3]+ "]");						setarray @revert[.@x], .@style;	goto L_menuloop;	  L_load:	next;	mes .@name$;	mes "Choose which slot you'd like to load from:";	set .@x, select("Slot 1 - [" +@revert[1]+ "]",					"Slot 2 - [" +@revert[2]+ "]",					"Slot 3 - [" +@revert[3]+ "]");						set .@style, @revert[.@x];	goto L_menuloop;} prontera,186,198,4	duplicate(ST_00)	Stylist#Man	558

  6. Ratemyserver gets its db from rA/Hercules, iROwiki is user contributed.

    We don't follow any of those, it fully depends on description(by kro) and leaks of db(if any)

    Can I get the link where I can get the KRO descriptions?

    or a copy of a latest DB with all official descriptions and scripts :(


  7. I need a script where I can whisper a character name to an NPC then the NPC opens a dialogue box to that character.

    is this possible?

     

    Follow up question: I also need a script where I can whisper a character name to an NPC then the NPC kills that character.


  8. I need help with Replays

     

    I get this error

     

    29qcrjo.jpg

     

     

     

    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: ***.exe
    Application Version: 0.0.0.0
    Application Timestamp: 52005391
    Fault Module Name: ***.exe
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 52005391
    Exception Code: c0000005
    Exception Offset: 00114d9d
    OS Version: 6.1.7600.2.0.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

    If the online privacy statement is not available, please read our privacy statement offline:
    C:Windowssystem32en-USerofflps.txt

     


  9. This is an old topic but this is also a problem of mine. I can play replays via normal character but not replays made by GM characters (hidden or not). 

     

     

    Problem Event Name: APPCRASH
      Application Name: ***RO.exe
      Application Version: 0.0.0.0
      Application Timestamp: 52005391
      Fault Module Name: ***RO.exe
      Fault Module Version: 0.0.0.0
      Fault Module Timestamp: 52005391
      Exception Code: c0000005
      Exception Offset: 00114d9d
      OS Version: 6.1.7600.2.0.0.256.1
      Locale ID: 1033
      Additional Information 1: 0a9e
      Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
      Additional Information 3: 0a9e
      Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
     
    Read our privacy statement online:
     
    If the online privacy statement is not available, please read our privacy statement offline:
      C:Windowssystem32en-USerofflps.txt

     

×
×
  • Create New...

Important Information

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