-
Posts
21 -
Joined
-
Last visited
Everything posted by Nortonic
-
So like this dff = engineLoadDFF ( "wheel_gn1.dff", 1082) engineReplaceModel ( dff, 1082) dff = engineLoadDFF ( "wheel_gn1.txd", 1082) engineReplaceModel ( dff, 1082) Or load ALL DFF then TXD?
-
PM my skype: ganstataylor
-
If your using a GameServer, give the Specs. If your Locally Hosting, Windows or Linux? If its Linux you need .so not .dll If its windows, its not finding the DLL. I can help, just answer Linux or WIndows.
-
Do i add another LUA file for the TXD? If so, i did that, same issue.
-
Meta <meta> <info author="Nortonic" version="1.0.0" type="script" name="" description="Rims Mod" showInResourceBrowser="false" /> <script src="1.lua" type="client" /> <file src="wheel_gn1.dff" /> <file src="wheel_gn2.dff" /> <file src="wheel_gn3.dff" /> <file src="wheel_gn4.dff" /> <file src="wheel_gn5.dff" /> <file src="wheel_lr1.dff" /> <file src="wheel_lr2.dff" /> <file src="wheel_lr3.dff" /> <file src="wheel_lr4.dff" /> <file src="wheel_lr5.dff" /> <file src="wheel_or1.dff" /> <file src="wheel_sr1.dff" /> <file src="wheel_sr2.dff" /> <file src="wheel_sr3.dff" /> <file src="wheel_sr4.dff" /> <file src="wheel_sr5.dff" /> <file src="wheel_sr6.dff" /> </meta> 1.lua addEventHandler('onClientResourceStart', resourceRoot, function() dff = engineLoadDFF ( "wheel_gn1.dff", 1082) engineReplaceModel ( dff, 1082) dff = engineLoadDFF ( "wheel_gn2.dff", 1085) engineReplaceModel ( dff, 1085) dff = engineLoadDFF ( "wheel_gn3.dff", 1096) engineReplaceModel ( dff, 1096) dff = engineLoadDFF ( "wheel_gn4.dff", 1097) engineReplaceModel ( dff, 1097) dff = engineLoadDFF ( "wheel_gn5.dff", 1098) engineReplaceModel ( dff, 1098) dff = engineLoadDFF ( "wheel_lr1.dff", 1077) engineReplaceModel ( dff, 1077) dff = engineLoadDFF ( "wheel_lr2.dff", 1083) engineReplaceModel ( dff, 1083) dff = engineLoadDFF ( "wheel_lr3.dff", 1078) engineReplaceModel ( dff, 1078) dff = engineLoadDFF ( "wheel_lr4.dff", 1076) engineReplaceModel ( dff, 1076) dff = engineLoadDFF ( "wheel_lr5.dff", 1084) engineReplaceModel ( dff, 1084) dff = engineLoadDFF ( "wheel_or1.dff", 1025) engineReplaceModel ( dff, 1025) dff = engineLoadDFF ( "wheel_sr1.dff", 1079) engineReplaceModel ( dff, 1079) dff = engineLoadDFF ( "wheel_sr2.dff", 1075) engineReplaceModel ( dff, 1075) dff = engineLoadDFF ( "wheel_sr3.dff", 1074) engineReplaceModel ( dff, 1074) dff = engineLoadDFF ( "wheel_sr4.dff", 1081) engineReplaceModel ( dff, 1081) dff = engineLoadDFF ( "wheel_sr5.dff", 1080) engineReplaceModel ( dff, 1080) dff = engineLoadDFF ( "wheel_sr6.dff", 1073) engineReplaceModel ( dff, 1073) end )
-
Hello, i am running a Roleplay server, ive decided to add a Rim Mod. Well, the new added rims go White. Any way to fix this? http://puu.sh/4nCan.jpg
-
Hello all.... My MTA recently started looking Low Quality.. For some reason, any suggestions?
-
Having no luck... Says it cannot parse Meta File
-
Hello all! Quick question, Is it possible for me to add Background Music to my Login screen on my server.. then when they hit the Login Button, it stops? Edit: Maybe something like: function onPlayerJoin local sound = playSound("sounds/lol.mp3") setSoundVolume(sound, 0.5) end addEventHandler("onPlayerJoin", getLocalPlayer(),) --add the event handler
-
Forgot to put the lib_mysql.dll's in the right places ect... noob mistake of mine
-
If you still need help. PM me, we could get on Team Viewer
-
Solved. Just took alot of Trial and Error..
-
Hello all. Im working on a Roleplay Server for MTA. Everything is going alright. Ive setup XAMPP, Edited the mysql resource to the connection info, But im getting this error... heres the SQL connection.lua -- connection settings local hostname = "localhost" local username = "root" local password = "" local database = "mta" local port = tonumber( get( "port" ) ) or 3306 Says the Error is in Line 62.. here it is.. function ping() if (mysql_ping(MySQLConnection) == false) then -- FUU, NO MOAR CONNECTION destroyDatabaseConnection() connectToDatabase(nil) if (mysql_ping(MySQLConnection) == false) then logSQLError() return false end return true end return true end Any help is appriciated! Thanks in advance! Would it be the mysql module? Or.. MTA EXE or MTA's new DLL's?
-
Hello, Is there any resources out there to replace a Sound of a car? There is one for teh Texture of, Cars, and skins, Buildings, roads ect. Is there a way to replace SOunds?
-
Hello! I have a Nice Roleplay server, And a small Community! We have an issue, We use the command "/makeshop" And it makes the shop, It shows up, Working fine! But.. When i close/restart the server. It is no longer visable! But it is still in the mySQL database! Please help! Thanks in advance!
-
This is a let-down
-
Hello! Thank you for taking your time to look at this. I have a Roleplay server, And everything is goin well, Exept the login. In the console when i hit Login, I get this: attempt to compare number with boolean Here is where it says the error is: local accountCheckQuery = mysql:query(accountCheckQueryStr) if mysql:num_rows(accountCheckQuery)>0 then accountData = mysql:fetch_assoc(accountCheckQuery) mysql:free_result(accountCheckQuery) Please help, Thanks in advanced!