EQ2Interface.com
Search Downloads


Go Back   EQ2Interface > Featured Projects > EQ2MAP

Reply
Thread Tools Search this Thread Display Modes
  #1  
Unread 02-23-2005, 09:13 AM
Eloa Eloa is offline
EQ2MAP Webmaster
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unkown
Posts: 496
Send a message via Skype™ to Eloa
Default Notes ingame?

Is it possible to write to a file from ingame? I remember hearing something about being able to make your own notes and they save. If this is true, would it be possible to say, click a button and it sticks the /loc, target name, and zone into a note. Then the game would save that, and it could be worked so that this would be an uploadable text file to EQ2MAP Site that would convert it into POI's?

Just an idea, it'd be grand if it were possible. Though I doubt it
Reply With Quote
  #2  
Unread 02-23-2005, 10:32 AM
Deathbane27's Avatar
Deathbane27 Deathbane27 is offline
aka Mook
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Jul 2004
Server: Nektulos
Posts: 1,451
Default

Setup:

1- /joinchannel YourMom123 (Or some other unique channel that no one else would be in)

2- Have logging OFF.

Macro (Sorry, can't be done with a button script, needs spaces and thus needs a macro):

/: ; log ; loc ; tellchannel yourmom123 %t ; who longerthanlongestnameposs ; log

What this does: Turns logging ON, gets your loc, gets the target's name (without telling the world), gets the current zone (without extra junk by searching for a name that can't exist), and turns logging back OFF.

That's the only method I can think of.
__________________
If it ain't broke, it needs more features!
Reply With Quote
  #3  
Unread 02-23-2005, 10:48 AM
Tobiah's Avatar
Tobiah Tobiah is offline
A Rumbleroot Sapling
 
Join Date: Feb 2005
Server: Antonia Bayle
Posts: 65
Default

Quote:
/: ; log ; loc ; tellchannel yourmom123 %t ; who longerthanlongestnameposs ; log
Damn how did you figure that out?

/respect Death
Reply With Quote
  #4  
Unread 02-23-2005, 10:54 AM
Eloa Eloa is offline
EQ2MAP Webmaster
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unkown
Posts: 496
Send a message via Skype™ to Eloa
Default

Is it possible to specify a log file?
Reply With Quote
  #5  
Unread 02-23-2005, 06:22 PM
Deathbane27's Avatar
Deathbane27 Deathbane27 is offline
aka Mook
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Jul 2004
Server: Nektulos
Posts: 1,451
Default

I tried, but /log doesn't seem to accept parameters.
__________________
If it ain't broke, it needs more features!
Reply With Quote
  #6  
Unread 02-23-2005, 08:29 PM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Send a message via Yahoo to Zonx
Default

Quote:
Originally Posted by Tobiah
Damn how did you figure that out?

/respect Death
Lol, that's esentially how we took raid attendance in EQ1. Syntax is a tad different but same idea.

Generally a good idea to start and end the macro with predictable messages for later parsing incase you need to log something else between macros, or maybe you're running several log macros (maping, POIs, etc). For example...

/: ; log ; tellchannel yourmom123 POI_MACRO_START ; loc ; tellchannel yourmom123 %t ; who longerthanlongestnameposs ; tellchannel yourmom123 POI_MACRO_END ; log

This way you can easily grep out the POI_MACRO start to end.
Reply With Quote
  #7  
Unread 02-23-2005, 08:50 PM
Eloa Eloa is offline
EQ2MAP Webmaster
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unkown
Posts: 496
Send a message via Skype™ to Eloa
Default

Hmmm, I dont want people to be uploading their entire logs. But maybe I can get it to where they upload it, it's examined, code is extracted for POI's and the file is deleted. That oughtta work. Not the most efficient, but all thats available I guess.

Maybe possibly I could create a new UI window that will SHOW the information then use an external program to pull the info out into a file...dunno, not THAT good with vb yet. Anyone wanna try to tackle this for me? There could be a reward...
Reply With Quote
  #8  
