Türkiye'nin en eski ve aktif online oyun platformu, Ultima Online, Counter-Strike ve diğer online oyunlar hakkında Türkçe haber, bilgi ve forum sunuyor. Türkiye'nin en eski ve aktif online oyun platformu, Ultima Online, Counter-Strike ve diğer online oyunlar hakkında Türkçe haber, bilgi ve forum sunuyor.
  • ANASAYFA
  • ULTIMA ONLINE
    • Ultima Online Oyuncu Rehberi

      Ultima Online Oyuncu Rehberi

      Oyunu hakkında tanıcı bilgiler ve ipuçları

    • Ultima Online Portal

      Ultima Online Portal

      Ultima Online oyununun topluluk portalı

    • Ultima Online Server List

      Ultima Online Server List

      Önemli özellikleri ve online oyuncu sayıları

    • Ultima Online Script

      Ultima Online Script

      Sphere, RunUO, Razor scriptleri

  • FORUM
  • DOKÜMAN
  • İNDİR
  • DISCORD 23
   Üye ol    Giriş
211
  1. UO Scriptleri
  2. Sphere Scripts
  3. Items
  4. Ethereal Mounts
Basic

Ethereal Mounts

  • Basic
  • 2009-05-02 12:29
  • 0 Yorumlar
  • 1356 Görüntüleme
/////////////////////////////////////
//Created by Soulless
//Send bugs/feedback to [email protected]
//v2.1
//

[defname ethy_settings]
mount_delay 1 //Ethereal Mountun çıkartılma süresi

[events e_ethereal_mounts] //Bunun fix gibi tüm playerlara verilmesi lazım.
on=@dismount
if <argo.tag0.ethereal_mount>
serv.newitem <argo.tag0.ethereal_mount>
new.cont=<src.uid>
argo.remove
return 1
endif

[itemdef i_ethereal_horse]
name=Ethereal Horse Statuette
id=i_pet_horse
type=t_ethereal_statuette
tdata1=c_horse_tan

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Horse Statuette

[itemdef i_ethereal_llama]
name=Ethereal Llama Statuette
id=i_pet_llama
type=t_ethereal_statuette
tdata1=c_llama

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Llama Statuette

[itemdef i_ethereal_ostard]
name=Ethereal Ostard Statuette
id=i_pet_ostard_zostrich
type=t_ethereal_statuette
tdata1=c_ostard_desert

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Ostard Statuette

[itemdef i_ethereal_unicorn]
name=Ethereal Unicorn Statuette
id=i_pet_unicorn
type=t_ethereal_statuette
tdata1=c_m_unicorn

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Unicorn Statuette

[itemdef i_ethereal_ridgeback]
name=Ethereal Ridgeback Statuette
id=i_pet_ridgeback
type=t_ethereal_statuette
tdata1=c_ridgeback

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Ridgeback Statuette

[itemdef i_ethereal_kirin]
name=Ethereal Kirin Statuette
id=i_pet_kirin
type=t_ethereal_statuette
tdata1=c_kirin

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Kirin Statuette

[itemdef i_ethereal_beetle]
name=Ethereal Beetle Statuette
id=i_pet_giantbeetle
type=t_ethereal_statuette
tdata1=c_giant_beetle

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Beetle Statuette

[itemdef i_ethereal_swamp_dragon]
name=Ethereal Swamp Dragon Statuette
id=i_pet_swampdragon
type=t_ethereal_statuette
tdata1=c_swamp_dragon

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Swamp Dragon Statuette

[itemdef i_ethereal_hiryu]
name=Ethereal Hiryu Statuette
id=i_pet_hiryu
type=t_ethereal_statuette
tdata1=c_m_hiryu

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Hiryu Statuette

[itemdef i_ethereal_cusidhe]
name=Ethereal Cu Sidhe Statuette
id=i_pet_wolf
type=t_ethereal_statuette
tdata1=c_cu_sidhe

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Cu Sidhe Statuette

[itemdef i_ethereal_polar_bear]
name=Ethereal Polar Bear Statuette
id=i_pet_bear_polar
type=t_ethereal_statuette
tdata1=c_bear_polar

on=@create
color=0455
attr=04

category=Ethereal
subsection=Ethereal pets
description=Ethereal Polar Bear Statuette

[typedef t_ethereal_statuette]
on=@dclick
if <cant_mount>
return 1
else
src.tag.nomovetill <eval (<serv.time>+(<def0.mount_delay>*10))>
src.loop_anim,16,<eval (<def0.mount_delay>/2)>,2
timerf <def0.mount_delay>,mount_ethy <tdata1>
return 1
endif

[function mount_ethy]
if <cant_mount>
return 1
else
serv.newnpc <args>
ref1=<new.uid>
serv.newitem i_memory
new.color=memory_ipet
new.link=<src.uid>
new.cont=<ref1.uid>
ref1.color 0ffff
ref1.tag0.ethereal_mount=<baseid>
ref1.mount <src>
consume
endif

