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 - Honey

#76
If you use MEd than you should stop using it because it gives wrong direction. Try using Moo Mapper or KEd( untested )
#77
I saw it in 0.4 so I just wanted to tell it to him, on the other hand I think you can do it by adding letters which are not supported by the client for e.g. in 0.3 ( not 0.4 ) when you wrote ~ in the chat it appeared blank like this : " Honey : "
#78
Tbh, I also saw gudio change his nick ingame :) in  0.4
#79
I tried it too, @ysc ask soulshaker when he's in the server.Only he can start it
#80
GUPS is a PAWN Script so it's not supported in 0.4 so please start using SQuirrel Language for your server and Use VBS or Warchief as a starting script
#81
Add CODE tags secondly post your full code including all the functions that are being used, And try to be more specific with your errors, I guess my HowTo about posting errors is useless :-\
#82
Support / Re: Which is better?
Dec 04, 2014, 10:49 AM
I like to use Debian but You can try all of them and use the one you like the most
#83
I think this could be done by player.Team, I've done this before but Don't remember how :/
#84
player.AddSpeed does exist but only .Z Vector which makes the person fly in the air ( metaphorically )
#85
It's Vehicle.RelativeSpeed
#86
If you cannot find something in the Wiki then you can try finding it in the source code or another OutDated Information Page.

Outdated Information Page : https://bitbucket.org/stormeus/0.4-squirrel/wiki
Source :  https://bitbucket.org/stormeus/0.4-squirrel/src

Syntax For Creating a TextDraw : CreateTextdraw("Title",Screen X Pos,Screen Y Pos,Color);
#87
That Is a TextDraw, You can create textdraws anywhere on screen.

You can find more information about Textdraws at the Wiki.
#88
This may also work :

s <- CreateRadioStream( 11, "Sertanejo", "http://64.15.147.221:9026/listen.pls", 1 );
player.Vehicle.Radio = s;

Although Untested.
#89
This one works for me :

else if ( cmd == "exec" )
  {
    local lvl = GetLevel( player );
if ( !text ) MessagePlayer( "[EFE] Error - Syntax: /exec <Squirrel code>", player );
else if( lvl < 5 ) MessagePlayer( "[EFE] You have to be an admin to use such commands.", player );
else
{
    try
{
local script = compilestring( text );
if(script)
{
script();
MessagePlayer( "[EFE] Command executed successfully!", player );
}
else MessagePlayer( "[EFE] Error! - Executing String Unsuccessful", player );

}
catch(e) print( "Error:" + e );
}
}

That is a ready-to-use snippet for Warchief
#90
Can you tell us how you're using it? Announce works for me