This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Piccolodmq

Pages: 1 2 [3] 4 5 ... 13
31
"Retro-Porting" / Re: HD Models for MOP
« on: October 24, 2017, 09:11:22 pm »
Have you check out, this?
http://forum.warmane.com/showthread.php?t=319906

Literally the first thing that comes when I googled it.

32
Modelling and Animation / Paying for developer [CUSTOM RACES]
« on: October 18, 2017, 01:36:50 pm »
Hi there

I am looking for someone who can make me custom races, I am want Cata Worgens, and Pandaren from Pandaria, for my custom Trinitycore Server TDB_full_world_335.62_2016_10_17. Maybe we could try something extra if you think you have the time and skills.

Races must be able to:

1- Have most or all haircuts, dances, sounds.
2- No missing gear related problems.
3- Basically work like any of the retail races.

My core has WOD models, creatures and I have some other custom stuff on it, but mostly it should be the same as doing this in fresh compiled core.

We can work in any way you want... uploading the server and patches I have, or you can work remotely, or portion of both.

I have other requests, but lets start with this, to see if we can work together.

Whatsapp +51987717515
skype = piccolodmq
email =rperalta1980@yahoo.com

Thanks!

33
I just get the Mining trainer menu, bugged (even before editing the Skilllineability.dbc), with the a green line above the menu, and no available skills to learn.

34
No I havent!, will do right away.

Anything else I should look into?

35
"Retro-Porting" / [HELP] RETROPORTING CATACLYSM MINING ORE AND PROFFESIONS!
« on: September 26, 2017, 04:38:17 pm »
Hi there!

I am trying to retroport, mining ores and proffesion to 3.3.5a, and here what I have done so far.

1- get items working:   I used icons and items from Anthony's (Kronixusa), retroported items for the minerals ores.
2- I made custom mineral ore Gameobjects using the saronite ore as base, and everything works (I need 450 mining.. mining pick and I get blizzlike spawnrate for minerals ores.
3- I modified the spell 49258 in spell.dbc, wich is the one used for learning how to smelt 2 saronite ores into one saronite bar.  I changed only the rows that Described what the spell did and the item row for the ORE and BAR with the custom cata item numbers.
4- I putted the file both in the DBC and Patch of my client.
5- In npc_trainer DB, I copied one row that had the saronite smelting spell and replaced the spell Id with the custom one I made

"ID"   "SpellID"   "MoneyCost"   "ReqSkillLine"   "ReqSkillRank"   "ReqLevel"
"201035"   "49258"   "150000"   "186"   "400"   "0"

to this

"ID"   "SpellID"   "MoneyCost"   "ReqSkillLine"   "ReqSkillRank"   "ReqLevel"
"201035"   "90050"   "150000"   "186"   "400"   "0"

But when I go to the trainer, to buy the new smelting spell, i get an unknown, spell to lear, wich doesnt work or show up in my Mining Spell book.

I am sure I am missing something, but dont know what it is!  thanks!


36
"Retro-Porting" / Re: [RELEASE] [WotLk] Character Models(no npc)
« on: September 15, 2017, 10:38:29 pm »
Do You Character improvement patches include NPCs, too?

37
Miscellaneous / Re: Another SmartAI question
« on: August 27, 2017, 06:53:59 am »
I am looking at both things.  A npc that gives me a quest, and this changes the phases I am in.   And another NPC that upon contact follows a path (or the player ) to x point.

38
Miscellaneous / Another SmartAI question
« on: August 26, 2017, 07:04:05 am »
I want to make an NPC phase me to Phase 2, after I accept a quest. After this, I want another NPC to follow a path, when I talk or are near it in that phase.

After I complete the quest I want to return to Phase 2.

This the SQL I am using to get the QUEST NPC to go to Phase 2 (not working)

-- Generated by Event Horizon - SAI Editor (http://devsource-eventhorizon.tk/)

-- Captain Saynna Stormrunner
SET @ENTRY := 40139;
SET @SOURCETYPE := 0;

DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=@SOURCETYPE;
UPDATE creature_template SET AIName="SmartAI" WHERE entry=@ENTRY LIMIT 1;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_ty pe`,`event_phase_mask`,`event_chance`,`event_flags `,`event_param1`,`event_param2`,`event_param3`,`ev ent_param4`,`action_type`,`action_param1`,`action_ param2`,`action_param3`,`action_param4`,`action_pa ram5`,`action_param6`,`target_type`,`target_param1 `,`target_param2`,`target_param3`,`target_x`,`targ et_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,@SOURCETYPE,0,0,19,0,100,0,25325,0,0,0,22, 2,0,0,0,0,0,5,1,50000,0,0.0,0.0,0.0,0.0,"set phase"),
(@ENTRY,@SOURCETYPE,1,0,19,0,100,0,25325,0,0,0,22, 2,0,0,0,0,0,5,0,0,0,0.0,0.0,0.0,0.0,"set phase"),
(@ENTRY,@SOURCETYPE,2,0,19,0,100,0,25325,0,0,0,22, 2,0,0,0,0,0,18,50000,0,0,0.0,0.0,0.0,0.0,"set phase"),
(@ENTRY,@SOURCETYPE,3,0,19,0,100,0,25325,0,0,0,22, 2,0,0,0,0,0,2,50000,0,0,0.0,0.0,0.0,0.0,"set phase"),
(@ENTRY,@SOURCETYPE,4,0,19,0,100,0,25325,0,0,0,22, 2,0,0,0,0,0,17,1,50000,0,0.0,0.0,0.0,0.0,"set phase");

----
Npc I want to follow a path (or follow me in the case of this Sql) while in phase 2 is this one = 80276

-- Arch Druid Fandral Staghelm
SET @ENTRY := 80276;
SET @SOURCETYPE := 0;

DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=@SOURCETYPE;
UPDATE creature_template SET AIName="SmartAI" WHERE entry=@ENTRY LIMIT 1;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_ty pe`,`event_phase_mask`,`event_chance`,`event_flags `,`event_param1`,`event_param2`,`event_param3`,`ev ent_param4`,`action_type`,`action_param1`,`action_ param2`,`action_param3`,`action_param4`,`action_pa ram5`,`action_param6`,`target_type`,`target_param1 `,`target_param2`,`target_param3`,`target_x`,`targ et_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,@SOURCETYPE,0,0,25,0,100,0,0,0,0,0,11,3334 6,0,0,0,0,0,19,21348,15,0,0.0,0.0,0.0,0.0,"Shadow Council Warlock - On Reset - Cast Green Beam"),
(@ENTRY,@SOURCETYPE,1,0,1,0,100,1,0,0,0,0,11,33346 ,0,0,0,0,0,19,21348,15,0,0.0,0.0,0.0,0.0,"Shadow Council Warlock- OOC - Cast Green Beam (No repeat)"),
(@ENTRY,@SOURCETYPE,2,0,0,0,100,0,1000,2000,5000,7 000,11,9613,0,0,0,0,0,2,0,0,0,0.0,0.0,0.0,0.0,"Sha dow Council Warlock- IC - Cast Shadow Bolt"),
(@ENTRY,@SOURCETYPE,3,0,0,0,100,0,6000,8000,10000, 12000,11,37992,0,0,0,0,0,2,0,0,0,0.0,0.0,0.0,0.0," Shadow Council Warlock- IC - Cast Drain Life"),
(@ENTRY,@SOURCETYPE,4,0,19,0,100,0,25325,0,0,0,29, 0,0,0,0,0,0,21,0,0,0,0.0,0.0,0.0,0.0,"quest follow");



