Advertisement
Yarukinasu

Copy/Paste ent concept...

Mar 26th, 2011
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. alias get_ent_attrs [
  2.   if $editing [
  3.     tmp_ent_attrs = (getentattr)
  4.     loop gea 3 [
  5.       tmp_ent_attrs = (concat $tmp_ent_attrs (getentattr (+ $gea 1)))
  6.     ]
  7.   ]
  8. ]
  9.  
  10. alias copyent [
  11.   if $editing [
  12.     alias ent_type (getenttype)
  13.     get_ent_attrs
  14.   ]
  15. ]
  16.  
  17. alias pasteent [
  18.   if $editing [
  19.     newent $ent_type $tmp_ent_attrs
  20.   ]
  21. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement