[Tool] Monster Creator (Mob Maker) For Antrix/Ascent Terranet DB rev 8+

Junior Spellweaver
Joined
Jan 6, 2006
Messages
100
Reaction score
0
My friend made this great tool, he asked me to post it here.

[Tool] Monster Creator (Mob Maker) For Antrix/Ascent Terranet DB rev 8+

This tool is easy to use. Just fill the fields and press the create button.
The tool will generate a SQL Batch file. Execute it in your database and spawn the monster. Tested with SQLyog.

NOTE: This tool is still in BETA stage. PLEASE POST ANY BUGS HERE.

Download here:


Heres a screenshot.

arrio - [Tool] Monster Creator (Mob Maker) For Antrix/Ascent Terranet DB rev 8+ - RaGEZONE Forums
 
if this only wrks for TN8 it's outta date then

but, it's possible to convert code to work with actual database

Code:
ALTER TABLE `creature_proto` CHANGE health minhealth int(30) unsigned not null;
ALTER TABLE `creature_proto` ADD column maxhealth int(30) unsigned not null after minhealth;
UPDATE `creature_proto` SET maxhealth=minhealth;
ALTER TABLE `creature_proto` CHANGE level minlevel int(30) unsigned not null;
ALTER TABLE `creature_proto` ADD column maxlevel int(30) unsigned not null after minlevel;
UPDATE `creature_proto` SET maxlevel=minlevel;
ALTER TABLE `creature_proto` ADD column invisibility_type int(30) unsigned not null;
ALTER TABLE `creature_proto` ADD column death_state int(30) unsigned not null;
 
So, what database you all using now?
 
Its not the Database its all the Tables have been updated. And TN8 Is oputta whack and they dropped the project. Everyone pretty much uses NCDB or somethin else.
 
I'm sorry, Julian but I don't know what was used.. But my friend always talks about VB.NET. But this doesnt look like .NET controls for me...
 
ok, it seems nice, but i have a very noobish question: This program seems only to add the statistics of a new mob to the database, but how do you create a graphical new mob?

Thanks,

Neo5361
 
lol u have to be as good as "Blizzard" to do that (and I dont think there is anyone who's as good as them)

---------- The Best :rule::rule:
 
Back