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

Pages: 1 [2] 3 4
16
UltraMegaServer / Re: LC:MP 0.3z UltraMegaServer now up!
« on: April 13, 2008, 07:42:57 pm »
LC Server was server moved to this ip: 66.79.167.26:5198
a couple weeks back, top post updated too -_-

17
Support / Re: private server
« on: April 06, 2008, 10:30:29 pm »
remove or rename the announce.exe before launching the server to avoid reporting its ip to the browser.  if you want the ip removed permanently from the list (once added, simply removing the announce will not remove it), pm me here at the forum with the ip:port of the server.

18
Support / Re: Help!!!
« on: March 09, 2008, 02:13:27 am »
servers in the legacy tab are probably version 0.3x

19
mIRC/pawn Scripting / Re: 2 questions =P
« on: March 08, 2008, 05:11:36 am »
add them in this section:

;--- handle in-game [chat] commands
on *:SIGNAL:vcmp.event.gamecmd {
  var %id = $vcmp.nameid($left($1,-1))
  ;--- something like this
    if ($2 == !command) {
      if ($vcmp.loggedin(%id) < 5) vcmp.adminmsg %id You must be Admin Level 5 or higher to attempt this command.
      else {
        ;--- your command executes here here
        vcmp.adminchat ** blah command
      }
    }
}

20
mIRC/pawn Scripting / Re: Spawning Text
« on: March 02, 2008, 03:03:43 am »

21
mIRC/pawn Scripting / Re: TEAM COLOUR NEEDED
« on: March 01, 2008, 02:54:36 am »

22
mIRC/pawn Scripting / Re: interior id of ken's office?
« on: January 04, 2008, 11:36:41 pm »
some are different in vc:mp

Code: [Select]
0 = outside or a place thats not in the list
0 = hotel
2 = mansion
3 = bank
4 = mall
0 = stripclub
0 = lawyers
0 = cafe robina
8 = concert
9 = studio
10 = shooting range
11 = apartment
0 = bikerbar
0 = policeHQ
12 = auntie poulet's house
14 = stadium1
15 = stadium2
16 = stadium3
17 = Malibu club
0 = Print Works

somethin like that ._.

23
mIRC/pawn Scripting / Re: interior id of ken's office?
« on: January 04, 2008, 04:23:12 am »
in vc:mp its 0  8)

24
UltraMegaServer / Re: LC:MP 0.3z UltraMegaServer now up!
« on: December 15, 2007, 11:06:13 pm »
when you turn on lcmp ultramegaserver, you turn off Vcmp ultramegaserver.

is this needed?

not sure what u mean this is about a LC server temporarily becoming VC for some mode tests.

25
UltraMegaServer / Re: LC:MP 0.3z UltraMegaServer now up!
« on: December 15, 2007, 02:55:11 pm »
This server will become a VC server off and on for awhile to help with some mode development.  Once its all done, it will go back to full time LC.  Feel free to ask for LC back here if you miss it.

26
UltraMegaServer / New Public Echo for RPGDM v1
« on: December 02, 2007, 03:06:07 am »
#UltraMegaServer on irc.gtanet.com

27
Support / Re: F4 key wont work
« on: November 30, 2007, 09:35:11 pm »
good luck!  :)

28
mIRC/pawn Scripting / Location Script for LC
« on: November 28, 2007, 07:49:40 am »
i haven't seen a location script for lc around, so i decided to have a go at making one and describe the process.  the one i made uses just basic zones, more could be defined later.

to create and save the hash table needed:
1) copy the data/info.zon file from your gtalc or lc-mp installation into your mirc dir
2) copy this alias into your mirc:
Code: [Select]
alias convertlocationsfrominfozontohash {
  var %infozonfile = info.zon, %i = 1, %c = 0
  if ($hget(infozontemp)) !hfree -s infozontemp
  !hmake -s infozontemp 500
  while (%i < $lines(%infozonfile)) {
    tokenize 32 $read(%infozonfile,%i)
    if ($7) {
      !inc %c
      !hadd infozontemp %c $+($3,$7,$6,$7,$6,$4,$3,$left($4,-1))
      !hadd infozontemp %c $+ . $left($1,-1)
    }
    !inc %i
  }
  !hadd infozontemp max_loc %c
  !hsave infozontemp lcmp.area.hash
  !hfree -s infozontemp
}
3) in your mirc, trigger the alias by typing: /convertlocationsfrominfozontohash

this creates a saved file called lcmp.area.hash which can be used with a location script like this:

create and load the hash table from the saved file when the script starts
Code: [Select]
!hmake -s area 500
if ($exists(lcmp.area.hash)) !hload area lcmp.area.hash

alias for getting a location name from x y coordinates e.g. $lcmp.area(%x,%y)
Code: [Select]
alias lcmp.area {   
  if (($1) && ($2)) {
    var %a = 1
    while (%a <= $hget(area,max_loc)) {
      var %t = $hget(area,%a)
      if ((%t) && ($inpoly($1,$2, [ %t ] ))) !return $hget(area,%a $+ .)
      !inc %a
    }
  }
  !return Liberty City
}

at first, the names may not be worded the way you want, but thats easy enough to change...

all of this will be included (plus heaps more) with my upcoming vcmp/lcmp mirc echo bot release ^^ but this is for those who wonder how it was done or dont want to wait

29
Support / Re: F4 key wont work
« on: November 26, 2007, 05:22:52 pm »
:(

i've never heard of this before... sorry to see it.  its pretty hard to say, does the f5 menu work?  do you see chat in the top left?  have you tried a different keyboard?

30
Tutorials / Re: [VIDEO] VC-MP installation tutorial
« on: November 26, 2007, 05:19:17 pm »
excellent work <3

Pages: 1 [2] 3 4