Jump to content

InDev

Members
  • Posts

    106
  • Joined

  • Last visited

About InDev

  • Birthday 03/02/1995

Details

  • Gang
    Byston Evolution
  • Location
    France
  • Occupation
    Script !
  • Interests
    All about informatic

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

InDev's Achievements

Punk-@ss B*tch

Punk-@ss B*tch (12/54)

0

Reputation

  1. Il veut simplement faire communiquer deux script clients/serveurs sans passer par des trigger... C'est pas compliqué à comprendre
  2. Je ne crois pas qu'il y est réellement une autre solution pour ce genre de chose. Tu peux toujours regarder du côté des useful functions sur le wiki: callClientFunction callServerFunction Voilà, bonne chance !
  3. Have you tried with the onVehicleStartEnter event ? The example do exactly what you want to do by the way...
  4. Ah c'est cool ça au moins ça sera plus direct que par le forum
  5. I think you should search again...
  6. InDev

    SQL Question

    You're welcome
  7. InDev

    SQL Question

    This seems to works, I've changed the test condition on result by the one provided in the wiki: executeSQLCreateTable ( "test", "username TEXT" ) function addInfoToSQL() local sourcename = getPlayerName ( source ) local result = executeSQLSelect ( "test", "username", "username = '" .. getAccountName(getPlayerAccount(source)) .. "'" ) if ( type( result ) == "table" and #result == 0 ) or not result then outputChatBox ( "This is your first time here! Welcome " .. sourcename .. "!", source ) executeSQLInsert ( "test","'" .. getAccountName(getPlayerAccount(source)) .. "'" ) else outputChatBox ( "Welcome back " .. result[1]["username"] .. "!", source ) -- what should I put here to get player username ? executeSQLUpdate ( "test", "username = '" .. sourcename .. "'" ) end end addEventHandler ( "onPlayerLogin", getRootElement(), addInfoToSQL)
  8. InDev

    SQL Question

    On this you can find: I think you can just put: outputChatBox ( "Welcome back " .. result[1]["username"] .. "!", source ) The first row_index in your result table is the first row who matches the SELECT request conditions in your SQL table, the column_name "username" contains what you need to retrieve, I think. I can be wrong, tell me if it works.
  9. En général c'est mieux de dire comment tu as fait pour résoudre ce problème, ça permet à ceux qui ont le même problème de savoir quoi faire. Généralement voir "Problème réglé" sur un post sans savoir comment, c'est plutôt agaçant pour quelqu'un dans le besoin
  10. Vérifies que MTA est bien lancé en tant qu'administrateur et sans mode de compatibilité et ne soit pas bloqué par le pare-feu, ça peut venir de là.
  11. InDev

    RH

    Hoho, ça y'est tu te met à attaquer le marché de MTA
  12. Ou plus court function showWindow () guiSetVisible( window, not guiGetVisible(window) ) showCursor( not isCursorShowing() ) end bindKey("F1", "down", showWindow)
×
×
  • Create New...