- --Creator: AelitePrime
- --Script Name: Object Replacing Script
- --Website: http://phasorscripts.wordpress.com/
- --Xfire: eliteprime14789x
- --Version: 1.0
- -- Format: {object1, object2}
- -- object2 replaces object1 when object1 is about to spawn.
- -- if object2 is 'nil' then object1 will not spawn. Example: {"health pack", "nil"},
- replacing = {} -- do not touch
- -- Valid Equiment names:
- -- camo,
- -- health pack,
- -- overshield,
- -- frag nade,
- -- plasma nade,
- -- assault rifle ammo,
- -- flamethrower ammo,
- -- needler ammo,
- -- pistol ammo,
- -- rocket ammo,
- -- shotgun ammo,
- -- sniper ammo,
- replacing["eqip"] = {
- -- Example: {"shotgun bullet", "rocket launcher bullet"},
- }
- -- Valid Vehicle names:
- -- banshee
- -- gun turrent
- -- ghost
- -- rwarthog
- -- scorpion
- -- warthog
- replacing["vehi"] = {
- -- Example: {"warthog", "gun turrent"},
- }
- -- Valid Weapons:
- -- assault rifle
- -- ball
- -- flag
- -- flamethrower
- -- needler
- -- pistol
- -- plasma pistol
- -- plasma rifle
- -- fuel rod
- -- rocket launcher
- -- shotgun
- -- sniper rifle
- replacing["weap"] = {
- -- Example: {"assault rifle", "shotgun"},
- }
- -- Valid Projectiles:
- -- banshee bolt
- -- banshee fuel rod
- -- gun turrent bolt
- -- ghost bolt
- -- scorpion bullet
- -- scorpion shell
- -- warthog turrent
- -- assault rifle bullet
- -- flamethrower bullet
- -- frag nade obj
- -- needler bullet
- -- pistol bullet
- -- plasma nade obj
- -- plasma pistol bullet
- -- plasma rifle bullet
- -- fuel rod bullet
- -- rocket launcher bullet
- -- shotgun bullet
- -- sniper rifle bullet
- replacing["proj"] = {
- -- Example: {"pistol bullet", "fuel rod bullet"},
- }
- -- Do not modify beyond this point --
- r_table = {}
- function GetRequiredVersion()
- return 200
- end
- function OnScriptLoad(process, game, persistent)
- end
- function OnNewGame(map)
- r_table = setuptable(replacing)
- end
- function OnObjectCreationAttempt(mapId, parentId, player)
- local name, type = gettaginfo(mapId)
- return checkObject(mapId, r_table[type])
- end
- function checkObject(mapId, table)
- if table then
- for k,v in ipairs(table) do
- if table[k] then
- if table[k][1] == mapId then
- if table[k][2] == "nil" then
- return false
- else
- return table[k][2]
- end
- end
- end
- end
- end
- return mapId
- end
- function setuptable(table)
- local t = {}
- for type,__ in pairs(table) do
- if table[type] then
- t[type] = {}
- for k,__ in ipairs(table[type]) do
- if table[type][k] then
- t[type][k] = {}
- for key, value in ipairs(table[type][k]) do
- if type == "vehi" then
- if value == "banshee" then
- t[type][k][key] = gettagid("vehi", "vehicles\\banshee\\banshee_mp")
- elseif value == "gun turrent" then
- t[type][k][key] = gettagid("vehi", "vehicles\\c gun turret\\c gun turret_mp")
- elseif value == "ghost" then
- t[type][k][key] = gettagid("vehi", "vehicles\\ghost\\ghost_mp")
- elseif value == "rwarthog" then
- t[type][k][key] = gettagid("vehi", "vehicles\\rwarthog\\rwarthog")
- elseif value == "scorpion" then
- t[type][k][key] = gettagid("vehi", "vehicles\\scorpion\\scorpion_mp")
- elseif value == "warthog" then
- t[type][k][key] = gettagid("vehi", "vehicles\\warthog\\mp_warthog")
- elseif value == "nil" or value == nil then
- t[type][k][key] = "nil"
- else
- raiseerror(tostring(value) .. " is not a valid input for type: " .. tostring(type))
- t[type][k] = {}
- end
- elseif type == "weap" then
- if value == "assault rifle" then
- t[type][k][key] = gettagid("weap", "weapons\\assault rifle\\assault rifle")
- elseif value == "ball" then
- t[type][k][key] = gettagid("weap", "weapons\\ball\\ball")
- elseif value == "flag" then
- t[type][k][key] = gettagid("weap", "weapons\\flag\\flag")
- elseif value == "flamethrower" then
- t[type][k][key] = gettagid("weap", "weapons\\flamethrower\\flamethrower")
- elseif value == "needler" then
- t[type][k][key] = gettagid("weap", "weapons\\needler\\mp_needler")
- elseif value == "pistol" then
- t[type][k][key] = gettagid("weap", "weapons\\pistol\\pistol")
- elseif value == "plasma pistol" then
- t[type][k][key] = gettagid("weap", "weapons\\plasma pistol\\plasma pistol")
- elseif value == "plasma rifle" then
- t[type][k][key] = gettagid("weap", "weapons\\plasma rifle\\plasma rifle")
- elseif value == "fuel rod" then
- t[type][k][key] = gettagid("weap", "weapons\\plasma_cannon\\plasma_cannon")
- elseif value == "rocket launcher" then
- t[type][k][key] = gettagid("weap", "weapons\\rocket launcher\\rocket launcher")
- elseif value == "shotgun" then
- t[type][k][key] = gettagid("weap", "weapons\\shotgun\\shotgun")
- elseif value == "sniper rifle" then
- t[type][k][key] = gettagid("weap", "weapons\\sniper rifle\\sniper rifle")
- elseif value == "nil" or value == nil then
- t[type][k][key] = "nil"
- else
- raiseerror(tostring(value) .. " is not a valid input for type: " .. tostring(type))
- t[type][k] = {}
- end
- elseif type == "proj" then
- if value == "banshee bolt" then
- t[type][k][key] = gettagid("proj", "vehicles\\banshee\\banshee bolt")
- elseif value == "banshee fuel rod" then
- t[type][k][key] = gettagid("proj", "vehicles\\banshee\\mp_banshee fuel rod")
- elseif value == "gun turrent bolt" then
- t[type][k][key] = gettagid("proj", "vehicles\\c gun turret\\mp gun turret")
- elseif value == "ghost bolt" then
- t[type][k][key] = gettagid("proj", "vehicles\\ghost\\ghost bolt")
- elseif value == "scorpion bullet" then
- t[type][k][key] = gettagid("proj", "vehicles\\scorpion\\bullet")
- elseif value == "scorpion shell" then
- t[type][k][key] = gettagid("proj", "vehicles\\scorpion\\tank shell")
- elseif value == "warthog turrent" then
- t[type][k][key] = gettagid("proj", "vehicles\\warthog\\bullet")
- elseif value == "assault rifle bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\assault rifle\\bullet")
- elseif value == "flamethrower bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\flamethrower\\flame")
- elseif value == "frag nade obj" then
- t[type][k][key] = gettagid("proj", "weapons\\frag grenade\\frag grenade")
- elseif value == "needler bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\needler\\mp_needle")
- elseif value == "pistol bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\pistol\\bullet")
- elseif value == "plasma nade obj" then
- t[type][k][key] = gettagid("proj", "weapons\\plasma grenade\\plasma grenade")
- elseif value == "plasma pistol bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\plasma pistol\\bolt")
- elseif value == "plasma rifle bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\plasma rifle\\bolt")
- elseif value == "fuel rod bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\plasma_cannon\\plasma_cannon")
- elseif value == "rocket launcher bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\rocket launcher\\rocket")
- elseif value == "shotgun bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\shotgun\\pellet")
- elseif value == "sniper rifle bullet" then
- t[type][k][key] = gettagid("proj", "weapons\\sniper rifle\\sniper bullet")
- elseif value == "nil" or value == nil then
- t[type][k][key] = "nil"
- else
- raiseerror(tostring(value) .. " is not a valid input for type: " .. tostring(type))
- t[type][k] = {}
- end
- elseif type == "eqip" then
- if value == "camo" then
- t[type][k][key] = gettagid("eqip", "powerups\\active camouflage")
- elseif value == "health pack" then
- t[type][k][key] = gettagid("eqip", "powerups\\health pack")
- elseif value == "overshield" then
- t[type][k][key] = gettagid("eqip", "powerups\\over shield")
- elseif value == "frag nade" then
- t[type][k][key] = gettagid("eqip", "weapons\\frag grenade\\frag grenade")
- elseif value == "plasma nade" then
- t[type][k][key] = gettagid("eqip", "weapons\\plasma grenade\\plasma grenade")
- elseif value == "assault rifle ammo" then
- t[type][k][key] = gettagid("eqip", "powerups\\assault rifle ammo\\assault rifle ammo")
- elseif value == "flamethrower ammo" then
- t[type][k][key] = gettagid("eqip", "powerups\\flamethrower ammo\\flamethrower ammo")
- elseif value == "needler ammo" then
- t[type][k][key] = gettagid("eqip", "powerups\\needler ammo\\needler ammo")
- elseif value == "pistol ammo" then
- t[type][k][key] = gettagid("eqip", "powerups\\pistol ammo\\pistol ammo")
- elseif value == "rocket ammo" then
- t[type][k][key] = gettagid("eqip", "powerups\\rocket launcher ammo\\rocket launcher ammo")
- elseif value == "shotgun ammo" then
- t[type][k][key] = gettagid("eqip", "powerups\\shotgun ammo\\shotgun ammo")
- elseif value == "sniper ammo" then
- t[type][k][key] = gettagid("eqip", "powerups\\sniper rifle ammo\\sniper rifle ammo")
- elseif value == "nil" or value == nil then
- t[type][k][key] = "nil"
- else
- raiseerror(tostring(value) .. " is not a valid input for type: " .. tostring(type))
- t[type][k] = {}
- end
- end
- end
- end
- end
- end
- end
- return t
- end
Recent Pastes