login
May 02, 2024, 12:05:13 am

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.


Messages - Sammael

Pages: 1 2 [3] 4
31
General Chat / Re: Gh0$t
« on: May 01, 2013, 03:36:40 pm »
But, if it's moved to Off-Topic...it'll be ON topic. :< And that's no fun.

32
PC's...cheap? Yeah...when you end up with ~ $50 after bills and shit...a $500 shit PC isn't cheap. This one that just exploded...cost $90 total. $40 for the PC with original equipment...and $50 for the additional 1GB RAM.

Anyways, we're looking into RAC options. So...yeah...may be back next week, may be not. Depends on if random shit doesn't pop up.

33
Events / Re: What meme is similar to the person above you?
« on: May 01, 2013, 03:22:53 am »

34
As the subject states. I'll be inactive for an undetermined amount of time. My PC decided to pop and spark randomly today. So, until I can save up enough to get a new one or can fix the issue with my current one, I will be inactive for some time. Will still be working on VCAW, albeit, somethings will be untested until I am able to find a way to do so.

35
Denied Applications / Re: Application - SloW
« on: April 30, 2013, 01:40:30 am »
Skills ain't important

^ I'm proof of that. Anyways, I made a point after Nelson13. came to me and asked for my vote the first time that I'd insta-no anyone who was impatient enough to get in to the point where they'd asked for people to vote for them.

So...sorry...but it's a NO this time around for me.

36
News and Announcements / Re: Vice City At War
« on: April 27, 2013, 07:38:48 am »
Never heard of it until you mentioned it MaD.

I chose Vice City At War because Vice City All Out War seemed too cumbersome. Trust me, I have no connection to VCDW whatsoever.

Moving on. Things are progressing quite nicely. I've got prop commands and all that written up, but when I try adding a Timer to onServerStartup or w/e it is to load all the pickups from a DB file I have(With position in floats ofc.) it prevents me from even connecting to my server.

Once I get this added, that'll probably be the last I do until if and when 0.4 gets released.

37
News and Announcements / Vice City At War [SERVER HAS NEW HOSTER]
« on: April 23, 2013, 09:02:29 pm »
Well, in short. Vice City At War, or VCAW as some may find easier to call it is my server. So far, it's just FBS with add-ons. Cars, gotoloc, stats, sprees, and some other goodies. Not gonna spoil it all for everyone. Also, !goto and /c nogoto are not working. As of now, only 4 cars are owned. 3 by me and one by a friend of mine whom some of you may have known as Tsubasa. The car prices aren't changed from OuT_LaWz's DB file for his FBS car system. #VCAW is the echo and am also looking for help in both admin ship(so far, only accessable from IRC for some odd reason) and in scripting help.

I know that this announcement is lacking. I'm no public speaker and I'm not great at making forum posts look spectacular and attractive, but, hey, I tried.

Anyways, hope to see some more of you there. :P

EDIT: The server is a DM server. No teams, probably should take off the minigun thing, though...otherwise all weapons allowed. Glitching is allowed until otherwise stated. Forums for the server are at http://vcaw.fullboards.com but have not been fully created. So far, for non-admin users...only Introductions are possible.

38
Hate to be a bother again, being somewhat new to SQ... but the echo bot stuff WiLsOn handed me works...just interferes with the ! and /c prefixed commands in the server.

I pin-pointed it to this because it was the last thing added. I had added a /c reload command and a !fix command prior to adding the lines to echo from the server to the echo channel. Figured I'd ask here, try some fixes while waiting for an answer, and if I find an answer before an answer is received, compare any given and chose the best of the possibilities.

Since nobody has answered, I assume they want/need the code to look at. So here it is.

Code: [Select]
function onPlayerChat( player, text )
{
  if ( text )
  {
  if ( text.slice( 0, 1 ) == "!" )
  {
local i = NumTok( text, " " );

if ( i == 1 ) onPlayerCmd( player, GetTok( text.slice( 1 ).tolower(), " ", 1 ), null );
  else onPlayerCmd( player, GetTok( text.slice( 1 ), " ", 1 ).tolower(), GetTok( text.slice( 1 ), " ", 2, i ) );
  }
  }
 EchoMessage("["+player.ID+"] "+player.Name+": "+text);
}