THe npc, I wan to take me back while there to phase 1 is this one =

-- Alysra
SET @ENTRY := 40178;
SET @SOURCETYPE := 0;

DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=@SOURCETYPE;
UPDATE creature_template SET AIName="SmartAI" WHERE entry=@ENTRY LIMIT 1;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_ty pe`,`event_phase_mask`,`event_chance`,`event_flags `,`event_param1`,`event_param2`,`event_param3`,`ev ent_param4`,`action_type`,`action_param1`,`action_ param2`,`action_param3`,`action_param4`,`action_pa ram5`,`action_param6`,`target_type`,`target_param1 `,`target_param2`,`target_param3`,`target_x`,`targ et_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,@SOURCETYPE,0,0,19,0,100,0,25325,0,0,0,22, 1,0,0,0,0,0,17,1,50000,0,0.0,0.0,0.0,0.0,"set phase 1");

----


Any help with this? IN the part of the "follow me NPC" I tried using a dummy npc 80205 with wpoints (guid is 837778
)... so the NPC follows the guid as soon as I get to phase 2, and sees me... he starts walking.

Basically I am trying to recreate this quest fromo CATA to WOTLK.

http://www.wowhead.com/quest=25325/through-the-dream

....

Thanks for the help!

39
Miscellaneous / Re: Smartai Question
« on: August 26, 2017, 07:03:38 am »
This worked! thanks!

40
Miscellaneous / Re: Smartai Question
« on: August 13, 2017, 04:33:56 pm »
Thanks for the quick answer, will look into this.    Is it posible for a NPC to summon a gameobject at all?

41
Miscellaneous / Smartai Question
« on: August 10, 2017, 05:47:06 pm »

Smartai Help

Hi There. Can anyone guide me making a npc (id 9999) summon a Game object (id 8888)' then the gobject casts a spell 7777 to itself (That can Hurt a player if near, and dissapear the gobject after 10 sec.

Thanks

42
Is this still active?   I putted the SQLs in my DB, and fused the DBC for the items in patch I, but items wont eve load.   Do I need more files for this to work (items only).

43
"Retro-Porting" / Re: Npc for 3.3.5-cata/mop maps
« on: July 27, 2017, 08:59:29 pm »
I have them, but I Will hace to upload them. It takes a while for it.

44
"Retro-Porting" / Re: [RELEASE] [WoTLK Legion New Combat Animations
« on: July 17, 2017, 06:49:19 am »
But you need a russian client for this to work right?   Or I am missing something here?

45
Miscellaneous / Re: Migrating a server from one computer to another?
« on: July 14, 2017, 06:57:50 pm »
Again, by reading and reading how everything works. I figure it out.   Thanks for the help!

Pages: 1 2 [3] 4 5 ... 13