Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Gito Baloch

#106
Quote from: =RK=MarineForce on May 16, 2020, 01:35 AMelse if (cmd== "myuid")
{
MessagePlayer("[#ffffff]>> " + plr.Name + "[#00d9ff]'s UID: [#ffffff]" + plr.UID + ".",player);
}
bruh this will not work :D because of "plr.UID"
#107
Good luck in future my bro. ;)
#108
carnivore has been kicked from clan.
PoloT has failed his trial.
roby and pharoah left the clan
AzreL Joined the clan as Trainee.
#109
Clans and Families / Re: [Cpt] Captains
Apr 13, 2020, 04:51 PM
Herobrine Joined RK
Kindly update list.
#110
CLAN LIST
Ghiless
Retro
Robby13
Heizu
Viktopus
Roadkiller
ReVenger
RockeT
Gito
CrimeBuster
SenSei
Inferno
Kakarotto
omar...
Carnivore
MOhiB
Miniclip
PoloT
WWMUNSB
Pharoah
Major. 8)
#111
Quote from: umar4911 on Apr 12, 2020, 04:11 PM
Quote from: Gitobaloch on Apr 12, 2020, 01:01 PMlocal admin = GetPlayer(stats[player.ID].Level < 3)
MessagePlayer("Player : "+player.Name+" has reported "+plr.Name+" for : "+reason+"", admin);

