ID:161922
 
runtime error: positional parameters must precede all named args


im assuming its near these lines, oddly enough thats all the error message its giving me...
Custom_Alert(mob/Usr=usr in world,Message as text,Title as text,Button1="Ok" as text,Button2 as text,Button3 as text)
world<<t_alert(Usr=usr,Message,Title,Button1="Ok",Button2,Button3)
mob/verb/Custom_Alert(Message as text, Title as text, Button1 as text, Button2 as text, Button3 as text)
alert(src,Message,Title,Button1,Button2,Button3)


button1="ok" is telling you what button1 defaults to. That's not how you code the value of it.
In response to Siientxx
I must be tired to even think about posting that loll.... i figured it out already lol. thanks though.
In response to Tubutas
Next time; delete your thread, then. ;)
In response to Siientxx
K, this time i forgot though.