Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Windows Servers

Support::Windows Servers Support forum for Windows EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 04-09-2015, 06:05 PM
dagulus2
Hill Giant
 
Join Date: Feb 2013
Posts: 220
Default

Quests > poknowledge > player.pl

Which is perhaps not the most obvious place to look.

And honestly, I have no knowledge of C++ and still end up doing quite a bit of scripting. It often takes me hours to get it right, but that's par for the course.
Reply With Quote
  #2  
Old 04-09-2015, 09:29 PM
starblight's Avatar
starblight
Sarnak
 
Join Date: Jan 2007
Posts: 76
Default

First thank you for all your help. Finding it truly was the biggest step fixing it was very easy. For others I am posting what changes I made.


This example is only for Freeport west I have not tested it yet on any other zones. One cool thing is it dose not seem to need any modifications to the client. I tested on the current f2p client with both modified files and not and they both work.

Original
Code:
  	if($doorid == 25)
	{
		$zonename = "Freeport West";
		if(($client->GetClientVersionBit() & 3)!= 0) #062/Titanium
		{
		  	quest::movepc(9,77.31,-660.57,-30.24);
		}
		elsif(($client->GetClientVersionBit() & 4294967264)!= 0) #RoF+
		{
		  	
		  	quest::movepc(383,-173,-188,-69,192);
		}
		else  #SoF/SoD/UF
		{
		      # quest::popup("$zonename","Send you to the Classic $zonename? $popuptext",6,1);
		      # quest::settimer(6,5);
		      quest::movepc(9,77.31,-660.57,-30.24);
		}
  	}

New
Code:
  	if($doorid == 25)
	{
		$zonename = "Freeport West";
		if(($client->GetClientVersionBit() & 3)!= 0) #062/Titanium
		{
		  	quest::movepc(9,77.31,-660.57,-30.24);
		}
		elsif(($client->GetClientVersionBit() & 4294967264)!= 0) #RoF+
		{
		  	quest::movepc(9,77.31,-660.57,-30.24);
		  	#quest::movepc(383,-173,-188,-69,192);
		}
		else  #SoF/SoD/UF
		{
		      # quest::popup("$zonename","Send you to the Classic $zonename? $popuptext",6,1);
		      # quest::settimer(6,5);
		      quest::movepc(9,77.31,-660.57,-30.24);
		      #quest::movepc(9,77.31,-660.57,-30.24);
		}
  	}
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

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