-
Content Count
252 -
Joined
-
Last visited
-
Days Won
33
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Asheraf
-
Flux CP > block [email protected] From the register on the site
Asheraf replied to Sidra Harris's question in General Server Support
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. -
Change item descriptions without releasing another GRF
Asheraf replied to SubZero's question in General Server Support
the magic http://herc.ws/wiki/Thor_Patcher -
are you sure you're using hercules? item_noequip was dropped long time ago
- 2 replies
-
- Endless tower
- Error
-
(and 1 more)
Tagged with:
-
you are using grf editor to make the .thor files ?
-
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;
-
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
-
2014-10-22b Error when using Bubble Gum Item ID# 12210
Asheraf replied to anjasoleil0's question in Client-Side Support
what kind of errors ? -
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
-
please check conf/battle/items.conf // How much time must pass between cash food uses? Default: 60000 (1 min) cashfood_use_interval: 60000
-
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; }
-
prontera,160,150,4 script warper 4_M_BRZ_JACI,{ if (BaseLevel == 175 && countitem(2573) && countitem(5217)) warp "isn_in", 40, 45; else end; }
-
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
-
nope it will only pet the last mob in the list
-
mob_skill_db.txt columns problem help me.
Asheraf replied to nasagnilac's question in Database Support
probably you have a missing "," in the line 4082 of the file -
How to Remove Skill Disable sp recovery from Asura ?
Asheraf replied to monkey77's question in General Server Support
http://herc.ws/board/topic/1816-asura-strike-got-delay-510second-after-cast-skill/ -
then it should be in skill_cast_db as i remember.
-
try to check the SkillData2 in skill_db if you're using latest git version
-
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; } }
-
http://herc.ws/board/topic/3554-ragnarok-episode-timeline/
-
you need to set a correct mob id probably (3003) not exist in your mob_db
-
for what you want search for : 54 6F 74 61 6C 20 3A 20 25 73 20 20 5A 65 6E 79
-
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.
-
OMG just saw it in the recent topics ^^" sry
-
dorams skill not implemented yet in hercules
-
maybe you just have to change the map or make a dup of it with different name? probably issue come from another instance script.