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
Pages: [1]
1  Scripting / Script Help / MySQL Module Help! on: June 18, 2013, 01:40:08 pm
Started a topic because i couldn't find help in here http://forum.liberty-unleashed.co.uk/index.php/topic,917.15.html


Quote
I can't get this to work i think have done everything right but i get an error saying MSVCR100D.dll is missing from your computer. I tried installing the .dll file (through it already exist, overwrited) but still the same. I tried Thijin's link now the Module functions aren't working. Same .dll error when trying Stromeus link. Waiting for help.
2  Liberty Unleashed / Support / Numbers? wtf on: May 06, 2013, 11:59:23 am


My friend is having this problem when he joins the server

1. First time running the game
2. Host is Linux.
3. running Default LU scripts.
3  Scripting / Script Help / Why doesn't this work? on: April 17, 2013, 12:44:05 pm
I added a GUI Bank system where player can withdraw or Deposit by entering amount. so once player clicks Deposit button

Code: [Select]
Deposit_Button.SetCallbackFunc( "DepositMoney" );
This script shows up.

Code: [Select]
function DepositMoney( )
{
    local amount = Amount_Box.Text;
    if( !amount || !IsNum( amount ) ) otherwL.Text = "Amount should be numeric*";
    else if( localPlayer.Cash < amount ) otherwL.Text = "You do not have the entered amount*";
    else
    {
        CallServerFunc( "RPG/File.nut", "DepositScript", localPlayer, amount );
        Disable_Bank_Window( );
        }
}

This line doesn't work
Code: [Select]
else if( localPlayer.Cash < amount ) otherwL.Text = "You do not have the entered amount*";
Also when i try to message/print  amount (Amount_Box.Text) my game crashes. but this line works fine.
Code: [Select]
if( !amount || !IsNum( amount ) ) otherwL.Text = "Amount should be numeric*";
Bug or my coding skills sucks?
4  Liberty Unleashed / Support / IRC Problem on: April 16, 2013, 09:47:04 am
Code: [Select]
[13:13] == ERROR: Closing link: ([email protected]) [No more connections allowed from your host via this connect class (local)]
[13:13] == Disconnected from server: Connection to IRC server lost.

This always happen, i am unable to connect. But trying after 1-2 hours later it works.
5  Scripting / Scripting Discussion / Finding letter or word from string? Possible? on: April 10, 2013, 07:00:02 am
I mean Finding a letter or word from a string. Is there a function already made in squirrel?

This is what i coded for making Invalid Kick.

Code: [Select]
InvalidNicks <- [ "@", "!", "#", "$", "%", "^", "&", "*", "(", ")", "-", "`", "~", ".", "-", "+"];
Code: [Select]
  local Nick = player.Name, i = 1, b = 0;
   foreach( char in InvalidNicks )
   {
        while(i < Nick.len()+1 )
{
            if ( Nick.slice( b, i ) == char )
{
   Message("[#FF00FF]Kicking:[ " + player.Name + " ] for:[ Invalid Nickname ]");
   KickPlayer( player );
   return 0;;
}
i++;
b++;
}
i = 1;
b = 0;
}
6  Off Topic / Spam / Two releases on: November 22, 2012, 05:16:41 pm
Assassin's creed III and Hitman Absolution. what do you say?

Got Assassin's creed III recently, it has very high detailed graphics, gameplay, story.. haven't played Hitman! please tell me if it is worth a buy..
7  Scripting / Scripting Discussion / Pinned Gamemode on: November 09, 2012, 04:19:33 pm
it would be great if one of the released gamemode were pinned so people who are new don't need to search the whole script releases to find a neat one.  :)
8  Scripting / Scripting Discussion / hmm? on: June 23, 2012, 12:03:48 pm
is there a Event to find if the player has extinguished the fire with water cannon or something? like function OnPlayerExtinguish(player,fire)

If there is please do tell me, if not consider this as next version suggestion :/

Thanks for reading. ;)
9  Liberty Unleashed / Bug Reports / Bugs and Suggestions on: April 26, 2012, 11:53:15 am
First of all sorry for not following the format i am just too lazy now back to the topic

Bug no1: I want you guys to disable /reconnect in the next lu update because it causes many bugs and client side scripts to not work sometimes.

1. Objects will disappear next time when a player /reconnects while standing near to it.
2. Gui functions won't work if a player /reconnects 2 times.
3. Stuck on class selection if /reconnects.
4. Many more bugs due to /reconnect..

Bug no2: Everytime i get in a rc vehicle it automaticaly jumps 20 feet high, also the driveby on rc kinda sucks caz it fires the bullets before pointing the gun outside.

Suggestions


1. The weapon damages on lu are pretty high and annoying especially M16 and AK47. it would be better if there was a function to set the weapon damage like weapon.SetDamager(damage);
2. Complete the damn wiki  ;)
3. I would love to see npc bots on lu.

Thanks for showing the patience to read this :)
                                                                                                                    -Rocky!
Pages: [1]
© Liberty Unleashed Team.