Jump to content

Nortonic

Members
  • Posts

    21
  • Joined

  • Last visited

Everything posted by Nortonic

  1. Nortonic

    Site

    Im done with this crap.. Noone helps because they think you are using stolen scripts. May an Admin delete this Thread please?
  2. Nortonic

    Site

    I created my Own, to work with My server, i havent used it in forever, and its not working anymore for some reason. if you guys want to sit here and False accuse me for using vG, go ahead. i was asking for Help.. All i was doing.
  3. Nortonic

    Site

    Christ.. Hell No.. screw Vahalla's buggy as hell site, i have another
  4. Nortonic

    Site

    Hello, can anyone help me setup my site? I have all the files, except when i goto the site, it just shows the text, no pictures, no link to the UCP or forums ect.
  5. 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?
  6. PM my skype: ganstataylor
  7. 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.
  8. Do i add another LUA file for the TXD? If so, i did that, same issue.
  9. 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 )
  10. 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
  11. Hello all.... My MTA recently started looking Low Quality.. For some reason, any suggestions?
  12. Having no luck... Says it cannot parse Meta File
  13. 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
  14. Forgot to put the lib_mysql.dll's in the right places ect... noob mistake of mine
  15. If you still need help. PM me, we could get on Team Viewer
  16. Solved. Just took alot of Trial and Error..
  17. 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?
  18. 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?
  19. 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!
  20. 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!
×
×
  • Create New...