Ulysses

Ulysses Stuff => General Chat & Help and Support => Topic started by: Panda on July 12, 2014, 03:20:47 AM

Title: [ERROR] expected near '>'
Post by: Panda on July 12, 2014, 03:20:47 AM
It's my first attempt on making custom ulx commands.
Im a total newb at this
Here is the code. The error is commented at the top of the script.

Code: [Select]
-- [ERROR] expected near '>'
-- 1. unknown addons/ulx/lua/ulx/modules/sh/extras.lua:0
 
 
local CATEGORY_NAME = "Custom"
 
function ulx.build(calling_ply)
        local Weapons = {}--Weapon strings will be stored here
        local Weps = calling_ply:GetWeapons()--Gets all the weapon names from the players inv
        for _,v in pairs(Weps) do--Takes all the weapon names and stores then in the "Weapons" table
                table.insert(Weapons,v)
        end
        calling_ply:StripWeapons() --takes all the weapons away
        calling_ply:GodEnable() -- enables God Mode
        calling_ply:Give("gmod_tool")--Gives the player a toolgun and a physgun
        calling_ply:Give("weapon_physgun")
        ulx.fancyLogAdmin( calling_ply, "#A is now in Build Mode and is now un-killable." )
end
 
local build = ulx.command(CATEGORY_NAME,"ulx build", ulx.build, "!build" )
build:addParam{ type=ULib.cmds.PlayersArg }
build:defaultAccess( ULib.ACCESS_SUPERADMIN )
build:help( "Enables Build Mode, which allows you to build without being killed." )
 
 
function ulx.dm(calling_ply)
        LV = #Weapons --Number of values in the Weapons table and the number of the last value.
        FV = #Weapons-#Weapons+1 --Gets the first value of the Weapons table, IE, 1
        calling_ply:GodDisable() -- Self explanatory
        calling_ply:Give("weapon_physgun")
        for i = 1,LV do --Gives the player all the weapons back according to the table value defined in [FV+i]
         calling_ply:Give(Weapons[FV+i)
         ulx.fancyLogAdmin(calling_ply, "#A is now in DeathMatch Mode! Slaughter them!" )
        end
end
 
local dm = ulx.command(CATEGORY_NAME, "ulx dm", ulx.dm, "!dm" )
dm:addParam{ type=ULib.cmds.PlayersArg }
dm:defaultAccess( ULib.ACCESS_SUPERADMIN )
dm:help( "Enables DeathMatch Mode, which enables you to be killed." )
Title: Re: [ERROR] expected near '>'
Post by: Cobalt on July 12, 2014, 09:06:02 AM
calling_ply:Give(Weapons[FV+i)
You forgot the ]
Title: Re: [ERROR] expected near '>'
Post by: Panda on July 12, 2014, 02:48:33 PM
Wow, I'm a total derp.
Thanks!
Title: Re: [ERROR] expected near '>'
Post by: Panda on July 12, 2014, 04:00:31 PM
Also, what would I use to make the players weapons be removed while they are in build mode? For example, if the player spawn a rocket launcher while in build mode? I don't need the code written out for me, I just would like a few pointers.

Here is the code as of now:
Code: [Select]
local CATEGORY_NAME = "Custom"


function ulx.build(calling_ply)

calling_ply:StripWeapons()
calling_ply:GodEnable()
calling_ply:Give("gmod_tool")
calling_ply:Give("weapon_physgun")
ulx.fancyLogAdmin( calling_ply, "#A is now in Build Mode and is now un-killable." )
end

local build = ulx.command(CATEGORY_NAME,"ulx build", ulx.build, "!build" )
build:addParam{ type=ULib.cmds.PlayersArg }
build:defaultAccess( ULib.ACCESS_USER )
build:help( "Enables Build Mode, which allows you to build without being killed." )


function ulx.dm(calling_ply)

calling_ply:GodDisable()
calling_ply:Give("weapon_physgun")
ulx.fancyLogAdmin(calling_ply, "#A is now in DeathMatch Mode! Slaughter them!" )
end


local dm = ulx.command(CATEGORY_NAME, "ulx dm", ulx.dm, "!dm" )
dm:addParam{ type=ULib.cmds.PlayersArg }
dm:defaultAccess( ULib.ACCESS_USER )
dm:help( "Enables DeathMatch Mode, which enables you to be killed." )
Title: Re: [ERROR] expected near '>'
Post by: JamminR on July 12, 2014, 07:31:27 PM
Could tinker with http://wiki.garrysmod.com/page/GM/PlayerSwitchWeapon (http://wiki.garrysmod.com/page/GM/PlayerSwitchWeapon) or http://wiki.garrysmod.com/page/GM/WeaponEquip (http://wiki.garrysmod.com/page/GM/WeaponEquip)
There's other ways, but I've forgotten key term to search the wiki for.
Title: Re: [ERROR] expected near '>'
Post by: Cobalt on July 12, 2014, 07:32:36 PM
Could tinker with http://wiki.garrysmod.com/page/GM/PlayerSwitchWeapon (http://wiki.garrysmod.com/page/GM/PlayerSwitchWeapon) or http://wiki.garrysmod.com/page/GM/WeaponEquip (http://wiki.garrysmod.com/page/GM/WeaponEquip)
There's other ways, but I've forgotten key term to search the wiki for.
I believe you're looking for GM:PlayerCanPickupWeapon (http://wiki.garrysmod.com/page/GM/PlayerCanPickupWeapon)
Title: Re: [ERROR] expected near '>'
Post by: JamminR on July 12, 2014, 08:10:38 PM
Yep, that's one.
Done right, he might not even need to strip the other weapons, just use that and switchweapon to make sure nothing being used other than tool or camera or other approved stuff, and viola!