Jump to content

vBrenth

Members
  • Posts

    311
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by vBrenth

  1. most of links on pdf are not working.
  2. Latest SVN ba yan? maybe try to report it as bug, since im not using rathena..
  3. NVM i dont like ruining other business but i think i deserved an updated after all o.O i paid your 2 projects.
  4. change that into yes, then put like 99 agi or more.. and you will have 0 delay.
  5. Nope ma vevend yan, just press ok, ignore that warning then try to view it..
  6. 2010-07-30 the best client that lots of server used, im using this client for a very long time. haha
  7. You can do that by adding the item on rathena/trunk/db/pre-re/item_noequip.txt
  8. for example arrow shower, meteor storm and ganbantein
  9. Always getting this error >.< annoying my server keep crashing every now and then.
  10. YEah, as you can see i am having a map-crash >.>
  11. help help : need this perfect hit to bypass theflee
  12. It works 100% fine but when my servers runs 2-3 minutes and the map crash ~> this is the bt full of core dumps #0 0x0819c9a7 in battle_calc_weapon_attack (src=0xaf430c84, target=0xf317dc0, skill_num=0, skill_lv=0, wflag=0) at battle.c:1557 skillratio = 100 skill = 0 s_ele = <value optimized out> s_ele_ = <value optimized out> t_class = <value optimized out> i = <value optimized out> nk = 0 n_ele = 0 '\000' sd = 0x0 tsd = 0xf317dc0 wd = {damage = 0, damage2 = 0, type = 0, div_ = 1, amotion = 624, dmotion = 400, blewcount = 0, flag = 529, dmg_lv = ATK_DEF} sc = 0xaf430ec4 tsc = 0xf318064 sstatus = 0xaf430e6c tstatus = 0xf318010 flag = {hit = 0, cri = 0, idef = 0, idef2 = 0, pdef = 0, pdef2 = 0, infdef = 0, arrow = 0, rh = 1, lh = 0, weapon = 1} __FUNCTION__ = "battle_calc_weapon_attack" #1 0x081a2536 in battle_calc_attack (attack_type=1, bl=0xaf430c84, target=0xf317dc0, skill_num=0, skill_lv=0, count=0) at battle.c:4847
  13. Emistry it gives me new error.. saying 'answer' cannot have default value.
  14. DB Error - Field 'answer' doens't have a default value? i'm using 3CeaM/eathena any help ?s
  15. First post - reserved. will edit this.
  16. Maybe your client files are not updated? like idnum*** ?
  17. prontera,166,181,6 script Stylist#sRO 990,{ set .@name$,"[^FF8000Stylist^000000]"; setarray .@max[1],553,241,43; // Number of cloths, haircolors, hairstyles in client setarray .@blacklist[0],188,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; } > Hairstyle Payment [ 20k ] > Haircolor Payment [ 50k ] > Clothcolor Payment [ 100k ] I try to use this one buts its a little buggy http://www.eathena.w...howtopic=260107
  18. Is this legal? there's a lot of free v4p script nowadays
  19. Add this mapflag <mapname>(tab)mapflag(tab)gvg(tab)off <mapname>(tab)mapflag(tab)pvp_noguild
  20. Let me try. EDIT: Thanks this is what i need
  21. Multiple Option Donation NPC Options Event Coins Valkyrie Set Diabolus Set > Event Coins 100 Coins = 10 TCG 1000 Coins = 80 TCG Note: Normal option not a shop > Valkyrie Set Valkyrie Armor = 10 TCG Valkyrie Shield = 5 TCG Note: Looks like normal shop but pay with TCG. > Diablo Set Diablo Armor = 15 TCG Diablo Shield = 10 TCG Note: Same like V.Set I know how to make the Coin and V.Armor Option i just can't make the 2 shop option. thanks in advance.
×
×
  • Create New...