ID:266468
 
ok im trying to combine missile() and pick() its not working very well but i only got 3 errors for the code


mob/verb/food(mob/M in world)
missile(/obj/ki1, usr, pick (
prob(1)
loc=locate(1,1,1),
prob(50)
loc=locate(1,2,1),
prob(25)
loc=locate(1,3,1)
))


and the errors are all missing expression for

loc=locate(1,1,1),

loc=locate(1,2,1),

loc=locate(1,3,1)
new plan



mob/verb/food(mob/M in world)
missile(/obj/ki1, usr, pick (
prob(usr.accuracy)
locate(1,1,1)

))




mob/var
accuracy=10



ook it says i have extra args for prob? y is this?