Advertisement
johnlol

Clone

Aug 9th, 2023
1,265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VeriLog 0.57 KB | Gaming | 0 0
  1. prontera,150,160,5  script  clone   74,{
  2.     mes "want to clone someone?";
  3.     mes "the player to clone must be online";
  4.     next;
  5.     if ( select( "No", "yes" ) == 1 ) close;
  6.     mes "select a player";
  7.     .@total = query_sql( "select name, char_id from `char` where online = 1 order by name asc limit 128", .@name$, .@char_id );
  8.     .@s = select( implode( .@name$, ":" ) ) -1;
  9.     if ( getcharid( 0,.@name$[.@s] ) == 0 ) {
  10.         mes "this player is not online anymore";
  11.         close;
  12.     }
  13.     getmapxy .@map$, .@x, .@y, 0;
  14.     clone .@map$, .@x, .@y,strnpcinfo(0)+"::OnMobDead",.@char_id[.@s];
  15.     close;
  16. OnMobDead:
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement