PDA

View Full Version : trying to write a script to add everyone in the room to the group



dex
07-27-2018, 12:51 PM
So I have this:

GameObj.pcs.each { |pc| fput "group #{pc.name}" }


And it's not working. Any ideas why?

horibu
07-27-2018, 01:04 PM
May I suggest this thread for you: http://forum.gsplayers.com/showthread.php?83616-Post-Your-Best-One-Liners-with-info

But here's what you are looking for:

;alias add --global groupall = ;e GameObj.pcs.each { |pc| fput "group #{pc.noun}" }

horibu
07-27-2018, 01:05 PM
also the .name will do the full name (with title), you wanted .noun. Otherwise it will try to do GROUP LORD TYSONG when you just wanted GROUP TYSONG

dex
07-27-2018, 01:15 PM
that was it, should've been using noun, thanks