Jump to content

dukenukem

Members
  • Posts

    98
  • Joined

  • Last visited

Everything posted by dukenukem

  1. okay but zombie infestation exist but with other name, topic for close.
  2. because is not id's!, interiorpositions.lua - here you have all id's , names example /createinterior bar 1000 0 Ufo Bar in LV
  3. lol ? ----> CTRL+V dont work? for me all work ;o
  4. function wordCensor(word) local asterisk = "*" local hide = word:sub(2, #word-1) return word:gsub(hide, asterisk:rep(#hide)) end for example: wordCensor("banana") will return b****a heh. I wanted to do it yourself
  5. what information you want? this is DM map
  6. heh good thanks but i want too make Player say: f**k * - when you say it you dont get mute but **** censor
  7. DUKE3DSA What is this? I want to make first person (fps) gamemode based on game from 1996 DUKE NUKEM 3D. Gamemode is for adult (+18) because you can sex with player, bot and you hear vulgar words. Earn exp for kill bot, player. This is dm + roleplay. What is completed? -ALL CONTROLS. "1-0" - weapons change "H" - holo duke "J" - jetpack "N" - night vision "M" - med kit "R" - steroids "LSHIFT" and "RSHIFT" - duke speed run "I" - toggle crosshair "K" - duke talking "O" - turn on and off background music -HUD HP, AP - COMPLETED OTHERS - 0 % -WEAPONS -by kurtis2221 I will notify you here about my work When release?: When it's done
  8. -- MySQL Configuration --> "@sql.username" value="login for database"/> "@sql.password" value="password for database"/> "@sql.database" value="databasename"/> "@sql.hostname" value="localhost"/> "@sql.port" value="3306"/> "@sql.socket" value="/var/run/mysql/mysql.sock"/> -- Registration --> "@players.allow_registration" value="1"/>-- Change to 0 to disable registration and show an error message --> "@players.registration_error_message" value="Edit this to show the user a message when registration is disabled"/>
  9. lol i know tables, in next version i make it in .xml
  10. https://community.multitheftauto.com/index.php?p= ... ls&id=1351
  11. lot of servers have got first person but haven't got aiming.
  12. Yes you must. localhost - dont change root - database user password - database password mta - database name port - dont change same as in settings.xml
  13. Welcome to Censorship system 1.0.0 created by dukenukem Add to ACL.XML group "admin" it: You dont like vulgarity on your server? That simple script change it! -added all vulgar words from: http://www.noswearing.com/dictionary/a DOWNLOAD
  14. 1.settings.xml -- MySQL Configuration --> "@sql.username" value="login for database"/> "@sql.password" value="password for database"/> "@sql.database" value="databasename"/> "@sql.hostname" value="localhost"/> "@sql.port" value="3306"/> "@sql.socket" value="/var/run/mysql/mysql.sock"/> -- Registration --> "@players.allow_registration" value="1"/>-- Change to 0 to disable registration and show an error message --> "@players.registration_error_message" value="Edit this to show the user a message when registration is disabled"/> 2.mtaserver.conf "mta_mysql.so"/> "sha.so"/> "ml_sockets.so"/> .so - for linux , .dll - for windows you must too have got modules and change something in sql resource
  15. https://github.com/courtezboi/mta-paradise courtezboi version is better if you really want create rp server.
  16. dukenukem

    Gta sa grapich

    burned down the Graphics Card? go buy new card D:
  17. yes. https://community.multitheftauto.com/index.php?p= ... ils&id=234 https://community.multitheftauto.com/index.php?p= ... ils&id=672
  18. ah, I have not read to the end ;p
  19. you want to create health meter? addEventHandler ("onClientResourceStart",getResourceRootElement(getThisResource()), function() Color = tocolor (0,0,0,255) bgColor = tocolor (0,255,255,127) fgColor = tocolor (0,255,255,185) sx,sy = guiGetScreenSize () vehiclehealthx = sx/800*619 vehiclehealthy = sy/600*169 vehiclehealthxoverlay = sx/800*621 vehiclehealthyoverlay = sy/600*171 car = nil end) addEventHandler ("onClientVehicleEnter",getRootElement(), function(player,seat,door) if (player == getLocalPlayer()) then car = source end end) addEventHandler ("onClientVehicleExit",getRootElement(), function(player,seat) if (player == getLocalPlayer()) then car = nil end end) addEventHandler ("onClientPlayerWasted",getRootElement(), function () if (source == getLocalPlayer()) then car = nil end end) function blabla() if (isElement(car)) then local healthRelative = getElementHealth(car)/1000 dxDrawRectangle (vehiclehealthx, vehiclehealthy, 152, 12, Color, false) dxDrawRectangle (vehiclehealthxoverlay, vehiclehealthyoverlay, 148, 8, bgColor, false) dxDrawRectangle (vehiclehealthxoverlay, vehiclehealthyoverlay, 98*healthRelative, 8, fgColor, false) else car = nil end end addEventHandler ("onClientRender",getRootElement(),blabla) remember - client side
  20. dukenukem

    Radar

    but if would be replacing gta3.img radar textures and models fronten2.txd, hud.txd etc. then maybe you can make it in mta
×
×
  • Create New...