Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 326 to 350 of 500
Search took 0.02 seconds; generated 67 minute(s) ago.
Search: Posts Made By: c0ncrete
Forum: Quests::Custom 01-27-2013, 12:01 PM
Replies: 9
Views: 13,729
Posted By c0ncrete
glad you like it. i've added all sorts of bells...

glad you like it. i've added all sorts of bells and whistles to this on my test server. trivial encounter check, filtering based on item usability by encounter participants and/or an arbitrary...
Forum: Quests::Custom 01-27-2013, 10:04 AM
Replies: 9
Views: 13,729
Posted By c0ncrete
random loot, the easy way

i finally got around to using the new global_npc.pl script
it makes loot randomization so much easier...

this small snippet
- doesn't make changes to default loot chances
- only gives npcs with...
Forum: Quests::Q&A 01-26-2013, 08:39 AM
Replies: 10
Views: 9,098
Posted By c0ncrete
i'm not referring to you. it was directed at...

i'm not referring to you. it was directed at anyone who would imply that a group making the choice to not share something they developed themselves has a poor attitude and should be stigmatized.

i...
Forum: Quests::Q&A 01-26-2013, 07:15 AM
Replies: 10
Views: 9,098
Posted By c0ncrete
sounds like someone might feel that everyone that...

sounds like someone might feel that everyone that puts time in effort into developing something is obligated to share it.
Forum: Development::Bots 01-26-2013, 02:00 AM
Replies: 8
Views: 8,164
Posted By c0ncrete
mysql> select * from rule_values where rule_name...

mysql> select * from rule_values where rule_name like "Mercs%";
Forum: Support::General Support 01-25-2013, 10:43 PM
Replies: 2
Views: 5,283
Posted By c0ncrete
yeah. don't use the launcher or look for support...

yeah. don't use the launcher or look for support where you got it.
Forum: Support::General Support 01-25-2013, 10:41 PM
Replies: 3
Views: 5,557
Posted By c0ncrete
if the launcher isn't working, don't use the...

if the launcher isn't working, don't use the launcher. it isn't a requirement to play on any server.
Forum: General::General Discussion 01-25-2013, 08:13 AM
Replies: 6
Views: 8,321
Posted By c0ncrete
would be a good example, obviously :) i...

would be a good example, obviously :)

i guess as there are more updates made to the wiki, you might miss a few entries, depending on the speed at which your check occurs. i'm not really sure if...
Forum: General::General Discussion 01-25-2013, 07:29 AM
Replies: 6
Views: 8,321
Posted By c0ncrete
you could write something to periodically check...

you could write something to periodically check the following URL and send you a notification on any updates that match a certain criteria (user responsible for change/creation is not in a list of...
Forum: General::General Discussion 01-25-2013, 12:25 AM
Replies: 40
Views: 44,367
Posted By c0ncrete
seriously... don't write a guide elsewhere....

seriously...

don't write a guide elsewhere. put it on the wiki. that way anyone can correct/update/maintain it and information is kept in a central location instead of spread all over the place.
...
Forum: Support::General Support 01-24-2013, 03:22 PM
Replies: 12
Views: 11,293
Posted By c0ncrete
he is a busy guy that gets tons of requests

he is a busy guy that gets tons of requests
Forum: Support::Linux Servers 01-24-2013, 01:14 PM
Replies: 9
Views: 11,238
Posted By c0ncrete
true enough on all points. the problem lies with...

true enough on all points. the problem lies with the assumptions made by the end user (and the script, in this particular case), which was what i was getting at. it's always best to know what is...
Forum: Support::Linux Servers 01-24-2013, 11:40 AM
Replies: 9
Views: 11,238
Posted By c0ncrete
this is one of the reasons why using an automated...

this is one of the reasons why using an automated installer script ends up being more of a hindrance than a help.

if you'd have been reading a guide that told you copy the conf files from the old...
Forum: Support::Linux Servers 01-24-2013, 11:22 AM
Replies: 9
Views: 11,238
Posted By c0ncrete
that guide won't work as the location of some of...

that guide won't work as the location of some of the required files has been changed.

these
sourcedir/utils/*.conf

have been moved here
sourcedir/utils/patches*.conf
Forum: Support::Windows Servers 01-24-2013, 05:46 AM
Replies: 12
Views: 13,273
Posted By c0ncrete
ssh tunneling ftw

ssh tunneling ftw
Forum: Support::General Support 01-23-2013, 10:18 PM
Replies: 4
Views: 6,508
Posted By c0ncrete
have you registered a forum account there? your...

have you registered a forum account there? your account here and your account there are two entirely different things.

if all else fails, you can create a new login server account here and log in...
Forum: General::General Discussion 01-23-2013, 10:10 PM
Replies: 40
Views: 44,367
Posted By c0ncrete
binary packages / installers have a nasty habit...

binary packages / installers have a nasty habit of not being kept up to date.
Forum: Quests::Custom 01-22-2013, 05:05 PM
Replies: 6
Views: 9,102
Posted By c0ncrete
i'm having issues today... :| forgot to...

i'm having issues today... :|

forgot to escape something in the updated regex

( my $cwd = $0 ) =~ s/(?:(?!\\|\/)\S)+$//;
Forum: General::Server Discussion 01-22-2013, 11:33 AM
Replies: 4
Views: 7,536
Posted By c0ncrete
http://www.eqemulator.org/index.php?pageid=serveri...

http://www.eqemulator.org/index.php?pageid=serverinfo&worldid=1130
Forum: Quests::Custom 01-22-2013, 11:32 AM
Replies: 6
Views: 9,102
Posted By c0ncrete
this should be a platform-independent match so...

this should be a platform-independent match so things should work without worrying about symlinks, junctions, etc (i'm working with xp here...)

( my $cwd = $0 ) =~ s/(?:(?!\\|/)\S)+$//;
Forum: Quests::Custom 01-22-2013, 11:11 AM
Replies: 6
Views: 9,102
Posted By c0ncrete
good point. that makes things even more...

good point. that makes things even more efficient.

thanks for the feedback.
Forum: Quests::Custom 01-22-2013, 11:01 AM
Replies: 6
Views: 9,102
Posted By c0ncrete
small tweak change this # don't check...

small tweak

change this
# don't check items if client is over level 95
if ( $ulevel > 95 ) {
quest::say($no_help);
} to this
# don't check items if client is over level...
Forum: Quests::Custom 01-22-2013, 09:39 AM
Replies: 6
Views: 9,102
Posted By c0ncrete
shared script example

this way, when you change one, the the other is changed.

additional customizations included and commented.

guildlobby\A_Priest_of_Luclin.pl

# get current working directory from full path to...
Forum: General::General Discussion 01-22-2013, 01:08 AM
Replies: 40
Views: 44,367
Posted By c0ncrete
i'm not claiming to know everything about perl or...

i'm not claiming to know everything about perl or the quest interfaces. i never stop learning and i absolutely love it.

sometimes i have no problem with telling someone they are doing it wrong,...
Forum: General::General Discussion 01-22-2013, 12:50 AM
Replies: 40
Views: 44,367
Posted By c0ncrete
not necessarily. especially given the fact that...

not necessarily. especially given the fact that there are several different ways to create a database and source in data. command line, different utilities (which may or not be available on a given...
Showing results 326 to 350 of 500

 
Forum Jump
   

All times are GMT -4. The time now is 12:42 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3