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 - Laniax

Pages: [1] 2 3 4
1
Serverside Modding / Re: Naked Players
« on: August 14, 2012, 05:13:51 pm »
Oh this.

If my memory isn't turning it's back on me. It only happens if you ALT-TAB during the loading screen.
And yea, it happened on retail as well.

2
Miscellaneous / Re: Transmogrification is possible on 3.3.5?
« on: March 23, 2012, 10:20:24 am »
It might be achieveable with a gossip menu or something, but not with the system that is used on retail, you would need the source code of wow.exe for that.

3
Quote from: "Eatos"
I have done that a long time ago, and yes not through db,,,, i have used table and simple switch :) connected on hook...

Now what i want to work on is to replicate the blizzard system in cataclysm, which is you learn your spells on level up :)

thats not hard at all, i worked on something like that in the past, and infact i could easily gain the effect by using the code i run in the video but then on levelup.

check this out viewtopic.php?f=60&t=880

4
Quote from: "Eatos"
Lol...That can be achieved on 2 ways:
1) Using db table playercreateinfo_spells
2) Using script with hook on new character :)

Not something hard to do XD

Well the instant spells isn't very hard indeed. Although i didn't use database tables due to performance (just spell maps) and the talents are learned with the same system (as in spell map system) but its something u'd see less on other servers.

5
Showoff - what you are working on / [SHOWOFF] Instant spells & professions.
« on: February 24, 2012, 02:04:14 pm »
Besides working on Maruum, i also develop my own server,
Although it does not have client side patching (all changes are serverside) i thought i'd post it in the server-side showoff ;P

Also i dont post this as advertising, but as the features i show in the video, but ofc having the server name in there speaks for itself.

here it is:

6
General / Re: Where we are from :)
« on: February 22, 2012, 07:08:30 pm »
Quote from: "TheBuG"
The Netherlands would probably be me ;).

And me :P

7
Serverside Modding / Re: Other Playermodel
« on: February 19, 2012, 12:42:02 pm »
There is a port of Quice for Trinitycore, which is called Truice.
Although i doubt that it has the morphing you ask for.

Although your in luck, Glararan posted a morph script for trinitycore just recently.
You can use that, i noticed it creates 2 tables, character_morph and character_scale, so they will stick when you relog.

You can find the script here:
viewtopic.php?f=61&t=1077

and if your familiar with code, you shouldn't have alot of problems porting this to mangos.

(Just make sure you replace the InitDisplayId(); inside the Player::LoadFromDB function, nowhere else.
and apply the SQL in the character DB, NOT the world DB.)

8
Serverside Modding / Re: Other Playermodel
« on: February 18, 2012, 06:46:39 pm »
Pretty sure it was removed from Quice because it was removed from Mangos.

9
If i were in your situation, i'd copy an exisiting spell, which wouldn't need a target and doesn't apply a buff or smth. For example: Blink Visual. Then i'd try to replace it's sound with the custom one. And if that is working ingame i'd try to get rid of the visual.

Although i think its also possible to trigger a sound within the core (so without the use of a spell). But that depends on what you want to achieve.

10
Serverside Modding / Re: [Question] Npcs not spawn!
« on: February 18, 2012, 12:49:16 pm »
Assuming you use Trinitycore:

You add creatures in the database by adding them in the 'creature_template' table. If you do not know how to do this i advice to use a database editor such as Truice.

in this creature_template table, you give your npc an unique number called an 'EntryID'. this is the number which you need to spawn your npc with ingame.

So if i create an npc in the database with EntryID: 12345
I would need to type this ingame to spawn him: .npc add 12345

I hope that answers your question.

11
Modelling and Animation / Re: [QUESTION]  M2 Modding
« on: February 17, 2012, 02:30:18 pm »
Well the login screens are actually 3D spaces. If you'd have a character there, you have a fully functional room where'd you could walk in. Thus the only possible way of showing a 2D image there is putting one right infront of the lens of the camera.

M2 files are actually just files containing 3D models, and thus you will need a 3D program to open them. (like Blender(free), 3dsmax or mdlvis). Then the M2 format was made by blizzard, and thus the 3D software wouldn't support it by default. But luckily some people made converters from M2 to other formats  that the software CAN read.

For tools/converters and all you can search here:
viewforum.php?f=59

For a tutorials on all the subjects check the tut overview:
viewtopic.php?f=59&t=1422

12
Miscellaneous / Re: [SPELL.DBC] Apply Aura: Change Model problem
« on: February 15, 2012, 10:24:50 pm »
If i'm not mistaken, that value actually points to a real creature, which model is then used.

13
Modelling and Animation / Re: Narsil (LOTR) 3DS Model
« on: February 07, 2012, 03:10:37 pm »
U can use this guide to get ur model ingame
viewtopic.php?f=20&t=35

And you should consider texturing it, also you might need to decrease the poly count (not sure how high it is, but judging from the screenshot it looks pretty high).

14
Quote from: "Eluo"
It is possible as we had with Schlumpf a blizzlike patching system on our server.
You just have to do it correctly.

Then you needed a patched wow.exe in the first place, after that u can get the patching system to work. I'm sure since i did alot of research about this a few months ago and even spoke to schlumpf about it then.

15
Quote from: "iindigo"
Even if the md5s ARE hardcoded, couldn't one utilize the patch system to push a nocheck-patched client to players?

That is not possible, blizzard's patching system only pushes data that is signed with the blizzard security key.

Pages: [1] 2 3 4