Jump to content

Cyandie

Members
  • Posts

    112
  • Joined

  • Last visited

Everything posted by Cyandie

  1. Same I need that can't find it anywhere.
  2. Cyandie

    sql

    Or this https://wiki.multitheftauto.com/wiki/Modules/MTA-MySQL the functions are below.
  3. Cyandie

    Open Ports

    Hey there guys I was wondering what should I put in my ports here my server won't open my ports so i was wondering what should I type anyway here you go here is what i normally put in..
  4. Cyandie

    MTA Paradise.

    Just make a triggerServerEvent with your server side ( inserting to SQL or any SQL Script ).
  5. Cyandie

    About lines

    Cheers everyone for putting in your input
  6. It's the same thing you don't even know what FTP is or how it is controlled. You should learn that before making your own server.
  7. Cyandie

    About lines

    Alright thanks this explains it more
  8. Cyandie

    About lines

    okay so whats the difference from such codes like this if (object == 1) then to if object == 1 then ?
  9. Cyandie

    MTA Paradise.

    It saves itself so you don't have to keep on doing it.
  10. Cyandie

    MTA Paradise.

    You have to script them yourself in the jobs resource
  11. Cyandie

    MTA Paradise.

    No it uses commands such as CommandHandlers such as /sethp, /setskin, /setname, /ban, /mute You can find all these commands in the admin resource listed but for now on enjoy your roleplaying!
  12. Cyandie

    MTA Paradise.

    Go into your 'resources' folder then into your resource called 'players' then into registration.lua open it up You should find this local allowRegistration = tonumber( get( 'allow_registration' ) ) == 1 and true or false Change it to local allowRegistration = true
  13. Cyandie

    MTA Paradise.

    Change this in your SQL Resource local server = get( "server" ) or "localhost" -- server local user = get( "user" ) or "ElMota" -- username local password = get( "password" ) or "*******" -- password local db = get( "database" ) or "elmota" -- database local port = get( "port" ) or 3306 local socket = get( "socket" ) or nil to local server = get( "server" ) or "localhost" -- server local user = get( "user" ) or "root" -- username local password = get( "password" ) or "" -- password local db = get( "database" ) or "ElMota" -- database local port = get( "port" ) or 3306 local socket = get( "socket" ) or nil
  14. Cyandie

    MTA Paradise.

    Just change the username from "ElMota" to "root" and see if it works then.
  15. No I never used this resource I just made a script not a whole resource.
  16. Cyandie

    MTA Paradise.

    It's really really easy lol.
  17. I got it woking to look like he's holding was awesome ;D
  18. Lol you don't say .
  19. I don't use vG Code I just use Freeroam to script in but cheers
  20. Title says it all if you know what i mean.
  21. in the vG Script whitch he is using it is already set by mysql = exports.mysql.
  22. mysql = exports.mysql function createInfoPoints( ) local result = mysql:mysql_query("SELECT * FROM infopoints") for index, infopointpickup in ipairs(result ) do fnCreateInfo(infopointpickup ["posx"], infopointpickup ["posy"], infopointpickup["posz"], infopointpickup["message"]) end end addEventHandler("onResourceStart",resourceRoot, createInfoPoints) Try that.
×
×
  • Create New...