EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Development::Tools (https://www.eqemulator.org/forums/forumdisplay.php?f=593)
-   -   Null Spell Editor (https://www.eqemulator.org/forums/showthread.php?t=31419)

chrsschb 03-08-2012 07:58 PM

Quote:

Originally Posted by sorvani (Post 207927)
It's a lifetap hence the negative number to damage the NPC and not heal it.

Doh, totally brain farted that one. So, how does that work with level + min if the number is supposed to be negative? I notice the maxes are all positive numbers.

Hateborne 04-02-2012 07:40 PM

Does anyone have a link to the editor with videos? If no link, does anyone have the actual file? I can give a link to safely (and quickly) upload it.

Thank You!

-Hate

lerxst2112 04-02-2012 09:37 PM

There is a link to the editor with the videos in this thread, you just need to read back a page or so:

http://www.eqemulator.org/forums/sho...4&postcount=68

Hateborne 04-05-2012 11:09 AM

I read through, and missed it. I am rather embarassed at doing so.

Thank you again lerxst2112.

-Hate

AudioGarden21 04-30-2012 06:37 PM

Request for Numhits to be added to the editor.
 
A simple Max Hits box (for numhits field from spell data) in the Effects tab would be very, very helpful Null. We would all appreciate it very much if you're still around.

Thanks.

Null 05-02-2012 08:14 AM

Quote:

Originally Posted by AudioGarden21 (Post 209361)
A simple Max Hits box (for numhits field from spell data) in the Effects tab would be very, very helpful Null. We would all appreciate it very much if you're still around.

Thanks.

Here.

I placed it in the main tab to the right of spell name.

Enjoy!

AudioGarden21 05-03-2012 10:48 AM

Omg.
 
You are simply the best Null. <3

EDIT

When attempting to connect to database I get an error "Unknown column 'field193' in 'field list'.

I had a look at the database and field 193 seems to refer to nimbuseffect, as that's the only thing between field192 and field194.

lerxst2112 05-03-2012 03:15 PM

What version of the editor are you using? field193 changed to nimbuseffect way back at rev 1548. Make sure you downloaded a recent version, and not the one from the initial post here.

Null 05-04-2012 08:59 PM

Quote:

Originally Posted by AudioGarden21 (Post 209470)
You are simply the best Null. <3

EDIT

When attempting to connect to database I get an error "Unknown column 'field193' in 'field list'.

I had a look at the database and field 193 seems to refer to nimbuseffect, as that's the only thing between field192 and field194.

Ooops, had a flag set that targets an older version of the source, should be fixed now.

Here.

AudioGarden21 05-06-2012 08:33 AM

Like'a'bawce... =D

Hateborne 06-06-2012 06:13 PM

Sorry to bother everyone, but getting "Error #2032" at the bottom. Started ~3 days ago and have not been able to use since. I've tried re-extracting both versions (vids/no-vids) and running the trustfall.bat files....nothing.

I couldn't find anything on forums about this. Is there some super obvious solution that I am overlooking?

-Hate

Drakiyth 06-08-2012 04:46 PM

How in the world do you get these two things to work as a buff?
8.0 is the mod I want to give the bard for a limited time and 51 is All Bard Instrument mods. All the tests I've tried haven't shown any improvements when I check out my test bard in #mystats.

Also question: Is there any place/guide that has the right way to make these spell effects work? Where to put numbers etc?

http://i269.photobucket.com/albums/j...h/BardMods.png


Checked the spell_effects.cpp and it says it's handled elsewhere. ???

Nothing on either of these in spells.cpp either.

Drakiyth 06-09-2012 01:35 PM

Anybody know how to get bard instruments going through here? I've tried.


AddIntrumentMod - 12, 41, 49, 54, 70 on min and special. - NOTHING
AllInstrumentMod - 12, 41, 49, 54, 70 on min and special. - NOTHING


Is this just broken? I notice on live they use the spell effects for their instrument mods. I need it for the Mystical Artist's 1.0 weapon buff.

Caryatis 06-09-2012 02:36 PM

I suppose you never checked the spdat.h file(you know where all this is defined):

Code:

#define SE_AddInstrumentMod                                260 // *not implemented
and from bonuses.cpp:

Code:

case SE_AllInstrumentMod:
        {
        if(effect_value > newbon->singingMod)
                newbon->singingMod = effect_value;
        if(effect_value > newbon->brassMod)
                newbon->brassMod = effect_value;
        if(effect_value > newbon->percussionMod)
                newbon->percussionMod = effect_value;
        if(effect_value > newbon->windMod)
                newbon->windMod = effect_value;
        if(effect_value > newbon->stringedMod)
                newbon->stringedMod = effect_value;
        break;
        }

ie you don't need to use any other field but the effect_base_valueXX.

You say live uses spell effects to boost spells, yet you dont try to copy any live spells?

For example, if you had checked out Amplification you would have noticed it uses an entirely seperate spell effect(118 ) to boost the singing skill.

Last but not least, your testing method is quite lazy. All you did was open mystats and then get disappointed. Lets look at the mystats code since that takes like 5 seconds:

Code:

std::string bard_info = "";
        if(GetClass() == BARD) {
                bard_info = indP + "Singing: " + itoa(GetSingMod()) + "<br>" +
                                        indP + "Brass: " + itoa(GetBrassMod()) + "<br>" +
                                        indP + "String: " + itoa(GetStringMod()) + "<br>" +
                                        indP + "Percussion: " + itoa(GetPercMod()) + "<br>" +
                                        indP + "Wind: " + itoa(GetWindMod()) + "<br>";
        }

The important bits are GetXXXMod, lets go deeper:

Code:

inline virtual sint16        GetStringMod()                const { return itembonuses.stringedMod; }
So to recap, you create a spellbonus to songs, you then check that with a function that only returns the itembonuses and thus you assume the effects are broken and post twice about it.

Searching... not just for the forums!

Luccian 06-09-2012 03:29 PM

Quote:

Originally Posted by Hateborne (Post 210017)
Sorry to bother everyone, but getting "Error #2032" at the bottom. Started ~3 days ago and have not been able to use since. I've tried re-extracting both versions (vids/no-vids) and running the trustfall.bat files....nothing.

I couldn't find anything on forums about this. Is there some super obvious solution that I am overlooking?

-Hate

Been getting the same error. Glad it's not just me.

Drakiyth 06-09-2012 04:13 PM

Hey Caryatis,

Thanks for your help, even though you were a total douche about it.

Amplification is considered "SINGING SKILL" which is not what I asked for - There are currently no ADDINSTRUMENTMOD OR ALLINSTRUMENTMOD effects in the spell data base. But I'll try it with just the base value without the special and see if it works. Did I piss in your cheerios or something, or do you have a vendetta against me because you're acting like a real tool towards me. If you have something to say, I'm all for talking to you one on one.

Optimus 06-09-2012 05:39 PM

Booo.... I liked the first response better. He deserved it.

Drakiyth 06-09-2012 05:45 PM

Gotta try and stay a bit professional and not lose my head over trolls. Honestly though, if anybody did talk to me like that in person I would break their jaw. He acted like a total asshole, no doubt about that. That didn't work, AllInstrumentMod does not work at all and if it does please tell me what I'm doing wrong and prove me wrong. I would love to be proven wrong on this issue.

Caryatis 06-09-2012 07:37 PM

Quote:

Honestly though, if anybody did talk to me like that in person I would break their jaw.
I love when people say this, I know in your head you think this sounds good but I wish you could see how others view you after saying that. Ill take a guess though...

Number of jaws you have broken in your life: 0
Number of assholes you have met in real life: Not 0

Quote:

That didn't work, AllInstrumentMod does not work at all
Prove it. What did you do besides typing #mystats?

Drakiyth 06-09-2012 07:49 PM

I've tested it with several songs and nothing has changed. With #mystats 0 all the way across the board on instrument mods. When equipping an item with instrument mods it's fine. It's the buff/spell effect that just won't work for shit for some reason.


-----------------------------------------------------------------------------------------------
AllInstrumentMod min / 80 / 0 / 0 / <-- that order. nothing happens.
AllInstrumentMod min / 8 / 0 / 0 / <-- that order. nothing happens.
AllInstrumentMod min+levelx 20 for shits /1 /80 / 0/0 nothing.
AllInstrumentMod min / 0 / 0 / 8 / <-- that order. nothing happens.
AllInstrumentMod min / 0 / 0 / 80 / <-- that order. nothing happens.

Caryatis 06-09-2012 09:08 PM

Still not enough info. Good luck.

Null 06-09-2012 10:08 PM

Quote:

Originally Posted by Hateborne (Post 210017)
Sorry to bother everyone, but getting "Error #2032" at the bottom. Started ~3 days ago and have not been able to use since. I've tried re-extracting both versions (vids/no-vids) and running the trustfall.bat files....nothing.

I couldn't find anything on forums about this. Is there some super obvious solution that I am overlooking?

-Hate

Can you give me a screenshot?

Luccian 06-09-2012 10:13 PM

http://i53.photobucket.com/albums/g6...27/Capture.png

wolfwalkereci 06-10-2012 03:23 PM

Caryatis might come across like an ass but he provides good info if you take the time to look for it.
I remember when he gave out all the source to one of his previous servers.
Shame I lost it because it had some fun stuff in it.

Sinclipse 06-13-2012 02:56 AM

It doesn't seem to want to connect to my DB with my Vista 32... Connects fine with my windows 7 though... Any possible reason?

Hateborne 06-14-2012 11:55 AM

Quote:

Originally Posted by Null (Post 210154)
Can you give me a screenshot?

http://i185.photobucket.com/albums/x...rver/error.png

Disregard the user id. Generic Win7 vbox :-P

-Hate

Sinclipse 06-18-2012 05:14 PM

Error connecting to the DB on a Vista 32 bit. Tried the bat file, failed too. Any idea?

jsr 06-21-2012 07:08 AM

Quote:

Disregard the user id. Generic Win7 vbox :-P

-Hate
Same error here on IE, Safari, and Firefox, possibly related to a flash update. I haven't used the editor for a few months so can't be sure on the cause.

Burningsoul 07-05-2012 04:31 PM

Bumping, as I also have the same problem. W7 64 blah blah specs, just like JSR I also haven't used in a few months so flash update seems to be the issue.

Hateborne 07-24-2012 10:31 PM

Ok, I am able to get the NO_VIDEO one to work now. I had to destroy the file created through the Trustfall.bat (which pointed to the editor with video) and re-run it to point to the NO_VIDEO one.

-Hate

BlackSunGM 10-16-2012 02:51 PM

I tried to download this editor today and the link doesnt work. Does anyone have a copy i could snag? Thanks

Burningsoul 10-16-2012 05:48 PM

I have a copy, when I get off work tonight I'll upload it if no one has beaten me to the punch.

GeorgeS 10-16-2012 08:02 PM

I am upoading a copy now. Should be live in 10 min -- off the tool website

GeorgeS

Burningsoul 10-16-2012 08:10 PM

Thanks a ton again GeorgeS, was about to upload it. If things fall through, I'll have an upload link ready.

GeorgeS 10-16-2012 09:56 PM

No problem, you're welcome to upload a copy anyway. The rar is over 100MB!

GeorgeS

emuzual 10-18-2012 04:55 PM

Thanks alots Georges
and in Bonus ggoggle nolonger say that the site might be infected

:D

BlackSunGM 10-19-2012 08:11 PM

Havent been able to get this to write changes to my database. Found a newer version but I am having the above errors now the error #2032. How do other server admins edit spells? Is it by hand?

jsr 11-18-2012 03:17 AM

Can't find a way around this issue, including hate's suggestion. Anyone had any luck?

Disorder 01-25-2013 01:42 AM

Greetings,

I'm unable to get the null editor to connect to my database.

http://i.imgur.com/AaJgdAO.png

I get a DB time out error.

I ran the trustfall file prior to opening the flash program. Also, my browser was closed when I ran it, etc. yadda yadda. :) Am I just entering the information incorrectly?

Thanks in advance!

Disorder 01-30-2013 02:00 AM

I just realized that this doesn't seem to be maintained anymore. I can load spells using internet explorer instead of chrome, however it appears to be unable to read all the spell data or write to my DB. It was able to change my spells_us.text file.


All times are GMT -4. The time now is 02:14 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.