function onPlayerJoin( player )
{
EchoMessage ( ICOL_LGREY + "[" + player.ID + "] " + ICOL_BROWN + player.Name + " has joined the server." );
}
function onPlayerPart( player, reasonid )
{
local reason = "Uknown";
switch ( reasonid )
{
case PARTREASON_DISCONNECTED:
reason = "Disconnected";
break;
case PARTREASON_TIMEOUT:
reason = "Timeout";
break;
case PARTREASON_KICKED:
reason = "Kicked";
break;
case PARTREASON_BANNED:
reason = "Banned";
break;
}
EchoMessage( ICOL_LGREY + "[" + player.ID + "] " + ICOL_BROWN + player.Name + " has left the server. " + ICOL_RED + "[" + reason + "]" );
}

The onPlayerChat is WiLsOn's. The onPlayerJoin is mine. And onPlayerPart is something I modified from LUIrc Echo. The last two parts work fine in conjunction with the ! and /c commands. But just showing all I have added to the Original FBS-Echo.nut so far to see if that could shed some light on why the echoing of player chat to the channel messes with the commands.

39
Scripting Support / Re: Need help with a few things
« on: April 14, 2013, 07:51:25 pm »
Thanks!

It's actually the FBS_Echo from Dany's ADM on the unofficial VCMP forums. I tried asking him the same thing. He told me something about onPlayerDeath...but he forgot the funtion prefix thing for it...Welp, back to work. I'll be sure to drop back by here if I hit any snags. Seems I get more help here than at the unofficial forums.

Well, if anyone wants to check it out...it's on the Internet tab in the browser. Cleverly titled Sammael's Test Server. Probably won't have a vehicle owning system for a long while. So far it's only a DM server. No pass is needed. All stuff is pretty much the same, except a few added commands on the IRC side and the echo fixed thanks to Willy. :)

Btw, for those who have the hacks and stuff...but only for educational purposes...I'm allowing hacking during testing phases. So, have at it. If you get auto-banned, let me know and I'll unban you.

40
Scripting Support / Re: Need help with a few things
« on: April 14, 2013, 07:10:35 pm »
Nononono. The !say and .text stuff works fine. It's the chat from the server that isn't echo'd to the channel.

41
Scripting Support / Re: Need help with a few things
« on: April 14, 2013, 06:40:36 pm »
It joins, just doesn't echo the chat stuff to the channel.

42
Accepted Applications / Re: Application - Yuri.Shakuve
« on: April 14, 2013, 04:14:28 am »
I know you know me, Yuri. =_O

Well, down to brass tacks...Trainee. He's obviously a decent player with his favorite weps. But, like me, he needs help to broaden his arsenal. And I really can't think of any place better to help him learn than VU. VU prides itself in being known as the best clan, if I'm not mistaken. What better way to show this pride than to mold a budding player to be better than they thought they even imagined they could be?

43
Accepted Applications / Re: Application - Nelson/Hardwell
« on: April 14, 2013, 04:10:27 am »
Since he didn't come find me and beg me to come vote on this...I'll say Trainee. I mean, c'mon. He's obviously come a long way since his last app, he should get a chance.

44
Scripting Support / Need help with a few things
« on: April 14, 2013, 03:48:57 am »
I was trying to use FBS to learn squirrel and code my own server, what stopped me here is the echo bot fails to relay stuff FROM the server. I've even asked hellboy_vkk what the bot needs to relay stuff from the server. He gave me a couple of lines that were already in the FBS-Echo.nut file.

Next, I tried VBS. It runs...but the db files can't be written to or read from. I have sqlite3 installed. Dunno what to do to fix that.

If anyone could provide a solution to either or both of the issues, that would be great.

[EDIT]: Put the Linux modules in a Modules subfolder in the server Directory. Still looking for an echo-bot fix for FBS. VBS is nice...but missing many basic commands I don't feel like coding myself. :lazy:

45
General Chat / Re: Member List
« on: February 22, 2013, 08:55:05 am »
Btw, I'm Gir...not Grindbang. :P

Pages: 1 2 [3] 4