hey i did this still didn't worked.
untested
local admin;
for( local i = 0; i <= GetMaxPlayers(); i++ )
{
admin = FindPlayer( i );
if ( ( admin) && ( stats[ admin.ID ].Level >= 5 ) )
{
MessagePlayer("Player : "+player.Name+" has reported "+plr.Name+" for : "+reason+"", admin);
}
It was untested, but it worked. <3 thanks umar great personality. solved.
#112
local admin = GetPlayer(stats[player.ID].Level < 3)
MessagePlayer("Player : "+player.Name+" has reported "+plr.Name+" for : "+reason+"", admin);

hey i did this still didn't worked.
#113
Hy Scripters.

I want to know that..

this msg Message( "[#a20100]Admin "+player.Name+" set " + plr.Name + "  " + GetWeaponName( GetWeaponID( wep ) ) +". Ammo: " + ammo + ".");
shows to admins only not to players how i do that?
 :-\
#114
Snippet Showroom / Re: Three Arena's.
Apr 10, 2020, 05:00 PM
Quote from: EnForcer on Apr 10, 2020, 11:15 AMYea You cant fix just because u also copied this from somewhere

else if (cmd == "arena")
   {
   if (player.IsSpawned == false) MessagePlayer("[#ffff00]You must spawn to use this command!",player);
   else {
   if (!text) MessagePlayer("[#ffff00]Required /arena [[#ffffff]m4,shotgun,stubby[#ffff00]]",player);
   {
   if (text =="m4")
   {
  if ( shotgun == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
  else if ( m4 == true ) MessagePlayer("[#ff0000]You are Already in m4 arena type /leave to exit",player);
  else if ( stubby == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
  else {
MessagePlayer("[#ffcffc]Teleporting wait 3 seconds",player);
NewTimer("m4", 3000, 1 ,player.ID);
   }
   }
      if (text =="stubby")
        if ( shotgun == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
else if ( stubby == true ) MessagePlayer("[#ff0000]You are already in Stubby arena type /leave to exit",player);
  else if ( m4 == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
  else {
MessagePlayer("[#ffcffc]Teleporting wait 3 seconds",player);
NewTimer("stubby", 3000, 1 ,player.ID);
            }
   }
                        if (text =="shotgun")
        if ( m4 == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
  else if ( stubby == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
    else if ( shotgun == true ) MessagePlayer("[#ff0000]You are already in shotgun arena type /leave to exit",player);
  else {
  MessagePlayer("[#ffcffc]Teleporting wait 3 seconds",player);
NewTimer("shotgun", 3000, 1 ,player.ID);
 }
 }


bruh i myself write this command last night lol any evidence i copied it? wtf idiot.
#115
Snippet Showroom / Three Arena's.
Apr 10, 2020, 09:31 AM
class PlayerClass
{
 m4 = false;
 shotgun = false;
 stubby = false;
}

FUNCTIONS
function stubby(player)
{
local player = FindPlayer(player);
stubby = true;
m4 = false;
shotgun = false;
player.Disarm();
player.SetWeapon(21,10000);
player.Pos = Vector(-1623.99, -498.612, 50.1828);
MessagePlayer("[#ffffff]"+player.Name+"[#ffcfcc]Has teleported to stubby arena.",player);
}
function shotgun(player)
{
local player = FindPlayer(player);
shotgun = true;
m4 = false;
stubby = false;
player.Disarm();
player.SetWeapon(19,10000);
player.Pos = Vector(-1623.99, -498.612, 50.1828);
MessagePlayer("[#ffffff]"+player.Name+"[#ffcfcc]Has teleported to shotgun arena.",player);
}
function m4(player)
{
local player = FindPlayer(player);
m4 = true;
shotgun = false;
stubby = false;
player.Disarm();
player.SetWeapon(26,10000);
player.Pos = Vector(-1623.99, -498.612, 50.1828);
MessagePlayer("[#ffffff]"+player.Name+"[#ffcfcc]Has teleported to m4 arena.",player);
}
function arena(player)
{
local player = FindPlayer(player);
if ( m4 == true )
{
MessagePlayer("[#ffcccc]You spawned at m4 arena",player);
player.Pos = Vector(-1623.99, -498.612, 50.1828);
player.Disarm();
player.SetWeapon(26,10000);
}
else if ( stubby == true )
{
MessagePlayer("[#ffcccc]You spawned at stubby arena",player);
player.Pos = Vector(-1623.99, -498.612, 50.1828);
player.Disarm();
player.SetWeapon(21,10000);
}
else if ( shotgun == true )
{
MessagePlayer("[#ffcccc]You spawned at shotgun arena",player);
player.Pos = Vector(-1623.99, -498.612, 50.1828);
player.Disarm();
player.SetWeapon(19,10000);
}
}

onPlayerSpawn
NewTimer("arena",500 , 1, player.ID)
onPlayerCommand
else if (cmd == "arena")
{
if (player.IsSpawned == false) MessagePlayer("[#ffff00]You must spawn to use this command!",player);
else {
if (!text) MessagePlayer("[#ffff00]Required /arena [[#ffffff]m4,shotgun,stubby[#ffff00]]",player);
{
if (text =="m4")
{
if ( shotgun == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
else if ( stubby == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
else {
MessagePlayer("[#ffcffc]Teleporting wait 3 seconds",player);
NewTimer("m4", 3000, 1 ,player.ID);
}
}
if (text =="stubby")
if ( shotgun == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
else if ( m4 == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
else {
MessagePlayer("[#ffcffc]Teleporting wait 3 seconds",player);
NewTimer("stubby", 3000, 1 ,player.ID);
            }
}
                        if (text =="shotgun")
if ( m4 == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
else if ( stubby == true ) MessagePlayer("[#ff0000]You are in arena type /leave to exit",player);
else {
MessagePlayer("[#ffcffc]Teleporting wait 3 seconds",player);
NewTimer("shotgun", 3000, 1 ,player.ID);
 }
 }
}
else if (cmd =="leave")
{
player.World =1;
m4 = false;
stubby = false;
shotgun = false;
MessagePlayer("[#ff0000]You left the arena.",player);
}

IF YOU FIND ANY BUG DON"T TELL ME IM BEGINNER I CAN"T FIX XD
#116
Solved.
#117
im getting error bro! packs doesn't exist
#118
Hello Scripters!
I've make Pack
else if (cmd =="pack1")
  {
  MessagePlayer("[#ff0047]You took [#ffffff]PACK 1!",player);
  player.Disarm();
  player.SetWeapon(21,10000);
  player.SetWeapon(26,10000);
  player.SetWeapon(24,10000);
  player.SetWeapon(17,10000);
  }

when i type /pack1 in server i got weapons, but when i die and spawn i dont get that pack again? how do i do this.. Please help im begginer in scripting.
#119
Off-Topic General / Re: No Please!
Apr 04, 2020, 07:36 AM
idk remove this topic
#120
Off-Topic General / Re: No Please!
Apr 01, 2020, 02:46 PM
idk remove this topic