Jump to content

Asheraf

Core Developers
  • Content Count

    252
  • Joined

  • Last visited

  • Days Won

    33

Everything posted by Asheraf

  1. after a little research i found a way to do this (this is not the best way to do it but it works) first open ../lib/Flux/LoginServer.php search for elseif (!preg_match('/^(.+?)@(.+?)$/', $email)) { throw new Flux_RegisterError('Invalid e-mail address', Flux_RegisterError::INVALID_EMAIL_ADDRESS); } add this after it elseif (eregi('^[a-zA-Z0-9._-]+@[mailionator]+\.[a-zA-Z.]{2,5}$', $email)) { throw new Flux_RegisterError('Invalid e-mail address', Flux_RegisterError::INVALID_EMAIL_ADDRESS); } then open the files: ../modules/account/changemail.php ../modules/account/resend.php ../modules/account/resetpass.php search for elseif (!preg_match('/^(.+?)@(.+?)$/', $email)) { $errorMessage = Flux::message('EmailInvalid'); } add after it elseif (eregi('^[a-zA-Z0-9._-]+@[mailionator]+\.[a-zA-Z.]{2,5}$', $email)) { $errorMessage = Flux::message('InvalidEmailAddress'); } this will block registration/email changing/resetting password/resending verification email to all email with domain *@mailionator.* you can add hotmail too by ading it to the elseif.
  2. are you sure you're using hercules? item_noequip was dropped long time ago
  3. you are using grf editor to make the .thor files ?
  4. change delitem .currency, .@q[3]; // delete items rentitem .@q[0], .@day * 86400; // rent an items. 86400 = 1 day in seconds callsub ClearBought; end; into delitem .currency, .@q[3]; // delete items rentitem .@q[0], .@day * 86400; // rent an items. 86400 = 1 day in seconds callsub ClearBought; close;
  5. Asheraf

    Anti Spam

    conf/battle/client.conf // Duration of client's self mute in minutes. // Note: Do not enable this, if you enabled commands for players, // because the client sees multiple commands in succession as spam. // Default: 0 (means disabled) client_accept_chatdori: 0
  6. no need for hexing it's a config in the char-server.conf file // Manage possible letters/symbol in the name of charater. Control character (0x00-0x1f) are never accepted. Possible values are: // NOTE: Applies to character, party and guild names. // 0: no restriction (default) // 1: only letters/symbols in 'char_name_letters' option. // 2: Letters/symbols in 'char_name_letters' option are forbidden. All others are possibles. char_name_option: 0 // Set the letters/symbols that you want use with the 'char_name_option' option. // Note: Don't add spaces unless you mean to add 'space' to the list. char_name_letters: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890
  7. please check conf/battle/items.conf // How much time must pass between cash food uses? Default: 60000 (1 min) cashfood_use_interval: 60000
  8. prontera,150,150,4 script buffer 4_M_BRZ_JACI,{ if (BaseLevel < 175) end; else specialeffect2 EF_INCAGILITY; sc_start SC_INC_AGI,300000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,300000,10; }
  9. prontera,160,150,4 script warper 4_M_BRZ_JACI,{ if (BaseLevel == 175 && countitem(2573) && countitem(5217)) warp "isn_in", 40, 45; else end; }
  10. for me i tried to use pet BLABLA; and i was able to pet all available mobs to be pet in the game but i dont know if it possible to have a list for specific ones
  11. nope it will only pet the last mob in the list
  12. probably you have a missing "," in the line 4082 of the file
  13. http://herc.ws/board/topic/1816-asura-strike-got-delay-510second-after-cast-skill/
  14. then it should be in skill_cast_db as i remember.
  15. try to check the SkillData2 in skill_db if you're using latest git version
  16. prontera,150,150,4 script NPC 4_M_RUSKING,{ if (BaseLevel < 175) { mes("You're level is too low to claim the prize"); close; } if (!already_claim){ mes("take those items"); getitem 12345, 1; getitem 12345, 1; getitem 12345, 1; getitem 12345, 1; Zeny += 200000; already_claim = 1; close; } else { mes("You're already claimed the prize"); close; } }
  17. http://herc.ws/board/topic/3554-ragnarok-episode-timeline/
  18. you need to set a correct mob id probably (3003) not exist in your mob_db
  19. for what you want search for : 54 6F 74 61 6C 20 3A 20 25 73 20 20 5A 65 6E 79
  20. it's hardcoded in the client if you want to edit it you have to use an hex editor and search for what you want.
  21. OMG just saw it in the recent topics ^^" sry
  22. dorams skill not implemented yet in hercules
  23. maybe you just have to change the map or make a dup of it with different name? probably issue come from another instance script.
×
×
  • Create New...

Important Information

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