Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 1 to 25 of 500
Search took 0.04 seconds.
Search: Posts Made By: c0ncrete
Forum: Quests::Q&A 12-29-2021, 06:59 PM
Replies: 3
Views: 10,567
Posted By c0ncrete
sub EVENT_DEATH { # leave early if hard mode...

sub EVENT_DEATH {
# leave early if hard mode not set
return unless (defined $qglobals{'hardmode'});
if ($qglobals{'hardmode'} == 1) {
# $my CorpseCount = 0 does nothing
# $charid...
Forum: Support::General Support 06-01-2019, 11:03 AM
Replies: 8
Views: 3,798
Posted By c0ncrete
if all clients are connecting from the machine...

if all clients are connecting from the machine running the server, change all of your IP addresses in your config to 127.0.0.1 and you should have no further issues.
Forum: Support::General Support 05-30-2019, 08:27 PM
Replies: 8
Views: 3,798
Posted By c0ncrete
It's simple. If you turn off your WiFi, you are...

It's simple. If you turn off your WiFi, you are disabling the interface that has the IP address you are attempting to connect to, according to the configurations you have posted in this thread.
Forum: Quests::Q&A 05-25-2019, 06:43 AM
Replies: 17
Views: 18,035
Posted By c0ncrete
you're using the wrong operator. use ~~ to test...

you're using the wrong operator. use ~~ to test if a value is in an array (!~ for inverse).

using code blocks with long lines (like your @Swimmers definition) on the forums is what causes the...
Forum: Quests::Q&A 05-25-2019, 01:26 AM
Replies: 17
Views: 18,035
Posted By c0ncrete
your token on Swimmers needs to be a @ (for an...

your token on Swimmers needs to be a @ (for an array), not a $ (for a scalar).
Forum: Quests::Q&A 05-24-2019, 05:35 PM
Replies: 17
Views: 18,035
Posted By c0ncrete
Paste an example of what you are trying to do in...

Paste an example of what you are trying to do in EVENT_SAY and have issues with.

Also, don't forget to run perl -c your_script.pl from a command prompt for a quick syntax check.
Forum: Support::General Support 05-22-2019, 08:33 AM
Replies: 8
Views: 3,798
Posted By c0ncrete
it's likely a faulty configuration of the 'world'...

it's likely a faulty configuration of the 'world' section of eqemu_config.json ('address' and 'localaddress' specifically). if you are playing from the same machine, i believe 127.0.0.1 should work...
Forum: General::General Discussion 05-13-2019, 03:02 PM
Replies: 12
Views: 4,728
Posted By c0ncrete
None of the quests are on the disc. None of the...

None of the quests are on the disc. None of the item stats are on the disc. None of the mob stats are on the disc. It's nowhere near as simple as inserting the client-side installer and "viola!"....
Forum: Quests::Q&A 04-23-2019, 04:41 PM
Replies: 6
Views: 6,589
Posted By c0ncrete
Seeing the answer without knowing the question...

Seeing the answer without knowing the question was bugging me. :D

There are always several ways to do something in Perl (using grep instead of the smart matching operator, for example).
...
Forum: Quests::Q&A 04-23-2019, 03:47 PM
Replies: 6
Views: 6,589
Posted By c0ncrete
What? No. # list of 10 possible item ids ...

What? No.

# list of 10 possible item ids
my @find = (
0,
1,
2,
3,
4,
5,
Forum: General::General Discussion 04-09-2019, 09:20 PM
Replies: 7
Views: 4,642
Posted By c0ncrete
Pull requests on github would likely be the...

Pull requests on github would likely be the fastest and most acceptable way to submit any change for server source, quest scripts, or core database.I wouldn't expect much beyond performance...
Forum: Support::Windows Servers 04-20-2018, 06:14 PM
Replies: 13
Views: 12,264
Posted By c0ncrete
I need to remember AS as superfluous.

I need to remember AS as superfluous.
Forum: Misc::Off Topic 04-19-2018, 05:04 AM
Replies: 15
Views: 17,122
Posted By c0ncrete
I was hoping against all hope that peanut butter...

I was hoping against all hope that peanut butter and mayo was a typo, but no. I actually had a mayo banana sandwich once in middle school. I lived, apparently. I think I got bamboozled in a trade or...
Forum: Misc::Off Topic 04-15-2018, 02:42 PM
Replies: 15
Views: 17,122
Posted By c0ncrete
ok, kanye. :p

ok, kanye. :p
Forum: General::General Discussion 04-15-2018, 02:40 PM
Replies: 12
Views: 4,549
Posted By c0ncrete
That is certainly not your typical Traktor setup....

That is certainly not your typical Traktor setup.

https://i.ytimg.com/vi/iOQZEUwrCU8/maxresdefault.jpg
Forum: Misc::Off Topic 04-15-2018, 02:09 AM
Replies: 15
Views: 17,122
Posted By c0ncrete
Here I'd thought that was a southern thing... Try...

Here I'd thought that was a southern thing... Try mashed potato and garlic roasted asparagus in a smoked ham sandwich. Thank me later.

I need a NY dog now...
Forum: Quests::Q&A 04-13-2018, 01:39 AM
Replies: 2
Views: 3,916
Posted By c0ncrete
this line is incomplete my $NPCRace = $npc ...

this line is incomplete
my $NPCRace = $npc

You can check your scripts for syntax errors from the command line as shown below:
perl -c script_name.pl
Forum: Support::Windows Servers 04-09-2018, 02:40 PM
Replies: 539
Views: 651,967
Posted By c0ncrete
1) it is a server emulator. private or pubic is...

1) it is a server emulator. private or pubic is entirely up to you.
2) you still have to have a WoW client to play on a WoW private server.
3) you have to change very little if you use one of the...
Forum: Quests::Custom 04-07-2018, 09:36 PM
Replies: 1
Views: 3,218
Posted By c0ncrete
I ran into some strange issues with the previous...

I ran into some strange issues with the previous iteration, and then I learned a new-to-me thing and reworked Absor.
The $forged_item hashref has multiple keys being assigned a shared value via...
Forum: Quests::Custom 04-05-2018, 04:04 PM
Replies: 1
Views: 3,218
Posted By c0ncrete
dispatch tables, by example (Absor)

Was puttering around with ideas to clean up Absor (repetition & lots of if/elsif statements) in tutorialb in the wee hours, and this is the result. It's not the entirety of the script, but it is most...
Forum: Quests::Q&A 04-02-2018, 05:20 AM
Replies: 6
Views: 3,930
Posted By c0ncrete
The GetSkill method has to be called from an...

The GetSkill method has to be called from an instance of an object derived from the Mob class. Your use of $GetSkill looks like it's assuming coderefs that I wrote in another script blurb...
Forum: Support::Windows Servers 04-01-2018, 04:57 AM
Replies: 46
Views: 10,353
Posted By c0ncrete
It's probably best if you work out a way to do it...

It's probably best if you work out a way to do it programatically and to log your changes so you can easily revert with granular control. I'm slowly putting together something for similar reasons...
Forum: Development::Database/World Building 03-31-2018, 05:07 AM
Replies: 3
Views: 3,638
Posted By c0ncrete
PURPOSE: List all Proving Grounds spawn group...

PURPOSE: List all Proving Grounds spawn group entries with a combined chance of less or greater than 100%,
NOTE: https://mariadb.com/kb/en/library/aggregate-functions/

SELECT ...
Forum: Development::Development 03-31-2018, 04:20 AM
Replies: 4
Views: 4,717
Posted By c0ncrete
This will help get you started. This query...

This will help get you started.

This query lists info on what Fabled NPCs are currently in the database. If there is no loottable_id listed, the NPC in question has no loot unless it's scripted....
Forum: Support::General Support 03-31-2018, 03:37 AM
Replies: 11
Views: 3,064
Posted By c0ncrete
But... There is no "they" or "them" involved in...

But... There is no "they" or "them" involved in the data or decisions on this issue. It's a single person, as the sticky I referred to is abundantly clear about. The reason you keep hearing the same...
Showing results 1 to 25 of 500

 
Forum Jump
   

All times are GMT -4. The time now is 04:59 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 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3