Rise Development
  • Rise Development
  • Script
    • Pawnshop
    • Blip Menu
    • Pizza Courier
    • Taco Courier
    • Character Kill
    • ID Give Car System
    • Sellable Stashes
    • Blip Creator
    • For Rent Car
    • Billing System
    • Admin Report
    • BlackMarketV1
    • Fish System
    • Whitelisted System
  • Development Services
    • Development Services (Monthly)
Powered by GitBook
On this page
  1. Script

Blip Creator

TR Oyun İçi Redzone ve Blip Ayarlama Blip Menüsü

  • Blip Boyutu

  • Blip Şekli

  • Blip Adı

Redzone Bölümü

  • Redzone Adı Ayarlama

  • Redzone Şeffaflık Ayarlama

  • Redzone Giriş / Çıkış Mesajı Ayarlama

  • Redzone Renk Ayarlama (8 Seçenek)

Liste Sistemi

  • Ayarlanmış Blip veya Redzone’u Liste Üzerinden Düzenleme veya Silme

EN In-Game Redzone and Blip Setup Blip Menu

  • Blip Size

  • Blip Shape

  • Blip Name

Redzone Section

  • Set Redzone Name

  • Set Redzone Transparency

  • Set Redzone Entry/Exit Messages

  • Set Redzone Color (8 Options)

List System

  • Edit or Delete Configured Blips or Redzones via List

Config = {}

Config.PermissionDiscordIDs = {
    "discord:1239306741150384208", -- beqeend
    "discord:722412469733294150",  -- ChenTR
    "discord:1160174684957061161"  -- Ruvia Suruyeli Olan
}

Config.Locale = {
    ["no_permission"] = "Bu komutu kullanmak için yetkiniz yok!",
    ["blip_created"] = "Blip başarıyla oluşturuldu!",
    ["redzone_created"] = "Redzone başarıyla oluşturuldu!",
    ["blip_deleted"] = "Blip başarıyla silindi!",
    ["none_discord"] = "Discord bağlantınız bulunamadı!",
    ["none_blip_yok"] = "Blip bulunamadı!",
    ["güncellendi"] = 'Blip\'i Güncelledin',
} 

Config.INFO = {
    Commands = 'blipcreator',
    CommandsDecs = 'Blip oluşturma menüsünü aç',
}
CREATE TABLE IF NOT EXISTS `rise_blip` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  `sprite` int(11) DEFAULT NULL,
  `color` int(11) DEFAULT NULL,
  `coords` varchar(255) DEFAULT NULL,
  `radius` float DEFAULT NULL,
  `enter_message` varchar(255) DEFAULT NULL,
  `creator` varchar(50) DEFAULT NULL,
  `scale` float DEFAULT 0.8,
  `exit_message` varchar(255) DEFAULT NULL,
  `alpha` int(11) DEFAULT 128,
  PRIMARY KEY (`id`)
);
PreviousSellable StashesNextFor Rent Car

Last updated 28 days ago