Unread 02-23-2005, 09:14 PM
Quib Quib is offline
A Griffon
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Jan 2005
Posts: 720
Default

Quote:
Originally Posted by Eloa
Maybe possibly I could create a new UI window that will SHOW the information then use an external program to pull the info out into a file...dunno, not THAT good with vb yet. Anyone wanna try to tackle this for me? There could be a reward...
This is borderline EULA-breaking if not completely against the EULA. EQ2's active memory is off limits.

An active log reader could pick the data out of the log as it's written and upload it, and would be fair-play though.

Quib
Reply With Quote
  #9  
Unread 02-23-2005, 09:29 PM
Eloa Eloa is offline
EQ2MAP Webmaster
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unkown
Posts: 496
Send a message via Skype™ to Eloa
Default

Good call on the EULA, though I dunno since it would just get the info that would normally go to the log. But the active log reader would do the same thing, yet much more friendly for the SOE staff. Anyone wanna write something up?
Lets use this Scenario:
Theres a macro in game that uses the above command to write to the log, it should have a default, but changeable if need be, trigger and end text sequence. Default could be BEGIN POI.
After that it would send the target name, level (if possible), current zone (as db27 said above), and the /loc. Those would then need to be edited into a MySQL entry.

Maybe taco can find some time to do this after the generator...
Reply With Quote
  #10  
Unread 02-23-2005, 10:42 PM
taco-man's Avatar
taco-man taco-man is offline
EQ2MAP Updater Author
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Nov 2004
Server: Antonia Bayle
Posts: 1,349
Send a message via AIM to taco-man Send a message via MSN to taco-man Send a message via Yahoo to taco-man
Default

i will certainly give it a shot after we finish up the website but you over estimate my programming skills :P i only took 1 class on programming my whole life
__________________
EQ2MAP Updater Download
EQ2MAP Website
How to Install a custom interface
Reply With Quote
  #11  
Unread 02-23-2005, 11:46 PM
Findarato's Avatar
Findarato Findarato is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Jul 2004
Server: Nagafen
Posts: 339
Send a message via AIM to Findarato Send a message via MSN to Findarato Send a message via Yahoo to Findarato
Default

/show_window Inventory.HTML

a built in web browser, write to a HTML doc and open it with the web broswer. simple as pie.

just dont go too complex, the reder on it isnt perfect.
__________________


Reply With Quote
  #12  
Unread 02-23-2005, 11:46 PM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Send a message via Yahoo to Zonx
Default

Not a real programmer, but I do alot of programerish stuff.

You'll want the syntax on that macro's command lines to be in the form of Task first, event second. As in POI BEGIN not BEGIN POI. It'll parse much faster if you can skip the begin comands for other tasks right off
Reply With Quote
  #13  
Unread 02-24-2005, 05:28 AM
Eloa Eloa is offline
EQ2MAP Webmaster
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unkown
Posts: 496
Send a message via Skype™ to Eloa
Default

Quote:
Originally Posted by Findarato
/show_window Inventory.HTML

a built in web browser, write to a HTML doc and open it with the web broswer. simple as pie.

just dont go too complex, the reder on it isnt perfect.
If I read right, and I'm sure I did. This can be (only) edited outside of the game, and read ingame. I want the exact opposite. In game it has to write to a file, then you have to be able to read it.
Reply With Quote
  #14  
Unread 02-24-2005, 05:29 AM
Eloa Eloa is offline
EQ2MAP Webmaster
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unkown
Posts: 496
Send a message via Skype™ to Eloa
Default

Quote:
Originally Posted by taco-man
i will certainly give it a shot after we finish up the website but you over estimate my programming skills :P i only took 1 class on programming my whole life
I'm trying to help you build your programming skills. You mad programming skills, you can do it!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 08:32 PM.


Our Network
EQInterface | EQ2Interface | WoWInterface | LoTROInterface | ESOUI | MMOUI