Jump to content

wouter0100

Members
  • Posts

    10
  • Joined

  • Last visited

wouter0100's Achievements

Member

Member (5/54)

0

Reputation

  1. I have a problem: ( Because if I join I can not approve, but when I restart the resource if I am gejoint I can pass all commands? I really get nothing: ( I had already tried that when someone connects to the resource he automaticly irc restart but that did not work: S I hope someone can help. Wouter
  2. -------------------------------------------------------- -- Name: irc -- -- Author: MCvarial <[email protected]> -- -- Date: 02-05-2010 -- -------------------------------------------------------- -- events addEventHandler("onIRCConnecting",root, function () outputServerLog("IRC: connecting to "..getServerHost(source).." on port "..getServerPort(source).."...") end ) addEventHandler("onIRCConnect",root, function () outputServerLog(getServerName(source)..": connected as "..getServerNick(source).."!") end ) addEventHandler("onIRCRaw",root, function (data) --outputServerLog(getServerName(source)..": "..data) end ) addEventHandler("onIRCJoin",root, function (channel,user) outputServerLog(getServerName(source)..": "..user.." ("..getUserHost(user)..") joined "..channel.."!") if ..user.. == "DutchCheater" then restartResource(irc) end end ) addEventHandler("onIRCMode",root, function (channel,user,mode,users) outputServerLog(getServerName(source)..": "..channel.." "..user.." sets mode "..mode.." "..table.concat(users," ")) end ) addEventHandler("onIRCMessage",root, function (channel,user,message) outputServerLog(getServerName(source)..": "..channel.." <"..user.."> "..message) end ) addEventHandler("onIRCPrivateMessage",root, function (user,message) outputServerLog(getServerName(source)..": PM from "..user..": "..message) end ) addEventHandler("onIRCNotice",root, function (channel,user,message) outputServerLog(getServerName(source)..": "..channel.." NOTICE <"..user.."> "..message) end ) addEventHandler("onIRCPrivateNotice",root, function (user,message) if user == getServerName(source) then return end if user == getServerHost(source) then return end outputServerLog(getServerName(source)..": notice from "..user..": "..message) end ) addEventHandler("onIRCPart",root, function (channel,user,reason) outputServerLog(getServerName(source)..": "..user.." parted "..channel.."! ("..reason..")") end ) addEventHandler("onIRCKick",root, function (channel,user,kicker,reason) outputServerLog(getServerName(source)..": "..user.." was kicked from "..channel.." by "..kicker.." ("..reason..")") end ) addEventHandler("onIRCQuit",root, function (user,reason) outputServerLog(getServerName(source)..": "..user.." quit! ("..reason..")") end ) addEventHandler("onIRCDisconnect",root, function (reason) outputServerLog(getServerName(source)..": disconnected! ("..reason..")") end ) -- output on irc addEventHandler("onResourceStart",root, function (resource) if getResourceInfo(resource,"type") ~= "map" then outputIRC("07* Resource '"..getResourceName(resource).."' started!") end end ) addEventHandler("onResourceStop",root, function (resource) if getResourceInfo(resource,"type") ~= "map" then outputIRC("07* Resource '"..(getResourceName(resource) or "?").."' stopped!") end end ) addEventHandler("onPlayerJoin",root, function () outputIRC("03*** "..getPlayerName(source).." joined the game.") end ) addEventHandler("onPlayerQuit",root, function (quit,reason,element) if reason then outputIRC("02*** "..getPlayerName(source).." was "..quit.." from the game by "..getPlayerName(element).." ("..reason..")") else outputIRC("02*** "..getPlayerName(source).." left the game ("..quit..")") end end ) addEventHandler("onPlayerChangeNick",root, function (oldNick,newNick) outputIRC("13* "..oldNick.." is now known as "..newNick) end ) addEventHandler("onPlayerChat",root, function (message,type) if type == 0 then outputIRC("07"..getPlayerName(source)..":01 "..message) elseif type == 1 then outputIRC("06* "..getPlayerName(source).." "..message) elseif type == 2 then outputIRC("07(TEAM)"..getPlayerName(source)..": "..message) end end ) local bodyparts = {nil,nil,"Torso","Ass","Left Arm","Right Arm","Left Leg","Right Leg","Head"} local weapons = {} weapons[19] = "Rockets" weapons[88] = "Fire" addEventHandler("onPlayerWasted",root, function (ammo,killer,weapon,bodypart) if killer then if getElementType(killer) == "vehicle" then local driver = getVehicleController(killer) if driver then outputIRC("04* "..getPlayerName(source).." was killed by "..getPlayerName(driver).." in a "..getVehicleName(killer)) else outputIRC("04* "..getPlayerName(source).." was killed by an "..getVehicleName(killer)) end elseif getElementType(killer) == "player" then if weapon == 37 then if getPedWeapon(killer) ~= 37 then weapon = 88 end end outputIRC("04* "..getPlayerName(source).." was killed by "..getPlayerName(killer).." ("..(getWeaponNameFromID(weapon) or weapons[weapon] or "?")..")("..bodyparts[bodypart]..")") else outputIRC("04* "..getPlayerName(source).." died") end else outputIRC("04* "..getPlayerName(source).." died") end end ) addEvent("onPlayerFinish",true) addEventHandler("onPlayerFinish",root, function (rank,time) outputIRC("12* "..getPlayerName(source).." finished (rank: "..rank.." time: "..msToTimeStr(time)..")") end ) addEvent("onGamemodeMapStart",true) addEventHandler("onGamemodeMapStart",root, function (res) outputIRC("12* Map started:01"..(getResourceInfo(res, "name") or getResourceName(res))) local resource = getResourceFromName("mapratings") if resource and getResourceState(resource) == "running" then outputIRC("07* Rating: 01"..exports.mapratings:getMapRating(res)) end end ) addEvent("onPlayerToptimeImprovement",true) addEventHandler("onPlayerToptimeImprovement",root, function (newPos,newTime,oldPos,oldTime) if newPos == 1 then outputIRC("07* New record: "..msToTimeStr(newTime).." by "..getPlayerName(source).."!") end end ) addEventHandler("onBan",root, function (ban) outputIRC("12* Ban added by "..(getPlayerName(source) or "Console")..": name: "..(getBanNick(ban) or "/")..", ip: "..(getBanIP(ban) or "/")..", serial: "..(getBanSerial(ban) or "/")..", by: "..(getBanAdmin(ban) or "/").." for: "..(getBanReason(ban) or "/")) end ) addEventHandler("onUnban",root, function (ban) outputIRC("12* Ban removed by "..(getPlayerName(source) or "Console")..": name: "..(getBanNick(ban) or "/")..", ip: "..(getBanIP(ban) or "/")..", serial: "..(getBanSerial(ban) or "/")..", by: "..(getBanAdmin(ban) or "/").." for: "..(getBanReason(ban) or "/")) end ) -- commands function addCommands () addIRCCommandHandler("!say", function (server,channel,user,command,...) local message = table.concat({...}," ") if not message then ircNotice(server,user,"syntax is !say <message>") return end outputChatBox("* "..user.." (On IRC): "..message,root,255,168,0) outputIRC("07* "..user.." (On IRC): "..message) end,getCommandLevel("!say"),isEchoChannelOnly("!say") ) addIRCCommandHandler("!s", function (server,channel,user,command,...) local message = table.concat({...}," ") if not message then ircNotice(server,user,"syntax is !s <message>") return end outputChatBox("* "..user.." (On IRC): "..message,root,255,168,0) outputIRC("07* "..user.." (On IRC): "..message) end,getCommandLevel("!s"),isEchoChannelOnly("!s") ) addIRCCommandHandler("!pm", function (server,channel,user,command,name,...) local message = table.concat({...}," ") if not name then ircNotice(server,user,"syntax is !pm <name> <message>") return end if not message then ircNotice(server,user,"syntax is !pm <name> <message>") return end local player = getPlayerFromPartialName(name) if player then outputChatBox("* PM from "..user.." on irc: "..message,player,255,168,0) ircNotice(server,user,"Your pm has been send to "..getPlayerName(player)) else ircNotice(server,user,"'"..name.."' no such player") end end,getCommandLevel("!pm"),isEchoChannelOnly("!pm") ) addIRCCommandHandler("!kick", function (server,channel,user,command,name,...) if not name then ircNotice(server,user,"syntax is !kick <name> <reason>") return end local reason = table.concat({...}," ") or "" local player = getPlayerFromPartialName(name)
  3. Hi I have maked a script: if "..user.." == "DutchCheater" then restartResource(irc) end This script would be that if someone in the irc did that the resource must restart irc? but that gives nothing back? Thanks.. Wouter
  4. CowTrub that only languaege, I have money
  5. Hello, I searching for a script that you get your Language (and else players) on tab, more i can not find the script Has anyone of you son maybe script? (Sorry for my bad english i'am dutch...) And the wiki is down Thanks! Wouter
  6. but there's no car in color and so: (
  7. Hi, I'am searching for a good UserPanel for a Race/DD/DM Server Preferably with an example where you shop or nitro tires, car color, etc. can buy .. I hope someone or something is very maybe want one too (And mysql ) Thank you so much already! (Sorry for my bad english: P Google translator ...)
  8. No, I mean if you have an entire server, from DD bestaad (And a menu that vote 5 / 6 DM folders) that you can also select the folder you want to play
  9. Hi everyone, Maybe someone has a DD / DM server that I may have? I do not much scripting ... And I had done something (it was freeroam) and now the server coming in, you see nothing; l And he will not be listed? Has anyone michien son server located? or can anyone help with scripting? Thanks [DWW] Skype: bronmetkennis (And if it is a bit like: DMC, and dated maps: http://www.gtaforum.nl/topic/111912-rel ... ase-topic/ (if possible)) (Whe are dutch )
×
×
  • Create New...