ID:265018
 
Code:
mob/Naruto
verb
tajuutaki()
set category = "Jutsus"
set name = "Tajuu taki rasengan"
usr.Handseals()
if(!usr.handseals)
return
if(usr.Frozen==1)
usr<<"Frozen!"
return
else
view() <<"Tajuu taki rasengan!!"
usr.overlays += 'rasengan.dmi'
usr.icon_state = "normal"
var/mob/npcs/Bunshin/A = new /mob/npcs/TTRBunshin
if(A)
A.name = "[usr.name]"
A.original = usr
A.icon = usr.icon
A.overlays += 'rasengan.dmi'
A.icon_state="normal"
A.loc = locate(usr.x-1, usr.y, usr.z)
flick("smoke2",A)



Problem description:
When I use the jutsu, My clone is slow to appear... can some one help??



Code goes between the <dm> tags, thanks.

There doesn't appear to be any sort of delay in this particular piece of code, so my guess is that something is going on in usr.Handseals() that slows it down.
Handseals() is probably delaying it.

You'd probably be best served by just writing your own code from scratch. Using other's code when you don't know what it's doing isn't going to help you much.