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 - AroliS^

#31
Ulrich accepted as Trainee
#32


Website: www.forum.lbr-gang.com
Country: International
Languages: Portuguese | EspaƱol | English
Tags: LBRt | LBRr | LBR

Members list



George [Founder]
Junior [Leader]
Lucas [Leader]
Matheus [Co-leader]
Andre
Anta Lord
Diego
HenriquE
Diogo
Jilson15
Joseph 
MatadoOr
Replicante
Robson
Rockz 



Fanta
Leandro
Sombra
Thomas
Iago



AroliS^ 
HeadsMan
Nelson
Mariana
Ulrich

Total: 23
Active: 15
Inactive: 8

[/center]
#33
Sorry for bumping* [LBR] CLAN UPDATES 2019
#34
Client Scripting / Re: Real Time
May 22, 2019, 01:54 AM
Updated it thank u :)
#35
Client Scripting / Real Time
May 20, 2019, 09:53 PM
it is working great!
   
function Script::ScriptProcess()
{     
local time = System.GetDate( System.GetTimestamp( ), 'r' );
::time[ "date" ].Text = time.hour +" : "+ time.min;
}

in somewhere in your clientside's script!
function labelcreator( pos, colour, resizable )
{
local ui = GUILabel( pos, colour, resizable );
return  ui;
}

::time <-
{
date = labelcreator( VectorScreen( sX * 0.671, sY * 0.115 ), Colour( 255, 255, 255 ), true )
}

::timer[ "date" ].FontSize = sX * 0.025;




pastebin - https://pastebin.com/YUZPZkxz
#36
dawn!

playerClass
mazerunner = false;
#37
Snippet Showroom / Re: Object System
May 18, 2019, 12:30 AM
:'v stop bumping and probably you did something wrong so you check it up again
#38
Support / Re: Connect server failed
Apr 25, 2019, 01:51 AM
English Forum!
#39
Servers / Re: [0.4] Brasil Real RPG/DM
Apr 15, 2019, 10:11 PM
Come on you guys, stop talking shit.. This is one of the greatest vcmp's servers, if you got banned is because you didn't follow the rules....
#41
Community Plugins / Re: Discord
Mar 08, 2019, 10:48 PM
a simple guide for making the token and it show how to create a bot to run this plugin - https://github.com/Chikachi/DiscordIntegration/wiki/How-to-get-a-token-and-channel-ID-for-Discord
#42
oh yeah, thank u for fixed it up..
#43
solved, thank u so much !!
#44
no work!  now either accounts are detected as members
#45
this is a simple function to find clan members that i made

function FindMemberClan( player )
{
local q = QuerySQL( clanstat, "SELECT * FROM ClanUsers WHERE Clans LIKE '"+GetTag( player.Name )+"'" );
if ( q )
{
if (  GetSQLColumnData( q, 1 ) == player.Name )
{
 _MessagePlayer( white+"[ "+pink+GetTag( player.Name )+white+" ]- MEMBER: "+purple+TruncateClan( player.Name )+"", white+"[ "+pink+GetTag( player.Name )+white+" ]- MIEMBRO: "+purple+TruncateClan( player.Name )+"", player );
}
 else
{
 _MessagePlayer("You are not "+GetTag( player.Name )+" member you will be jailed and then kicked.", "No eres miembro de el clan "+GetTag( player.Name )+", seras encarcelado y despues kickeado.", player)
}
}
  FreeSQLQuery( q )
}

but only the first player registered in clan's database is recognized as a member what is wrong with it? here some pictures...

this is the database the first player is recognized as member the second one as not clan member.


first account, recognized.



second account, not recognized.