How To Set Lift.I want to goto to the bank upper part when i enter in the lift nothing happens.hlp me.
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 MenuQuote from: S.L.C on Jun 26, 2015, 03:40 PMYou's just passing the wrong number of parameters to a function. The error even tells you that. But that's what happens when you know sh!t about scripting:IIIIIII Can And IIIIIIII Will.function stupid(a, b, c)
{
print(a + b + c);
}
stupid("a", "b"); // Wrong. Expects 3
stupid("a", "b", "c", "d"); // Wrong. Expects 3
stupid("a", "b", "c"); // Correct.
Quote from: Mashreq on Jun 26, 2015, 03:48 PMThe code where you get the error.The Erorr Does Not Show Line Of Erorr.
Quote from: Mashreq on Jun 26, 2015, 03:37 PMMind providing us some codes? and a screenshot which has not been cropped.LOL SLC I am Noob SO Need Help. Which Code I Can Give Here.i am new so i am noob
Quote from: Thijn on Jun 25, 2015, 04:26 PMLink removed.Thijn Can You See This?
1. Don't add any binaries to your releases. No database browser, plugins or server. This will reduce the possibilities for viruses and greatly reduces the size.
2. Your passwords are saved un-hashed. I wouldn't want to play on a server running this script, knowing the owner can easily read my password.
If people start using this script there will be servers everywhere saving passwords the wrong way. Let alone what will happen when people use the same password ingame as somewhere else and the database gets stolen.
Either edit your script or don't release it and never use it again.
Quote from: S.L.C on May 19, 2015, 01:42 AMThanksQuote from: [vρт]яιzωαη on May 19, 2015, 01:38 AM... WHERE IS ITS TUTORIALS
Everywhere.
Quote from: S.L.C on May 19, 2015, 01:29 AMSLC I DONT KNOW ABOUT ANYTHING JUST TELL ME HOW I CAN LEARN IT. WHERE IS ITS TUTORIALSQuote from: [vρт]яιzωαη on May 19, 2015, 01:21 AM...So I need to learn squirel
So what's keeping you? Programming is all the same
Quote from: aXXo on May 18, 2015, 04:54 PMWhy?Lol
Quote from: Honey on May 12, 2015, 01:34 PMSeriously, You recommend an Old, Pathetic gameplay over a new and more optimized game play just because the newer one has some "bags"?Honey I Am Also Agreed With Them But Not To Goto Back.
Quote from: Beztone on May 08, 2015, 10:32 AMWT? using SQLQuery and Hadd both in an cmd, can't guess which script he is using but i think he has an SQ script and he copy-paste that cmd from and FBS scriptNo It is MDM. Please Give Me Working Commands
else if ( cmd == "ban" )
{
local check = Required( player, cmd, Level );
if ( check )
{
if ( !text ) PrivMessage( "Error - Invalid Format. /c ban <player> <reason>", player );
else
{
if ( i < 2 ) PrivMessage( "Error - Invalid Format. /c ban <player> <reason>", player );
else
{
local plr = GetPlayer( GetTok( text, " ", 1 ) ), reason = GetTok( text, " ", 2, i );
if ( !plr ) PrivMessage( "Error - Invalid Nick/ID.", player );
else if ( plr.ID == player.ID ) PrivMessage( "Error - You can't /c ban yourself.", player );
else if ( PlayerLevel( plr ) >= Level ) PrivMessage( "Error - You can't ban admins with the same or higher level.", player );
else
{
QuerySQL( db, "ADD IN Bans LIST WHERE Name='" + players + "'" );
Message( "* Admin " + player + " banned:[ " + plr + " ] Reason:[ " + reason + " ]" );
HAdd( "FBSBanInfo", plr.IP, plr.Name + ", " + reason + ", (Admin: " + player + ")" );
BanPlayer( plr );
}
}
}
}