[function cant_mount]
if (<topobj.isplayer>)
if (<topobj.uid>!=<src.uid>)
src.sysmessage Bu sizin değil.
return 1
elseif (<src.flags>&statf_dead)
src.sysmessage Şuan kullanamazsınız.
return 1
elseif (<src.flags>&statf_polymorph)
src.sysmessage Polymorph olmuşken kullanamazsınız.
return 1
elseif (<src.findlayer.25.uid>)
src.sysmessage Zaten bir bineğe biniyorsunuz.
return 1
else
return 0
endif
else
src.sysmessage Şuan olduğu yerde bunu kullanamazsınız.
return 1
endif

[function loop_anim]
if <argv[1]>>1
for <eval (<argv[1]>-1)>
timerf <eval (<local._for>*<argv[2]>)>,anim <eval <argv[0]>>
endfor
endif
anim <argv[0]>


[eof]

Değerlendirmeler

0 0

Total votes: 0

Üye Ol veya Giriş Yap

Bu içeriğe yorum atmak istiyorsanız hemen üye olun veya giriş yapın.

Discord ile Bağlan
Twitch ile Bağlan
Steam ile Bağlan
Google ile Bağlan

Yorumlar (0)

Henüz yorum yapılmamış
Sadece kayıtlı kullanıcılar yeni yorum yapabilir.


Ultima-Strike Discord
Benzer Sayfalar
  • Ethereal Warrior

    2008-07-10 06:40

  • Ethereal Dragon

    2008-10-30 14:26



  • Son Forumlar
  • Sayfalar
  • morfin59
    Nebula Uo gerçekleri

    Ultima Online 3 gün önce

  • morfin59
    Arkadaslar Potionlarin Üst üste Düsürme Nasil??

    Sphere Scripting 3 gün önce

  • Tymaron
    Sistem Güncellemeleri: Portal, Sunucu Listesi ve...

    Duyurular 3 gün önce

  • Rowall
    UO:Nimloth Yeniden Doğuyor !

    Sunucular 3 gün önce

  • Lucretius
    AutoMod - AI Destekli Forum Moderasyon

    Duyurular 5 gün önce

  • Gececi
    Üyeliği 18 yıl ve üstünde olanlar.

    Ultima Online 2 hafta önce

  • Floody
    Üyeliği 15 yıl ve üzerinde olanlar.

    Ultima Online 3 hafta önce

  • Çağdaş İLHAN
    Viox/phobos Sphere Script Pack Alınacaktır

    Sphere Scripting 4 hafta önce

  • Venus
    World of UO'da Geçmişe Yolculuk Başladı

    Sunucular 1 ay önce

  • HaldiUo
    HaldiUO (Pc-Mobile)

    Sunucular 1 ay önce

  • TheFXon
    CS 1.6 P0ndenush Config

    CS 1.6 1 ay önce

  • TheNorthShield
    The North Shield ( TNS ) - Golden Age 2017

    Sunucular 2 ay önce

  • System_Error
    Sphere X Kurulum İş İlanı

    Sphere Scripting 2 ay önce

  • Esgaroth UO
    Esgaroth UO

    Sunucular 3 ay önce

  • sarhos7573
    Scripting / script

    Ultima Online 4 ay önce

  • Skill seçimlerinizi planlamak artık çok daha kolay

    Ultima Online Karakter Yapılandırma Aracı Bölümü Açıldı!

    2024-10-31 22:47

  • Ultima Online topluluğu, ClassicUO'nun sadece web client olarak kullanılabileceğinin açıklanmasının ardından tepkili.

    Resmi UO, Oyuncuları İkiye Böldü: Web Client Yeterli mi?

    2024-10-14 17:45

  • Ultima Online, ClassicUO ile resmi işbirliği yapıyor! Performans iyileştirmeleri, geniş oyun penceresi ve daha fazlası geliyor.

    Ultima Online, ClassicUO ile Resmi İşbirliğine Gidiyor

    2024-09-26 14:21

  • Centred#

    2024-07-08 22:50

  • CentrED+ 7.9

    2024-07-08 22:34

  • Distance(uzaklık) Sorgusu Hakkında

    2024-06-19 22:05

  • UoFiddler

    2024-06-01 02:19

  • UoFiddler ile Map Kopyalama

    2024-05-31 21:17

Menü
  • ANASAYFA
  • FORUM
  • DOKÜMAN
  • İNDİR
  • İLETİŞİM
  • Bağlantılar
  • CS 1.6 indir
  • CS 1.6 Türkçe
  • CS 1.6 Bot
  • CS 1.6 CFG
  • CS 1.6 Rate Ayarları
  • UO Server
  • Ghost Mouse indir
  • FPS Nedir?
  • Ultima Online PVP Server
  • Makroman
  • UO Karakter Yapılandırma
    © 2004 - 2025 Ultima-Strike. Her hakkı saklıdır.