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 - lordshark
1
« on: June 27, 2014, 08:22:36 pm »
i play neverwinter alot and i have to say that The Foundry is a good damn "invention". You have but a limit of used objects (500 i think), but yeah. you can create your own quest-series and also maps.
The background is that the main content of Neverwinter not long enough is (technically 60 hours and you on the highest level of the game with a good gear) and they created the Foundry. People can make their own questseries to entertain the users and i have to say ... many quest are epic as fuck, i never played a lot of questseries in an MMO but this is really awesome. Many quest are very hardly but it exist simple quest like "kill that" or "bring me that".
And yeah i think the developer make it to avoid modelchange or exploits for gauntlygrym (pvp area), or just want to be special or what ever. i like the idea! i mean it's like the G.E.C.K. from Fallout 3 / F:New Vegas.
For roleplay it is perfectly, a german roleplay group make their own area's like we in noggit.
2
« on: November 25, 2013, 02:14:57 pm »
wtf did i see?
3
« on: April 06, 2013, 07:50:52 pm »
4
« on: August 08, 2012, 12:59:06 am »
greetings, i have some trouble with the LoginScreen Tutorial with LUA & XML. It works not so "perfectly" and thats sucks!  problem 1: i can hear the standard login music. i have change all playSound-functions in AccountLogin.LUA & XML, but i hear it! But i can hear my own theme two. problem 2: i have add a model but i have the "SetCamera()" Problem. If setCamera(0) - the model its over the completed screen and can't be resized or moved if setCamera(1)- its not over the completed screen, but it cant be also resized or moved if setCamera(2) - it can be resized, moved or also things, but the camera is show the model from the top.
5
« on: August 07, 2012, 11:49:44 pm »
Nice tutorial, but i have some problems. First - i have changed my sound to my own music, but i seems doesnt work, because i hear another login-music. Then - i have a problem with my model. i see my model from the top.
6
« on: July 20, 2012, 05:51:40 pm »
I think its Hentai-Time now! No, just a joke. Looks great! p.s. phucko1 - nice avatar. jack of blades is one of my favourite badass anti-heroes
7
« on: March 15, 2012, 05:36:22 pm »
It works. I have it done with some own banners, also with some weapons. What you have to change is the directory in the .WMO with HEX-Edit. But directly "own doodad sets" ? I have create an new WMO.
9
« on: January 14, 2012, 04:52:54 pm »
Thank you very much Yes, i make the same now with many other objects, but it can be very difficult with too much textures. Now i'am trying to change the doodads to another objects. It works, but the Size are all diffirent ;/
11
« on: January 11, 2012, 03:53:47 pm »
I had seen it now, i made soon another version of it - but yeah, noggit great function is awesome ;-) Better then mine, but i need the directory for my own projects. Anyone can use my code, make it better or something like that. Only a idea to post something usefull
12
« on: January 11, 2012, 03:06:05 pm »
Greetings, i create a simple java program to extract the directory from the modelviewer log text file and save them to a text files. Without GUI! Only console program! You need some Java knowhow(compiling code etc)
1. Dir = Your Modelviewer directory (example: C:ModelvieweruserSettingslog.txt 2. Dir = Your directory to save the file (example: C:Dir.txt)
Auf Deutsch, ich hab ein Programm in Java geschrieben um die Pfade der Modelle heraus zu nehmen und in zwei verschiedene Textdateien zu speichern. Ich hab keine Lust immer alles heraus zu suchen aus der log.txt und kann sehr nützlich für zB Taliis oder sonstige Programme sein, indem man Pfade benötigt. Dachte mir ich tue jedenfalls etwas für die Community und wenn mir jemand meinen Text in ein gramatischkorrekten Satz umschreiben könnte wäre ich dem sehr verbunden. Der Plan war ja die Pfade zB automatisch in DBC Files schreiben zu lassen, aber kenne keinen OpenSource Leser von DBCs in Java.
And sorry for my bad english.
import java.io.*;
public class ExtractorMdv { public static void main(String[] args) { String Dir1; String Dir2; Dir1 = "YOUR DIRECTORY TO MODELVIEWER EX: C:/Modelviewer/userSettings/log.txt"; Dir2 = "YOUR DIRECTORY TO SAVE YOUR FILE! EX: C:/DIR.TXT"; try { BufferedReader modelviewer = new BufferedReader( new FileReader(Dir1)); FileWriter dir = new FileWriter(Dir2); String str; int counter; counter = 0; while ((str = modelviewer.readLine())!=null) { if (str.endsWith(".m2")||(str.endsWith(".wmo"))) { counter = counter +1; System.out.println(str.substring(25, str.length())); dir.write(str.substring(25, str.length())+"rn"); } else{} } System.out.println("Existing Objects: "+counter); modelviewer.close(); dir.close(); } catch(FileNotFoundException e) { System.out.print(e); } catch(IOException e) { System.out.print(e); } }
}
13
« on: January 02, 2012, 01:47:22 am »
System of a down same system of a down listener here.
14
« on: September 07, 2011, 04:56:02 pm »
I had the same problem, change the playercreation_spell. You need the spell-id of languages - 668 is Common. And you must change the DBC.
15
« on: July 28, 2011, 01:13:59 am »
Search Frostmourne in modelviewer -> Export Textures. Done. Varian looks like a pimp  but nice work.
|