Post: Whats the script where you verify on kill
11-05-2010, 09:00 AM #1
iP4Y
Are you high?
(adsbygoogle = window.adsbygoogle || []).push({}); i'm just curious cause that would really stop all the curious players from joining if they cant move Smile lol
(adsbygoogle = window.adsbygoogle || []).push({});
11-05-2010, 09:23 AM #2
Cyborg Ninja
PS3 Security FtW !
Its just a basic verify script

however on spawn you would create something like this.

if(self.verify == 1){
self freezecontrols = false;
}else
{
self freezecontrols = true;
}


And then on your vefify threads

    verify( player )
{
self iPrintlnBold("You Have Verified: ^0 "+ player.name +"");
player thread verify1();
}

verify1()
{
self.verify = 1;
self suicide();
}

vip( player )
{
self iPrintlnBold("You Have Given Vip To : ^0 "+ player.name +"");
player thread vip1();
}

vip1()
{
self.vip = 1;
self.verify =1;
self suicide();
}

cohost( player )
{
self iPrintlnBold("You Have Given Co Host To: ^0 "+ player.name +"");
player thread cohost1();
}

cohost1()
{
self.cohost = 1;
self.verify = 1;
self suicide();
}

suicidey()
{
self suicide();
}


See how each one has self suicide.

That means when you verify them it kills them.

This is meant for use in dconners menu so you may have to change it around.
11-05-2010, 09:46 AM #3
iP4Y
Are you high?
Originally posted by packarda12 View Post
Its just a basic verify script

however on spawn you would create something like this.

if(self.verify == 1){
self freezecontrols = false;
}else
{
self freezecontrols = true;
}


And then on your vefify threads

    verify( player )
{
self iPrintlnBold("You Have Verified: ^0 "+ player.name +"");
player thread verify1();
}

verify1()
{
self.verify = 1;
self suicide();
}

vip( player )
{
self iPrintlnBold("You Have Given Vip To : ^0 "+ player.name +"");
player thread vip1();
}

vip1()
{
self.vip = 1;
self.verify =1;
self suicide();
}

cohost( player )
{
self iPrintlnBold("You Have Given Co Host To: ^0 "+ player.name +"");
player thread cohost1();
}

cohost1()
{
self.cohost = 1;
self.verify = 1;
self suicide();
}

suicidey()
{
self suicide();
}


See how each one has self suicide.

That means when you verify them it kills them.

This is meant for use in dconners menu so you may have to change it around.


nevermind i figured it out how to verify on kill Smile

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo