Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 426 to 450 of 500
Search took 0.02 seconds; generated 67 minute(s) ago.
Search: Posts Made By: c0ncrete
Forum: Support::General Support 01-11-2013, 11:00 PM
Replies: 6
Views: 7,996
Posted By c0ncrete
you've also got an extra <host></host> tag in...

you've also got an extra <host></host> tag in <world></world>. i can only assume it's a left over from a copy/paste of the login server information.
Forum: Support::General Support 01-11-2013, 10:47 PM
Replies: 6
Views: 7,996
Posted By c0ncrete
there should be a comment above...

there should be a comment above <address></address> and <localaddress></localaddress> that says something to the effect of:

<!-- Only specify these two if you really think you need to. (read: You...
Forum: Support::Windows Servers 01-11-2013, 01:32 AM
Replies: 10
Views: 8,673
Posted By c0ncrete
i've never tried using strawberry perl instead of...

i've never tried using strawberry perl instead of active state's, but they have 5.10 up for download still.
Forum: Support::General Support 01-10-2013, 10:55 PM
Replies: 20
Views: 13,711
Posted By c0ncrete
not finding anything regarding this issue. have...

not finding anything regarding this issue. have DX9 installed and the correct graphics card selected via OptionsEditor.exe?
Forum: Support::General Support 01-10-2013, 10:48 PM
Replies: 20
Views: 13,711
Posted By c0ncrete
do you get the same results with other servers?

do you get the same results with other servers?
Forum: Support::General Support 01-10-2013, 10:46 PM
Replies: 20
Views: 13,711
Posted By c0ncrete
what client are you using?

what client are you using?
Forum: Support::Windows Servers 01-10-2013, 08:25 PM
Replies: 1
Views: 6,509
Posted By c0ncrete
it don't think you should run into any issues,...

it don't think you should run into any issues, since the bot tables are separate from everything else. just back up your player-related tables to be safe and you should be ok.
Forum: Support::Windows Servers 01-10-2013, 01:06 AM
Replies: 10
Views: 8,673
Posted By c0ncrete
you can also use this from a command line instead...

you can also use this from a command line instead of sourcing from a mysql command prompt (for use in batch files)

mysql -u<username> -p --database=peq < PATH\TO\peqdb_revXXX.sql
Forum: Quests::Q&A 01-09-2013, 11:24 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
YAY! GREEN FOR GO!

YAY! GREEN FOR GO!
Forum: Quests::Q&A 01-09-2013, 11:15 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
quest::spawn2(npc_type,grid,guildwarset,x,y,z,head...

quest::spawn2(npc_type,grid,guildwarset,x,y,z,heading)
Forum: Quests::Q&A 01-09-2013, 11:03 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
yes, then name the quest file script_32767.pl and...

yes, then name the quest file script_32767.pl and forget everything about %transmute and $spell_id. you're just looking for the item click.
Forum: Quests::Q&A 01-09-2013, 10:57 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
a spell isn't an item... so it doesn't have an...

a spell isn't an item...
so it doesn't have an entry in the items table in the database...
so it won't have an associated scriptfileid field...
Forum: Quests::Q&A 01-09-2013, 10:40 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
if you'd do it the way i've instructed, it will...

if you'd do it the way i've instructed, it will work.
Forum: Support::Windows Servers 01-09-2013, 10:29 PM
Replies: 11
Views: 10,028
Posted By c0ncrete
you compiled with 5.8 and installed 5.8 on your...

you compiled with 5.8 and installed 5.8 on your system?

what source revision are you using?
Forum: Support::Windows Servers 01-09-2013, 10:24 PM
Replies: 11
Views: 10,028
Posted By c0ncrete
did you try 5.8?

did you try 5.8?
Forum: Support::Windows Servers 01-09-2013, 10:22 PM
Replies: 19
Views: 20,980
Posted By c0ncrete
i don't even know.

i don't even know.
Forum: Quests::Q&A 01-09-2013, 10:17 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
clearly. because you are doing it wrong. ...

clearly.

because you are doing it wrong.

as i've said before...

1) you do not need %transmute. stop using it.

2) the script name should be script_<scriptfileid>.pl
Forum: Support::Windows Servers 01-09-2013, 09:51 PM
Replies: 11
Views: 10,028
Posted By c0ncrete
did you compile yourself or are you using...

did you compile yourself or are you using pre-compiled binaries?

32 or 64 bit?
Forum: Quests::Q&A 01-09-2013, 09:43 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
you're not using EVENT_ITEM_CLICK_CAST right. ...

you're not using EVENT_ITEM_CLICK_CAST right.

the transmute stuff is not necessary. it's specific to one item.

you're using variables that likely aren't defined in the type of script and event...
Forum: Quests::Q&A 01-09-2013, 03:40 AM
Replies: 26
Views: 26,633
Posted By c0ncrete
i may have misunderstood your original intentions...

i may have misunderstood your original intentions due to the fact that you were using EVENT_ITEM in your first post. without fully understanding what it is you are trying to do, it's extremely...
Forum: Quests::Q&A 01-09-2013, 12:12 AM
Replies: 26
Views: 26,633
Posted By c0ncrete
oops. my bad. i meant...

oops. my bad.

i meant EVENT_ITEM_CLICK_CAST...

and it needs to be in an item script named something like quests\items\script_<scriptfileid>.pl instead of player.pl

<scriptfileid> is set in...
Forum: Quests::Q&A 01-08-2013, 11:50 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
if you're wanting for it to occur when a player...

if you're wanting for it to occur when a player uses a click effect, use EVENT_CLICK_CAST.

note that you will need to have the client cast a spell in the event with $client->CastSpell() or they...
Forum: Quests::Q&A 01-08-2013, 10:34 PM
Replies: 26
Views: 26,633
Posted By c0ncrete
please use CODE tags when you post code. is...

please use CODE tags when you post code.

is this supposed to happen when someone hands a player an item? i'm not sure that EVENT_IETM is valid outside an npc script.

where is %castspell defined?
Forum: Support::Windows Servers 01-07-2013, 08:40 PM
Replies: 3
Views: 8,823
Posted By c0ncrete
post your config and world logs (and...

post your config and world logs (and EQEmuLoginServer logs if you are running your own login server... it wasn't clear if you are or not).

the launcher has nothing to do with running a server and...
Forum: Quests::Q&A 01-05-2013, 06:13 AM
Replies: 17
Views: 18,638
Posted By c0ncrete
are you trying to add random loot to the npc...

are you trying to add random loot to the npc based on the class(es) of the character(s) involved in the encounter?
Showing results 426 to 450 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