Jump to content

Cyandie

Members
  • Posts

    112
  • Joined

  • Last visited

Everything posted by Cyandie

  1. Hey there I was wondering how would it be able to attach a suitcase to a 'thePlayer' or 'source' s Arm? ( If so could you give a example code it would be great if you could ).
  2. Aha would be cool to Send messages that players get when they come back online if their account is registerd
  3. Bye the way is this script MySQL or SQLite?
  4. You can't do such astuff as exports.test-system:function(....) can you now
  5. Instead of exports['mysql']: you should use exports.mysql: if it's got any such dot or - line in you should use [''] if not use exports.(resourcename).
  6. Cyandie

    Set up vG script

    JUst delete vG and Make your own project it's better then using other peoples code.
  7. so How would I set the Head on fire of the players uses the command so it should set the thePlayers's Head on Fire but no other part of the body is that able to do so?
  8. Cyandie

    Hello there

    Also when showing MTA:SA Scripting Code ( Lua Scripting ) please us the Lua Tags. and when you do you will get something like this function testCommand( thePlayer ) outputChatBox("Hello there Player", thePlayer, 214, 283, 135) end addCommandHandler("testCommand", testCommand)
  9. Cyandie

    Database

    I tried using SQLite with websites never got it working finally got MySQL working a lot easier and faster as you said well it's your choice Nick hope you make the right choice.
  10. Cyandie

    Database

    True the good thing about MySQL is that it can be used for websites and servers if you need any help with any MySQL things PM me.
  11. Cyandie

    Database

    the war against SQLLite and MySQL
  12. Cyandie

    Database

    To be honest I hate SQLlite storing data I think it's a lot better using the MySQL features SQL is easier to keep things in one place where you can edit them easy with Phpmyadmin.
  13. I'm sure you can just make a script where it puts a 'CreateObject' for every dimension Id for the interior so it fix's the interior ID? for everything.
  14. Cyandie

    MTA Paradise.

    try testing it on ur computer and install xammp.
  15. Try using the SQL stuff like this `message`='".. message .."
  16. I think he knows that by now...
  17. Cyandie

    MTA Paradise.

    You have to have this 'http://code.google.com/p/multitheftauto-modules/downloads/detail?name=libmysql.dll&can=2&q=' in your server directory like put it next to server.exe and you have to download this too 'http://code.google.com/p/multitheftauto-modules/downloads/detail?name=mta_mysql.dll&can=2&q=' replace that one with the one in the modules folder try it again tell me if you get any errors.
  18. I noticed that too lol kinda silly making a server when you can't even script a bit.
  19. Cyandie

    MTA Paradise.

    You have to place the modules folder from MTA paradise near the 'resources' folder into your deathmatch directory if it does not work then what worked for me was Downloading the modules from the MtaSQ MYSQL module site.
  20. Lua is meat for people to learn not ask for every single thing lol and I'm not trolling I looked into ShoDown script I found most things of vG code 3.0.2 that was there so just grow up.
  21. Mabe vG script was not made for you to mess around with and ask in this section for help on your server. Just stop asking for help on vG Scripts.
  22. Cyandie

    Server list spam

    It's 'things' not 'thinks'
  23. It cannot find the field name called "test text" in your mySQL database.
  24. Cyandie

    stop Car Damage

    function disableBlowVehicle( source ) local health = getElementHealth( source) if(health<=350) then setElementHealth(source, 300) setVehicleDamageProof(source, true) setVehicleEngineState(source, false) end end addEventHandler("onVehicleDamage", getRootElement(), disableBlowVehicle) Try that I tested it and it worked
×
×
  • Create New...