[Скрипт] Приветствие игрока с изображением!

Тема в разделе "Модификации серверов SE5", создана пользователем sven, 16 фев 2013.

  1. sven

    sven New Member

    31
    0
    0
    Приветствие игрока зашедшего на сервер с изображением!
    В onPlayerSpawned() добавить:
    Код:
    self thread iconNotify("Cardtitle_bloodsplat", "^3Привет ^7"+self.name+"^3!", "^ТЕКСТ");
    Где "Cardtitle_bloodsplat" изображение! вот некоторые из и


    Приветствие игрока зашедшего на сервер с изображением!
    В onPlayerSpawned() добавить:
    Код:
    self thread iconNotify("Cardtitle_bloodsplat", "^3Привет ^7"+self.name+"^3!", "^ТЕКСТ");
    Где "Cardtitle_bloodsplat" изображение! вот некоторые из иконок:
    cardtitle_sunbather // Голая баба
    cardtitle_horsemen_war // Смерть с косой
    Cardtitle_dragon_kick // Перк ниндзя
    Cardtitle_assault_master // Два черепа
    Cardtitle_hazard_3 // Полоска
    Cardtitle_bullet // Пуля
    Cardtitle_chicken // Курица
    Cardtitle_drifting // Колесо машины
    cardtitle_eyeball_3 // Чертенок
    cardtitle_weed_3 // Конопля
    cardtitle_zombie_3 // Зомби
    cardtitle_bloodsplat // Кровь

    А это в любом месте в _rank
    Код:
    iconNotify(sIcon, sText1, sText2)
    {
    	self endon("disconnect");
    
    	notifyIcon = self createIcon(sIcon, 215, 38); notifyIcon setPoint("TOP", "MIDDLE", 0, -220); notifyIcon.foreground = false; notifyIcon.hideWhenInMenu = true;
    	notifyIcon transitionZoomIn(0.3);
    	notifyIcon transitionFadeIn(0.2);
    
    	notifyText1 = self createFontString("bigfixed", 0.7); notifyText1 setPoint("TOP", "MIDDLE", 0, -212); notifyText1 setText(sText1); notifyText1.foreground = true; notifyText1.HideWhenInMenu = true;
    	notifyText1 transitionZoomIn(0.3);
    	notifyText1 transitionFadeIn(0.2);
    
    	notifyText2 = self createFontString("default", 1.2); notifyText2 setPoint("TOP", "MIDDLE", 0, -198); notifyText2 setText(sText2); notifyText2.foreground = true; notifyText2.HideWhenInMenu = true;
    	notifyText2 transitionZoomIn(0.3);
    	notifyText2 transitionFadeIn(0.2);
    
    	wait 8;
    
    	notifyIcon transitionFadeOut(0.2);
    	notifyIcon transitionZoomOut(0.3);
    
    	notifyText1 transitionFadeOut(0.2);
    	notifyText1 transitionZoomOut(0.3);
    
    	notifyText2 transitionFadeOut(0.2);
    	notifyText2 transitionZoomOut(0.3);
    
    	wait 8;
    
    	notifyIcon destroy();
    	notifyText1 destroy();
    	notifyText2 destroy();
    }
    
    
     
  2. inncom

    inncom New Member

    5
    0
    0
    Подскажите где искать onPlayerSpawned() не совсем понятно ...

    Подскажите где искать onPlayerSpawned() не совсем понятно ...
     
  3. BattleFrame

    BattleFrame BattleFrame GC Staff Команда форума Sherkan Player

    238
    6
    18
    в _rank.gsc

    в _rank.gsc
     
  4. Dimaha

    Dimaha Sherkan Player Sherkan Player

    13
    0
    1
    чТО ТО НЕ ПОЛУЧАЕТСЯ КАК ПРОПИСЫВАТЬ ,ТАК :

    for(;;)
    {
    self waittill( "joined_spectators" );
    self thread removeRankHUD();
    }
    }


    onPlayerSpawned(self thread iconNotify("Cardtitle_bloodsplat", "^3Привет ^7"+self.name+"^3!", "^ИГРОК");
    {
    self end


    чТО ТО НЕ ПОЛУЧАЕТСЯ КАК ПРОПИСЫВАТЬ ,ТАК :

    for(;;)
    {
    self waittill( "joined_spectators" );
    self thread removeRankHUD();
    }
    }


    onPlayerSpawned(self thread iconNotify("Cardtitle_bloodsplat", "^3Привет ^7"+self.name+"^3!", "^ИГРОК");
    {
    self endon("disconnect");

    for(;;)
    {
     
  5. aiW|NoRecoil

    aiW|NoRecoil Guest

    0
    0
    0
     
  6. ANIMka

    ANIMka New Member

    7
    0
    0
  7. Low_BoB

    Low_BoB New Member

    23
    0
    0
    А картинку в init() прописывать то надо ещё))


    А картинку в init() прописывать то надо ещё))