i thought sanuro had a cool idea with the capturing creatures and i was wondering if this code would work
mob/god/verb
Capture()
set category = "GM"
var/mob/M
usr << "You've captured a [src]"
for(M)
M.loc = null
mob/god/verb
Summon_captued_creat()
set category = "GM"
var/mob/M
usr << "You've summoned a [src]"
for(M)
M.loc = locate(src.x,src.y-1,src.z)
ID:174704
Jul 24 2003, 4:00 pm
|
|
Jul 24 2003, 4:11 pm
|
|
Nope.
|
In response to Garthor
|
|
then what will?
|
In response to Polaris139
|
|
would you suggest me modifying a bank code to make a list for the creatures?
|
In response to Polaris139
|
|
No learn about lists in the reference in dreammaker they arent that hard to work with
|