Jump to content

Lordamax

Members
  • Posts

    328
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Lordamax

  1. I'm getting this random gravity error in woe if i use gm account to jump in the character inside WOE Castle... Module Name: C:\TaheeRO\TaheeRO.exe Time Stamp: 0x4c4f9774 - Tue Jul 27 19:35:32 2010 Exception Type: 0xc0000005 0x1000397c cps.dll 0xdd4d5468 eax: 0x00000011 ebx: 0x00000000 ecx: 0x00000000 edx: 0x00002234 esi: 0x00e642c4 edi: 0x00129760 ebp: 0x1002d307 esp: 0x0012967c stack 0012967c - 00129a7c 0012967C : 60 97 12 00 28 36 E6 00 CC C6 02 10 C9 C5 02 10 0012968C : FE 3D 00 00 C4 42 E6 00 BC 45 00 00 FF 01 00 00 0012969C : 0F 00 00 00 0F 32 00 10 00 00 00 00 04 00 00 00 001296AC : 80 B6 E6 00 A8 D0 E6 00 28 36 E6 00 60 97 12 00 001296BC : CD 98 02 10 60 97 12 00 07 00 00 00 28 36 E6 00 001296CC : E8 CD E6 00 3A 4A 00 00 70 B6 E6 00 08 00 00 00 001296DC : D0 2A 00 10 86 00 00 00 0F 52 00 00 00 00 00 00 001296EC : 00 00 00 00 60 97 12 00 1F 00 00 00 05 00 00 00 001296FC : 0E 78 00 00 F8 98 02 10 09 00 00 00 04 00 00 00 0012970C : A8 D0 E6 00 80 B6 E6 00 98 3C 00 10 28 36 E6 00 0012971C : 60 97 12 00 28 97 12 00 07 00 00 00 E8 CD E6 00 0012972C : 6B 3F 00 10 81 88 E6 00 60 97 12 00 00 00 00 00 0012973C : 00 00 00 00 40 98 12 00 50 98 12 00 7E 55 02 10 0012974C : E5 6A 00 10 60 97 12 00 04 00 00 00 6C 99 12 00 0012975C : 60 20 EB 00 CC C6 02 10 3A 4A 00 00 4E 71 00 00 0012976C : 11 52 12 0D 33 78 00 00 11 52 00 00 00 00 00 00 Launch Info 00A4 00A4 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 Job : Novice
  2. so it is okay to use those palettes?
  3. dude... thank you very much... god bless ^^ It works sir.. can you help me also blacklist some of the hair styles please
  4. but it says that it is only available for cloth colors? but my problem is on the hair color!
  5. Thanks sir! THANK YOU VERY MUCH! xD
  6. Please help me... My problem is that when my hair color reaches 21 until 40 the hair just goes weird. May i ask a help with you guys... example when it reaches 21 it will skip until 40 but the Counting of the npc is still counting 19..20..21..22..23... Thanks! // +-------------------------------------------+ // | Advanced Stylist | // +-------------------------------------------+ // | By: Hudelf | // +-------------------------------------------+ // | Current Version: 2.1 | // +-------------------------------------------+ // | Description: | // | This is the traditional stylist with | // | several new features. You can now scroll| // | backwards or forwards, and save up to | // | three palettes while logged in | // +-------------------------------------------+ // | Changelog: | // | 02/08/07 - 1.0 - Script finished | // | 06/04/07 - 2.0 - Rewrote entire script | // | Added new features | // | 11/07/07 - 2.1 - Changed var types | // | Fixed minor text issues | // +-------------------------------------------+ prontera,170,180,1 script TaheeRO Stylist 122,{ set .@name$,"[^FF8000Stylist^000000]"; setarray .@max[1],500,251,26; // Number of cloths, haircolors, hairstyles in client setarray .@blacklist[0],188,143,261,232; // 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; }
  7. i have fix the problem but i have new problem again...i got this error when my hair color reaches 20 until 40.. :-( Please help
  8. We should stop this SOPA. Ones this is implemented. Internet sucks. Oh come on America. There's no OIL on the internet lol!
  9. Yeah because my hair style and cloth color seems to be fine..just the hair color(s)...
  10. i used gryff and add the files that i have downloaded...
  11. i will try...i will post if it worked or not madam! thanks for the help dear madam hehehe! *Ma'am it doesn't work. can you help me where could i find the hair dyes folder in the grf?
  12. oh.. how could i put or use this to the grf that i'm using?
  13. oh? thanks for the response sir... i want to ask if what should i do so that the palette would support trans 2nd job?
  14. Well, this video is really awesome.
  15. When I wear my Tuxedo I got this error ! Any i can do to fix this?
  16. does this support jobs like champion, high wizard, etc? i don't have a problem in hair style and cloth color.. just in the hair dye!
  17. When my Hair Dye Reaches at 10 upwards.. The Color Changes but there is a weird color there at the nose.. What should I do to fix this? Please !Thanks! !
  18. I'm just paranoid about this law thing. I'm just worried if Gravity will support this Protect IP thingy and hunt us all down.
  19. atcommand.txt? i dont have a txt file like that here?
  20. When I'm using a GM Account... All @commands are able to be used but when normal player is used, specific @commands are unable to be used... I already set "go" to 0 in atcommand_athena and atcommand_gm_only: no in gm.conf!
×
×
  • Create New...