{$CLEO .cs} // Bu script, barrierturn.dff objesine 10 metre yaklaştığınızda 'Y' tuşuna üç kez basar 0000: NOP :main while true wait 0 // Oyuncunun tanımlı ve canlı olup olmadığını kontrol et if Player.Defined($PLAYER_CHAR) then // Oyuncunun pozisyonunu al 00A0: store_actor $PLAYER_ACTOR position_to 0@ 1@ 2@ // Barrierturn objesinin tüm mevcut pozisyonlarını kontrol et 041C: find_object 968 closest_to 0@ 1@ 2@ store_to 3@ 4@ 5@ // Barrierturn objesi bulunursa if 03E5: distance_between_coords 0@ 1@ 2@ and 3@ 4@ 5@ less_than 10.0 then // Y tuşuna üç kez basma işlemi 0AB0: key_pressed 121 // Y tuşu wait 100 0AB0: key_pressed 121 // Y tuşu wait 100 0AB0: key_pressed 121 // Y tuşu wait 100 end end end