[Request] Ascent Vendor creature_proto Creator
Well, pretty much the title of this post:
Ascent Vendor creature_proto Creator
When I tried creating my creature_proto list for my NPC to spawn, the fields that it executed into came out wrong, so if anyone has a site that can do this, I'd like that very much. The current site I've been using is:
Code:
http://wow-v.com/vendorcreator.php
I was using Antrix, but the fields for creature_proto were invalid.
Re: [Request] Ascent Vendor creature_proto Creator
I still need this folks..
Re: [Request] Ascent Vendor creature_proto Creator
the problem is that
Code:
http://wow-v.com/vendorcreator.php
is using health level and it dosent include minlevel maxlevel minhealth maxhealth invisibility_type death_state i dont know any other vendor creator but its allmost as easy to make your own.. when u made the first mob as u want it u can just use the code to the rest of the mobs simply changing npcflags faction modelid to whatever u like.. and then use the last code to add the items u want... sorry i cant help with a creator but if u really need to use the wow-v creator u can just insert the missing values..
exsample lets say i made a mob using navicat i go in the creature_names and creature_proto.. edit and making my custom values after that i save get a code like this
http://forum.ragezone.com/www.daemon...Unavngivet.bmphttp://www.daemonsworld.dk/Unavngivet.bmp
Code:
INSERT INTO `creature_names` (`entry`,`creature_name`,`Subname`,`type`,`Rank`,`displayid`,`Civilian`) VALUES ('entry','name','subname','type','rank','displayid','civilian')
INSERT INTO `creature_proto` (`entry`,`minlevel`,`maxlevel`,`faction`,`minhealth`,`maxhealth`,`scale`,`npcflags`,`respawntime`,`auras`,`invisibility_type`,`death_state`) VALUES ('entry','minlevel','maxlevel','faction','minhealth','maxhealth','scale','npcflags','respawntime','0','0','0')
INSERT INTO vendors (vendorGuid, itemGuid, amount)
VALUES (vendorentry,itemid,amount);
the names that are not in this will just be a default value.. and this mob cant attack anyting since i dident edit mindmg maxdmg and so on, cause im lazy haha. but the rest of the mobs are pretty easy to make now since i could chose to use the exsact same modelid health and flags and only need to change entry and vendor values.. donno if i answered anyting usefull but anyways good luck. and i hope wow-v would update their creator xD
Re: [Request] Ascent Vendor creature_proto Creator
spam the wow-v forums lol im also lookin 4 a mob creator downloaded 1 at mmowned but havent tested it yet . its getting late il post it on my website 2morz if it works :D
Re: [Request] Ascent Vendor creature_proto Creator
Quote:
Originally Posted by
Kira90
spam the wow-v forums lol im also lookin 4 a mob creator downloaded 1 at mmowned but havent tested it yet . its getting late il post it on my website 2morz if it works :D
Ah, theres one somewhere on these forums, the one I have is WoW Mobmakerv5.0 By Someone (JCCR), I think I got it from here but I do not know, and Ya...Can't upload NPC's created by WoW-V, always an error >_>.....
-Kiteal
Re: [Request] Ascent Vendor creature_proto Creator
Kiteal does it fully support Ascent? If so I would appreciate it if you could upload that for me.
Re: [Request] Ascent Vendor creature_proto Creator
I do not know if it is fully funtional for Ascent but here it is anyways, Send big files the easy way. Files too large for email attachments? No problem!. Sorry if it was not much of a help, but I try my best :p.
-Kiteal
Re: [Request] Ascent Vendor creature_proto Creator
It's the same as Antrix, unable to enter into database since 'level' is an unknown field.
Re: [Request] Ascent Vendor creature_proto Creator
Hm....God only knows, >_> One day I will be able to add NPC's and stuff @.@ Ya then I guess I could use something to create NPC's and stuff too >_> Because that invalid 'Level' Cullum or w/e really bites you in the a$$ >_>.
-Kiteal
Re: [Request] Ascent Vendor creature_proto Creator
I have ascent and have the same problem using wow-v.com although I fixed it.. In the code where you see level, change it to "minlevel, maxelevel", then down below where the level you chose is entered (the number), just copy that number again, so its "255, 255". Then, I just erase the "health" part all together, and erase the health value from in the code, and hit run.. works perfectly for me?
heres an example before and after...
Code:
INSERT INTO creature_proto (entry, level, faction, health, mana, scale, npcflags, attacktime, mindamage, maxdamage, rangedattacktime, rangedmindamage, rangedmaxdamage, mountdisplayid, item1slotdisplay, item1info1, item1info2, item2slotdisplay, item2info1, item2info2, item3slotdisplay, item3info1, item3info2, respawntime, resistance0_armor, resistance1, resistance2, resistance3, resistance4, resistance5, resistance6, combat_reach, bounding_radius, auras, boss, money)
VALUES (123456, 255, 12, 50000, 50000, 1, 16388, 1800, 150, 250, 1800, 500, 650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36000, 0, 0, 0, 0, 0, 0, 0, 1, 0, "MEMO", 0, 0);
Changes to
Code:
INSERT INTO creature_proto (entry, minlevel, maxlevel, faction, mana, scale, npcflags, attacktime, mindamage, maxdamage, rangedattacktime, rangedmindamage, rangedmaxdamage, mountdisplayid, item1slotdisplay, item1info1, item1info2, item2slotdisplay, item2info1, item2info2, item3slotdisplay, item3info1, item3info2, respawntime, resistance0_armor, resistance1, resistance2, resistance3, resistance4, resistance5, resistance6, combat_reach, bounding_radius, auras, boss, money)
VALUES (123456, 255, 255, 12, 50000, 1, 16388, 1800, 150, 250, 1800, 500, 650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36000, 0, 0, 0, 0, 0, 0, 0, 1, 0, "MEMO", 0, 0);
Re: [Request] Ascent Vendor creature_proto Creator
Thank you very much Qman46, this worked!