Jump to content

quesoph

Members
  • Content Count

    562
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by quesoph

  1. I think this is Euphy's original script. I can't remember.
  2. Is there anyway I could place a custom Button with URL? like what thor does. eg: forgot password..
  3. quesoph

    MAC IP Address

    RO Cred has this ; Provides miscellaneous client information to the server as part of; the password/hash data. The password/hash is provided as 'key'.; Bitmask:; &1: Hardware address of the network adapter (mac).; Internet-bound adapters are searched first, otherwise; the first available is picked. If the MAC address cannot; be retrieved, '000000000000' is passed.; Note: The user receives an agreement prompt the first time they; provide the data to the server.; Note: The server must be modified to support the data format.; Example: mac=112233445566&key=mypwd123; Note: Password is always the last key-value pair and is not; urlencoded.MiscInfo=0 @edit just leave it to ' 0 '. if you have Ryuuzaki's patch..
  4. quesoph

    MAC IP Address

    I am not using any third party login window ( rolex, loki, rocred )..
  5. quesoph

    MAC IP Address

    Yeah, I tried it without the old login window and it works. thanks.
  6. quesoph

    MAC IP Address

    2012-04-10aragexe.exe
  7. quesoph

    MAC IP Address

    I am using the old login window...
  8. quesoph

    MAC IP Address

    I don't know why but last_mac doesn't register in my database.. I am not using Rolex, but I have SSO login diff.
  9. why not add items here? setarray .Shops$[1],"Equipment","Weapons","Usable";
  10. I suggest not to modify delay_rate. just modify a specific skill in skill_cast_db.txt
  11. quesoph

    Lotti Girl

    http://rathena.org/board/topic/83017-pro-lotti-girl-refine-master/
  12. Did it compile successfully ? have you added it here? ../conf/plugins.conf plugins_list: [ /* Enable HPMHooking when plugins in use rely on Hooking */ //"HPMHooking", //"db2sql", //"sample", //"other",]
  13. single pvp room. - script FSRS::fsr -1,{if ( select ( "warp now!", "nothing." ) == 2 ) close; if (getmapusers(.map$[0]) >= atoi(.map$[2])) { mes "[PVP Fight Square Reception Staff]"; mes "This map is currently full."; close; } announce "[ "+strcharinfo(0)+" ] has been join the battle!",0; warp .map$[0],0,0; end;OnInit: setarray .map$[0], "pvp_y_8-2", "Izlude", 128; waitingroom "PVP TAGISAN NG LAKAS",0; end;}//Fight Square Reception Staffaldebaran,146,172,4 duplicate(fsr) PVP#f1 685 // duplicate
  14. Multiple pvp room - script FSRS::fsr -1,{ for( set .@i, 0; .@i < getarraysize(.name$[0]); set .@i, .@i + 1 ) { set .@menu$, .@menu$ + .name$[.@i] + " - " + " [ ^ff0000" + getmapusers(.map$[.@i]) + " / " + .limit[.@i] + "^000000 ]"; set .@menu$, .@menu$ + ":"; } set .@choice, select(.@menu$) - 1; if( .map$[.@choice] == " " || .map$[.@choice] == "") { mes "Error Please Report it.";close; } // if map doesn't exist print this. if (getmapusers(.map$[.@choice]) >= .limit[.@choice]) { // check map limit mes "[ Fight Square Staff ]", "This map is currently full."; close; } warp .map$[.@choice],0,0; // warp announce strcharinfo(0)+ " Has entered "+ .name$[.@choice] + " Pvp room!",0; // announce close;OnInit: setarray .name$[0], "Izlude", "payon", "prontera", "geffen", "jazeera"; // mapname. izlude's warp name is pvp_y_8-2. setarray .map$[0], "pvp_y_8-2", "payon", "prontera", "geffen", "jazeera"; // map warp. setarray .limit[0], 128, 20, 10 , 1, 1; // map char limit waitingroom "PVP TAGISAN NG LAKAS",0;end;}aldebaran,146,172,4 duplicate(fsr) PVP#f1 685 // duplicate
  15. Diff your client with Use Plain Text Descriptions
  16. ^ function script getPremium { set .@ticks, getarg(0); if (.@ticks <= 0) { debugmes "getPremium - tried to set a timer in the past"; end; } set #prmm, ((#prmm > gettimetick(2))? #prmm : gettimetick(2)) + .@ticks; doevent "login::OnPCLoginEvent"; return;} so premium account.
  17. I've had that warning. and i am ignoring it since then. xD
  18. @kyeme just change map[sd->bl.m].flag.gvg || map[sd->bl.m].flag.pvp to map->list[sd->bl.m].flag.gvg || map->list[sd->bl.m].flag.pvp
  19. Patch that mapnametable.txt to your grf. or maybe you are using a custom map that is not listed there.
  20. Using free slot will help ofcourse. I am using 2012 client tho. Afaik when you add custom item and it doesnt show weap sprite when you attack, you need to use this free slot.
  21. Maybe you need to use specific weapon id range? -, Daggers: does not have free IDs. I have to test this one-, Katars: Starts on ID 1250. Has 35 free IDs-, 1-Handed Sword: Starts on ID 1101. Only has 2 Free IDs (in svn 4025)-, 2-Handed Sword: Starts on ID 1151. Has 30 free IDs-, 1-Handed Axe: Starts on ID 1301. Has 43 free IDs-, 2-Handed Axe: Starts on ID 1351. Has 32 free IDs-, 1-Handed Spears: Starts on ID 1401. Has 34 free IDs-, 2-Handed Spears: Starts on ID 1451. Has no free IDs-, 2-Handed Staffs: same as before-, Maces: Starts on ID 1501. Has 19 free IDs-, Books: Starts on 1550. Has only 2 IDs.-, Staffs: Starts on ID 1601. Has 79 free IDs-, Bows: Starts on ID 1724. Has 26 free IDs-, Knuckles: Starts on ID 1801. Has 95 free IDs-, Instruments: Starts on ID 1901. Has 32 free IDs-, Whips: Starts on ID 1950. Has 130 free IDs Source: http://herc.ws/wiki/Custom_Items#Weapon_Sprite_Solution_.28temporary.29 @edit /sry
×
×
  • Create New...

Important Information

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