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.


Topics - bakasan

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

2
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

3
Tutorials / LC:MP Tutorial Video
« on: November 18, 2007, 04:29:19 am »
LC:MP 0.3z Installation Tutorial by [CP]Don_Corleone a.k.a. AdTec_224:
full res version:
http://g0thost.com/~adtec/LCMPTutorial.zip
mirror:
http://knight2007.kilu.de/LCMPTutorial.zip

lo res version:
http://www.youtube.com/watch?v=h4ZutN56jAA





for more info see:
http://forum.vicecitymultiplayer.com/index.php?topic=251.0

4
UltraMegaServer / LC:MP 0.3z UltraMegaServer now up!
« on: October 26, 2007, 01:45:24 am »
HostName: UltraMegaServer LC-MP 0.3z [x-serverz.com]
Address:  66.79.167.26:5198



basic lc config, mIRC mode coming soon...

see you there! ^^

5
UltraMegaServer / New RPG Mode
« on: August 14, 2007, 08:38:02 am »
UltraMegaServer will be hosting my new RPGDM script soon!

thanks to Falcon, Tommis, and x-serverz.com



More about this soon.....   8)

Pages: [1]