The Ctrl+V game

Gouri

Community Paragon
Community Support
Messages
4,565
Reaction score
245
Points
63
[/quote]

Just I have that in my clipboard.
 

Awesomexr

New Member
Messages
118
Reaction score
4
Points
0
While watching over the sea, you spot a large red X on a distant island. Treasure! Arrh!!
 

bennym

New Member
Messages
2
Reaction score
0
Points
0
Code:
@name Targeter Framework
@inputs 
@outputs 
@persist Tar:entity
@trigger 

if(first()){
    runOnTick(1)
    runOnChat(1)
}


if(chatClk(owner())){
    #If the owner talks
    Data=owner():lastSaid():explode(",")
    if(Data:string(1)=="!tar"){
        #If the owner started with "!tar" (To avoid it running everything owner says)
        Tar=findPlayerByName(Data:string(2))#Find a target player by name
        if(Tar){
            #do this if we found a target
            print(Tar:name())
        }else{
            #If there is no target
    }
}
if(Tar){
    #Do this everytime if we have a target
}

Garrys Mod Wiremod Expression 2 code to target other players. Abuse at your own risk, server admins do not like this much.
 

Mr. DOS

Member
Messages
230
Reaction score
5
Points
18
head.setAttribute("count", String.valueOf(configitems.size()));

--- Mr. DOS
 
Top