Vice City Multiplayer

Official Servers => XE | European Server (www.xe-servers.com) => XE Servers (Legacy) => Topic started by: Tommis on August 02, 2008, 06:13:20 pm

Title: Scripts Suggestions
Post by: Tommis on August 02, 2008, 06:13:20 pm
Hey,

Have suggestions for our scripts or server? Post them in here. Any suggestions would be greatly appreciated!

Regards,
Tommis
Title: Re: Suggestions
Post by: Mattz on August 02, 2008, 09:34:17 pm
How about making !buycar and !sellcar script?  ;)
Title: Re: Suggestions
Post by: TanaX01 on August 02, 2008, 10:54:10 pm
How about making !buycar and !sellcar script?  ;)

hey mattz nice suggestions plz tommis add buycar sellcar etc  ;)
Title: Re: Suggestions
Post by: Tommis on August 03, 2008, 02:35:23 am
Hey,

Alright, and what will happen when someone else gets into a car that they do not own? (Owned by someone else).

I am thinking that person will have to pay something, but hmm. I would like to hear what you would have to say.

:P

Regards,
Tommis
Title: Re: Suggestions
Post by: TanaX01 on August 03, 2008, 02:40:41 am
Commands Buycar Sellcar Car Cardive Etc 100% Work  ;)

Code: [Select]
  elseif ($2 == !car) || ($2 == !pmcar) {
    if ($vcmp.cmdcheck(!car,%id) == fail) !halt   
    elseif (%a == -1) vcmp.msg %id  Absent ID/Name
    elseif ($vcmp.vehicle(%a,id) == 0) vcmp.msg %id  $vcmp.name(%a) car is currently on foot!
    else vcmp.msg %id Vehicle - Name: $+($chr(91),$vcmp.carname($vcmp.vehicle(%a,id)),$chr(93)) ID: $+($chr(91),$vcmp.vehicle(%a,id),$chr(93)) Price: $+($chr(91),$vcmp.vehiclecost($vcmp.vehicle(%a,id)),$chr(93)) Owner: $+($chr(91),$vcmp.carowner($vcmp.vehicle(%a,id)),$chr(93))
  }
  elseif ($2 == !buycar) {
    if ($vcmp.cmdcheck(!buycar,%id) == fail) !halt
    elseif (Sunshine Autos !isin $vcmp.area(%b)) vcmp.msg %id  To Buy A Car Deves Be Sunshine In Cars!!
    elseif ($vcmp.vehicle(%a,id) == 0) vcmp.msg %id
    elseif ($vcmp.carowner($vcmp.vehicle(%a,id)) != Sunshine Autos) vcmp.msg %id This vehicle is owned by $vcmp.carowner($vcmp.vehicle(%a,id))
    elseif ($vcmp.vehiclecost($vcmp.vehicle(%a,id)) > $vcmp.cash(%id)) vcmp.msg %id You need atleast $ $+ $vcmp.vehiclecost($vcmp.vehicle(%a,id))
    else {
      vcmp.cash- %b $vcmp.vehiclecost($vcmp.vehicle(%a,id))
      !writeini -n vcmp.cars.ini OWNERS $vcmp.vehicle(%a,id) $vcmp.name(%id)
      vcmp.msg %id You have just bought $+($chr(91),$vcmp.carname($vcmp.vehicle(%a,id)),$chr(93)) ID: $+($chr(91),$vcmp.vehicle(%a,id),$chr(93)) Price: $+($chr(91),$vcmp.vehiclecost($vcmp.vehicle(%a,id)),$chr(93))
    }
  }
  elseif ($2 == !sellcar) {
    if ($vcmp.cmdcheck(!sellcar,%id) == fail) !halt
    elseif (Sunshine Autos !isin $vcmp.area(%b)) vcmp.msg %id To Sell A Must Be In Order To Sunshine Or Make One Admin The Leasehold Landlord
    elseif ($vcmp.vehicle(%a,id) == 0) vcmp.msg %id You Have No Car No!
    elseif ($vcmp.carowner($vcmp.vehicle(%a,id)) != %name) vcmp.msg %id You Can not Buy This Car Has Owner
    else {
      !writeini -n vcmp.cars.ini OWNERS $vcmp.vehicle(%a,id) Sunshine Autos
      vcmp.cash+ %b $calc($vcmp.vehiclecost($vcmp.vehicle(%a,id)) * 0.55)
      vcmp.msg %id You have sold your vehicle with price $ $+ $calc($vcmp.vehiclecost($vcmp.vehicle(%a,id)) * 0.55)
    }
  }
  elseif ($2 == !getcar) || ($2 == !pmgetcar) {
    if ($vcmp.cmdcheck(!getcar,%id) == fail) !halt
    elseif (!$3) vcmp.msg %id Error - Missing Information, $2 <car id>
    elseif ($3 !isnum) vcmp.msg %id Error - Invalid Vehicle ID, $2 <car id>
    elseif ($vcmp.carowner($3) != %name) vcmp.msg %id Your not the owner of this car!
    else {
      vcmp.setvehicleloc $3 $hget(vcmp,%id $+ .xyz)
      .timer -m 1 400 vcmp.setvehicle %id $3
    }
  }
  elseif ($2 == !cardive) || ($2 == !pmgetcar) {
    if ($vcmp.cmdcheck(cardivegetcar,%id) == fail) !halt
    elseif (!$3) vcmp.msg %id  Missing Information, $2 <car id>
    elseif ($3 !isnum) vcmp.msg %id  Invalid Vehicle ID, $2 <car id>
    elseif ($vcmp.carowner($3) != %name) vcmp.msg %id You are not the owner of this car, go and buy one!
    else {
      vcmp.msg %id
      vcmp.setvehicleloc $3 $hget(vcmp,%id $+ .x) $hget(vcmp,%id $+ .y) $calc($hget(vcmp,%id $+ .z) + 700)
      .timer -m 1 400 vcmp.set 9 %id $3
    }
  }
  elseif ($2 == !lockcar) || ($2 == !pmlockcar) {
    if ($vcmp.cmdcheck(!lockcar,%id) == fail) !halt
    elseif (!$3) vcmp.msg %id Error - Missing Information, $2 <car id>
    elseif ($3 !isnum) vcmp.msg %id Error - Invalid Vehicle ID, $2 <car id>
    elseif ($vcmp.carowner($3) != %name) vcmp.msg %id You are not the owner of this car
    else {
      vcmp.lockdoors $3 4
      vcmp.msg %id **Car Locked
    }
  }
  elseif ($2 == !unlockcar) || ($2 == !pmunlockcar) {
    if ($vcmp.cmdcheck(!unlockcar,%id) == fail) !halt
    elseif (!$3) vcmp.msg %id Error - Missing Information, $2 <car id>
    elseif ($3 !isnum) vcmp.msg %id Error - Invalid Vehicle ID, $2 <car id>
    elseif ($vcmp.carowner($3) != %name) vcmp.msg %id You are not the owner of this car
    else {
      vcmp.lockdoors $3 0
    vcmp.msg %id **Car Unlocked    }
  }

tommi you server is cool more commands add buycar car sellcar etc..  :)
Title: Re: Suggestions
Post by: Tommis on August 03, 2008, 04:10:14 am
Hey,

Hmm, locking the doors would be not that good of an idea. Just because then most of the car doors will be locked and non usable.

I was thinking, if someone enters a car that is not owned by them, the owner will get 10-15$ per enter of something from that person.

Basically like a loan or something, a rent for the car.

Regards,
Tommis
Title: Re: Suggestions
Post by: TanaX01 on August 03, 2008, 04:24:56 am
Hey,

Hmm, locking the doors would be not that good of an idea. Just because then most of the car doors will be locked and non usable.

I was thinking, if someone enters a car that is not owned by them, the owner will get 10-15$ per enter of something from that person.

Basically like a loan or something, a rent for the car.

Regards,
Tommis

mm nice tommis whats other commands?

                                             
!Racing in aiport ( killing in aiport )

 Killing = Drown(1) - Drop(2) - kick(3)

Auto Warn Killing In Race Drown player:[ Name ] Warning:[ 1 / 3 ]
 
Auto Warn Killing In Race Drop player:[ Name ] Warning:[ 2 / 3 ]

Auto kick Killing In Race kick player:[ Name ] Warning:[ 3 / 3 ]

in
Quote
Killing In Race

add Killing in Bank, In Sunshine, Dribe By. Team Killing ;)

hey tommis please quit commands /c goto id is commands admin  ;) and buy Weapon and Armour in ammunation :)
Title: Re: Suggestions
Post by: Mattz on August 03, 2008, 04:36:01 am
Yea renting sounds good. It would be like;

!rentcar <amount-of-days> Maxium 10days = $200  (10 Multiplied by 2)

So each day is x2

When each day that goes by say for
Eg. Three days = $60 That would  be subtracted from the renters bank account and would be added to the vehicles owner account.

You can also use "Database for Vice City Vehicles" by Windlord to round off the costof all vehicles.
 :D
Title: Re: Suggestions
Post by: TanaX01 on August 03, 2008, 04:37:04 am
Yea renting sounds good. It would be like;

!rentcar <amount-of-days> Maxium 10days = $200  (10 Multiplied by 2)

So each day is x2

When each day that goes by say for
Eg. Three days = $60 That would  be subtracted from the renters bank account and would be added to the vehicles owner account.

You can also use "Database for Vice City Vehicles" by Windlord to round off the cost.
 :D



:O  mattz nice !!! is cool suggestion !! yea !rencar :D
Title: Re: Suggestions
Post by: Windlord on August 03, 2008, 09:49:47 am
This may sound RPG-ish but being able to purchase health packs/first aid kits would be great.

So instead of healing everywhere ppl can buy packs at hospitals for instant heal or to heal later on.

Another suggestion is.... being able to buy spawn locations anywhere on the map =]
So you can run to any spot and do !buyspawn and it'll spawn you at that point everytime you spawn.

Just some ideas to make the server fun :)

Mattz// @_o Thanks
Title: Re: Suggestions
Post by: Giermek on August 03, 2008, 06:44:36 pm
Kick or drown for DB, becasue too many people do it. DBers don't read "db is disallowed" and still do it :/
Title: Re: Suggestions
Post by: Tommis on August 04, 2008, 05:51:58 am
Hey,

Alright guys, thanks greatly for all the ideas, and I will continue coding them in. As for drive by's, I know exactly what you mean.

Most likely going to make it kick the person thus forcing them to actually read.

Keep the ideas coming! I currently like;


As for buying health only in hospitals, I think that is a bit harsh. Only because most of the time that will not be an option for people.

Just for more detail with the renting car, most likely this will happen. People can buy vehicles once a day (will reset every 12 hours or something), and when someone enters a car that belongs or was bought by someone else, that person who owns it will receive money from the person that entered it.

Locking doors will not be necessary, as it is a total waste.

Please remember guys, this it not a full time RPG server. This is meant to be DM + bit of rpg'ness.

Regards,
Tommis
Title: Re: Suggestions
Post by: Mattz on August 17, 2008, 08:28:57 am
Use hashes to save/load data :)

Hashes saves and loads faster than ini.
Quote from mirc help: "Hash tables allow you to efficiently store large amounts of information which can be quickly referenced and retrieved later on."

Ini can lag the scripts and put wear on your pc HD.
Title: Re: Suggestions
Post by: Tommis on August 18, 2008, 04:23:28 am
Hey,

Yep, in my former scripts, used to use hash's all the time. But then ran into problems with mirc and them after a long period of time.

As it works with the memory, if mirc crash's you loose that data for whatever is left from the timeout you have to save it to a text file.

But, what happened before (very rare) is the loosing of all data as it overwrites the text file every time it saves.

So I stay away from hash's for now.

Cya,
Tommis
Title: Re: Suggestions
Post by: Mattz on August 18, 2008, 04:38:06 am
Hmm i see, It happens even if you use the signal "on Disconnect" to save the data it?
Title: Re: Suggestions
Post by: Force on August 18, 2008, 11:32:57 am
I have always used:

Code: [Select]
on *:EXIT: {
do fancy saving hash table stuff
}
Title: Re: Suggestions
Post by: Windlord on August 18, 2008, 11:45:33 am
That wouldn't be a good idea as it'll only save when you close mIRC.

If your server had been on for a whole week, you'd lose the week's worth of data if mIRC crashes.

I prefer saving hashes when people join and leave the server.

So... on *:SIGNAL:vcmp.player.part: and on *:SIGNAL:vcmp.player.join:
Title: Re: Suggestions
Post by: xXx.Leo777.xXx on August 22, 2008, 09:45:46 am
Well, I'm suggesting that you could possibly add some new skins to the European & American servers? I think that would be great idea. IDs below. :D :)

(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/034.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/037.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/009.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/001.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/013.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/014.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/015.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/028.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/035.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/042.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/036.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/044.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/032.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/053.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/082.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/081.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/086.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/085.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/084.jpg)(http://i206.photobucket.com/albums/bb215/tutuy4/GTA%20Vice%20City%20Skin%20IDs/083.jpg)        

Out of All: 11 new men, 9 new women

Current selections in European/American servers: 17 men, 2 women
This will equal 28 men, 11 women to choose from! :D
 
That would be so cool!! :)
Title: Re: Suggestions
Post by: TanaX01 on August 25, 2008, 07:24:01 am
add new script nah add commands plz Commands By Rulk

in irc !getip:

Code: [Select]

  elseif ($1 == !getip) {
    if (!$2) echo @Server Error - Missing Information, $1 <name>
    elseif ($vcmp.getip($2) == Unknown) echo @Server Error - Cannot Find IP on " $+ $2 $+ "
    else {
      locate $vcmp.getip($2)
      echo @Server Please Wait, Retrieving IP Information...
      pause s 3
      echo @Server $2 $+ 's IP Details
      echo @Server IP: %ip
      echo @Server Country: %country
      echo @Server City: %city
      echo @Server ISP: %isp
      unset %isp
      unset %ip
      unset %city
      unset %state
      unset %country
      !halt
    }
  }

and Getip ingame:

Code: [Select]
    elseif ($1 == !getip) {
      if (!$2) msg $chan Error - Missing Information, $1 <name>
      elseif ($vcmp.getip($2) == Unknown) msg $chan Error - Cannot Find IP on " $+ $2 $+ "
      else msg $chan $2 $+ 's - IP: $vcmp.getip($2)
    }
  ;)

Title: Re: Suggestions
Post by: Mattz on August 25, 2008, 07:32:51 am
XE has a !getip cmd already, and its also make that 8)
Title: Re: Suggestions
Post by: TanaX01 on August 25, 2008, 07:42:15 am
XE has a !getip cmd already, and its also make that 8)

Cool  :D


you test me commands !getip in server XE
Title: Re: Scripts Suggestions
Post by: Windlord on August 31, 2008, 09:24:24 am
lol I desperately need a !bans or !banlist cmd :(

*Windlord accidentally banned someone :(
Title: Re: Scripts Suggestions
Post by: Tommis on August 31, 2008, 04:59:22 pm
Hey,

Yes, there is !banned <ip> I have coded a couple days ago. It has all the information, including reason, admin who banned, and the name included all in there.

Regards,
Tommsi
Title: Re: Scripts Suggestions
Post by: Windlord on August 31, 2008, 05:48:34 pm
Sorry I don't think i know the ip :/
Title: Re: Scripts Suggestions
Post by: Tommis on August 31, 2008, 11:43:51 pm
Hey,

Then you can use !getip <name>

Cya,
Tommis
Title: Re: Scripts Suggestions
Post by: TanaX01 on August 31, 2008, 11:57:19 pm
tommis you new system !check is cool  :)
Title: Re: Scripts Suggestions
Post by: Tommis on September 01, 2008, 06:55:12 am
Thanks =P Any other suggestions, feel free to let me know!
Title: Re: Scripts Suggestions
Post by: Windlord on September 01, 2008, 02:49:31 pm
Cheers Tommis

Hope I don't make mistakes again D:
Title: Re: Scripts Suggestions
Post by: Knucis on September 08, 2008, 03:14:31 pm
Hi everybody,

I have got a suggestion: put an racing mode on XE | Servers :P!
And add more things for racing like:
 - Drift mode (blow up all the wheels of the racers to be more realistic :P)
 - Drag mode (like NFS :D:P)
 - Grip mode (like NFS :D:P)
 - etc etc...

------------------------------- The Race Command -----------------------------

Type (like WSV :P):  !race to enter in the race...
Type (only admins can do):  /c makerace <race mode (like: Drag, Drift, Grip...)> <start place> <End Place> <maximum racers> <price>. And when a admin type that command a PM apears to all the player saying:
Code: [Select]
Example: [XE]Tommis made "drag" race!
[XE]Tommis offer 4000$ to the Winner, go to the "Airport" and type !race to enter in the it!
or something like that! xD

And ( if exist on VC:MP) add nitro! ;
And if you try to kill somebody in the race you will be drowned...

It is my suggestion... I think that the server will have more fun things...

Cya, Knucis

Sorry for my english... Im portuguese xD



Title: Re: Scripts Suggestions
Post by: ULK.HeAD on September 14, 2008, 11:13:32 pm
remove the heal delay for all players, or make admins wait to heal too please...
Title: Re: Scripts Suggestions
Post by: [VK]XxThexOnlyxX on September 27, 2008, 06:13:20 am
this server is wonderfull but i think it needs more commands like !car,!mycars,!sellcar etc... and need the props commands
Title: Re: Scripts Suggestions
Post by: Sandoval on September 28, 2008, 12:46:59 am
Agreed, Tommis is probably thinking something up about a car system/property system.
Title: Re: Scripts Suggestions
Post by: Windlord on September 28, 2008, 12:27:13 pm
I think Tommis preferred a server without too many rp elements...

Well anyways...

I think the !ipban command should also work when the player is offline since some players leave the game as soon as they are aware that they will be banned.
Title: Re: Scripts Suggestions
Post by: Sandoval on September 28, 2008, 05:35:43 pm
Yeah, I've been bothering Tommis about the offline !IPban too, still didn't give me a response, I'll ask him now
Title: Re: Scripts Suggestions
Post by: Chucky on October 03, 2008, 09:59:59 am
Hey,

I think thats a cool idea, becuz like Windlord said the !ipban command should also work when the player is offline since some players leave the game as soon as they are aware that they will be banned.

Other: When there's no admin(s) online, player(s) can take screen shots or video of the player(s) that is cheating/hacking, and then they can post the screen shots or video of the player(s) on XE Servers forum for prove, and then when me or other admin(s) come online we can ban the player either if he/she/it is offline so it will be an usefull command,
becuz there's some players that cheats when there's no admin(s) online,
and they think that they can always get away with it without being banned!!!

Cya,
Chucky
Title: Re: Scripts Suggestions
Post by: Dead on October 08, 2008, 05:11:22 am
I agree with you guys about the offline ipban, but i also think we should have like a banlist, and it would be useful for players that do stuff thats in a medium lvl so you can just ban them for good from the server....
the reason im thinking of a banlist is because we can have a  tempban cmd for players that do stuff in a meduim lvl, u can do for exmaple like !tempban dead 23min or wtvr it is the highest you can put is 1 month, that way wtvr the player did the next time he wont do it, its like giving him a 2nd chance which is pretty nice also it would be nice if after you tempban the person when the duration is over he gets unbanned automaticaly otherwise the admins will have to keep tracks with the bans and check on the banlist for names to unban on the date the person is supposed to be unbaned at.
Thanks and good luck with everything! :)
Title: Re: Scripts Suggestions
Post by: Chucky on October 09, 2008, 09:10:01 am
Ya, i think thats a cool idea to 8)
Title: Re: Scripts Suggestions
Post by: cola on October 13, 2008, 03:28:16 pm
echo chan should be more colourful :)

and /c nogoto on/off looks weird
i think

/c block on/off looks better :P

and a seperate forum for the servers when ur completely done with them :D
Title: [TLK]Aldo
Post by: (VK)aldo on October 17, 2008, 07:21:52 am
hi there

 ok I been thinking about the use of commando! buycar but without using the! loc car so that other players can use the car I would also like to remove the /c goto and only you could goto  to a property you've bought so that the have more properties have more possibilities to cover the entire map
 
 
thanks ;)
Title: Re: Scripts Suggestions
Post by: ULK.HeAD on October 17, 2008, 08:21:19 pm
could we make goto only work once every 5 minutes for admins using it on players who have nogoto on? that way it isn't abused so much. sometimes I can't even do my job as admin, because certain admins use goto on me over and over. admin vs admin nogoto working could also help with this.

...and the heal delay... is unfair IMO. normal players should be able to heal just as fast as admins. I do not like having any unfair advantages. also, I've seen some players use /c heal after being floored by a stubby shot, and due to the heal delay, you cant damage them until they are done healing. without perfect shot timing, there is no way to hit them until after they have healed, got up off the floor, and jumped away from your shot. removing the heal delay would open them up to a point blank stubby shot, which is what would happen to me if I tried to type /c heal while floored. yeah, I'm sure I can just kick them for it, but its not their fault they are stuck with the delay, so most times I don't.
Title: Re: Scripts Suggestions
Post by: cola on October 18, 2008, 10:24:14 am
could we make goto only work once every 5 minutes for admins using it on players who have nogoto on? that way it isn't abused so much. sometimes I can't even do my job as admin, because certain admins use goto on me over and over. admin vs admin nogoto working could also help with this.

...and the heal delay... is unfair IMO. normal players should be able to heal just as fast as admins. I do not like having any unfair advantages. also, I've seen some players use /c heal after being floored by a stubby shot, and due to the heal delay, you cant damage them until they are done healing. without perfect shot timing, there is no way to hit them until after they have healed, got up off the floor, and jumped away from your shot. removing the heal delay would open them up to a point blank stubby shot, which is what would happen to me if I tried to type /c heal while floored. yeah, I'm sure I can just kick them for it, but its not their fault they are stuck with the delay, so most times I don't.
how about no heal. Lets have no heal, or maybe heal at certain places like cafes, hospitals, clubs
Title: Re: Scripts Suggestions
Post by: ULK.HeAD on October 18, 2008, 08:02:11 pm
how about no heal. Lets have no heal, or maybe heal at certain places like cafes, hospitals, clubs

well that results in people camping out the healing points, especially the ones close to certain spawns. ever been to LW's and see the never-ending fight in downtown from the police station to the pizza place? I would like a slow heal, anyone remember the mtavc sailor? although I could see a constant +1 hp every 2 seconds to all players lagging the script out, so maybe thats no good either  :-\

edit: wait what about the language filter? I don't know what place it has in a DM game, unless its here so we can freeze ourselves out of untimely deaths like drowning?
Title: Re: Scripts Suggestions
Post by: cola on October 19, 2008, 10:25:44 am
oops, how about NO heal, since u get healed whenever u kill someone. Its a dm seerver, so well its a plave to grow skills and fight, so u get hp when u deserve to :)

and making heal faster without freezing, will end up in spamming imo
Title: Re: Scripts Suggestions
Post by: ULK.HeAD on October 19, 2008, 08:33:37 pm
that sounds great to me, I keep telling the lamers that run away in the middle of a fight to heal that they are better off just finishing their opponent for the HP bonus, and it will make them a better fighter in the long run. I've watched a few daily players' skills stagnate since they run to heal instead of pushing their skills to the next level to win a fight. although it is fun to chase down a person who runs to heal and kill them, its no fun when you get there and can't kill them while they are in a heal-freeze.
Title: Re: Scripts Suggestions
Post by: cola on October 19, 2008, 09:18:11 pm
oh btw, there is a rule that u cant kill  a healing guy? omg thats hard to see, the heal cmd should be removed!
Title: Re: Scripts Suggestions
Post by: ULK.HeAD on October 19, 2008, 10:08:59 pm
there is no rule on killing people while healing I've ever heard of... I kill healers as much as I possibly can. I hope eventually they will see there is no point in running in a DM game, and it is best to just finish a fight and heal after everyone is dead, if you need to. you don't get any better at the game by running away and healing.

edit: I don't know if this has already been mentioned, but a detailed stats page would be nice. ULK has run a few servers for mtavc, I believe we had one for vcmp 0.1, and we almost always had a stats page that listed people with the highest scores, and also kept track of weapons usage. you could see how many kills a person had made with each weapon, we also had a random quote from each person. I don't remember how many people it kept track of, it was the top 50 or 100 maybe  ???
Title: Re: Scripts Suggestions
Post by: cola on October 20, 2008, 11:20:39 am
so like stats, money, kills, deaths, and maybe popularity? good idea
Title: Re: Scripts Suggestions
Post by: ULK.HeAD on October 21, 2008, 02:49:53 am
yeah, you got it. lines of chat, favorite word, #1 victim... etc.
Title: Re: Scripts Suggestions
Post by: Legolas on November 10, 2008, 07:28:26 am
Hey Tommis

    can you please increase the amount of ammo we receive when we spawn... there was a script down today and 25 stubby round >:( isn't going to take all those noobie armies that comes in a large group (about 5 or 6)  :(
Title: Re: Scripts Suggestions
Post by: ulkaki on December 18, 2008, 09:26:20 am
From what I saw a few weeks ago, Psycho Empire already has some kind of stats page .... with Top Clan, Top Player...etc

Maybe since the P.E. server owner/scriptor, [ECA]rulk is providing his code to the public (I think....), can't you "borrow" it for the XE servers?

Oh yea, as for admins, a way to tell if a player has nogoto on or off would be nice.  ;D
Title: Re: Scripts Suggestions
Post by: PlayerX on December 24, 2008, 10:56:37 pm
:/... add bad words:

puto
mierda
tarado
porqueria
perra
puta
sorete
estupido
pelotudo
bastardo

then step over them...

PX...
Title: Re: Scripts Suggestions
Post by: [UB]TheKing on December 25, 2008, 02:33:13 am
well i think is a good idea to add those bad words as a bad word so players cn b warn and have caution wen they talk spanish and english that is a great idea playerX :) tommis head dis is a great idea
Title: Re: Scripts Suggestions
Post by: Daniel95 on December 28, 2008, 09:35:17 am
How about !mute for admins commands.
If a player flame alot we can mute him hahaah :D(In sa-mp yes this command).
Title: Re: Scripts Suggestions
Post by: ulkaki on December 28, 2008, 11:40:58 am
hey daniel, I forgot.... are you an admin in XE servers?  ;D
Title: Re: Scripts Suggestions
Post by: Daniel95 on December 28, 2008, 11:59:18 am
Not in this server....
Title: Re: Scripts Suggestions
Post by: Daniel95 on December 31, 2008, 04:31:33 pm
This is the ip of the server where im admin 125.91.96.114:5192.
Come and join the server  ;).
Title: Re: Scripts Suggestions
Post by: ulkaki on January 01, 2009, 08:31:40 am
Don't advertise other servers man...
Title: Re: Scripts Suggestions
Post by: Daniel95 on January 01, 2009, 12:38:14 pm
ok
Title: Re: Scripts Suggestions
Post by: thijn on January 06, 2009, 07:47:40 pm
Oh yea, as for admins, a way to tell if a player has nogoto on or off would be nice.
Really nice idea!!
Title: Re: Scripts Suggestions
Post by: ULK.Bishop on January 14, 2009, 03:25:05 pm
I get a lot of requests for a command to change login pass
Title: Re: Scripts Suggestions
Post by: Ajeet on February 21, 2009, 12:05:24 pm
I get a lot of requests for a command to change login pass
i agree with you aki
Title: Re: Scripts Suggestions
Post by: ulkaki on February 22, 2009, 05:56:15 am
lol that wasn't me who said that.... its bishop...
Title: Re: Scripts Suggestions
Post by: ULK.HeAD on February 28, 2009, 02:42:29 am
you can PM any x-serverz admin about changing your password here on the forums.
Title: Re: Scripts Suggestions
Post by: StriKe on March 03, 2009, 08:22:45 pm
Some addons needed for XE Servers
1.Auto Ban For Armour Hax when admins aren't online
2.Spawn Kill  Detection And Auto Warn For It
3.Idle Time Kicker
4.Auto Ban On Logging into BANNED account
5.A slap command( To Check Hp,Reduces 20% of Heath)
6/c Resetpass id/nick(Only when Online)
Title: Re: Scripts Suggestions
Post by: Sandoval on March 04, 2009, 01:02:03 am
Some addons needed for XE Servers
1.Auto Ban For Armour Hax when admins aren't online
I think this was tried before, but there's a glitch sometimes before you spawn it says you have for example, 115% armor, when you really don't. So I think that might run into some problems.

And I have a suggestion:

Offline Forceban, - (!forceban <ip>) - Bans a user's IP even if they are offline.
Title: Re: Scripts Suggestions
Post by: StriKe on March 04, 2009, 07:54:49 am
Some addons needed for XE Servers
1.Auto Ban For Armour Hax when admins aren't online
I think this was tried before, but there's a glitch sometimes before you spawn it says you have for example, 115% armor, when you really don't. So I think that might run into some problems.
Yes I Have Noticed but it can be fixed by Tommis For Sure
but it isn't good too if it bans a players wrongly it would be a problem,when players posting  a ban appeals saying that"Scripts Banned me wrongfully"
Title: Re: Scripts Suggestions
Post by: ulkaki on March 04, 2009, 11:24:43 am
yea, but only about 10% of the vcmp community actually knows/uses the forum...
Title: Re: Scripts Suggestions
Post by: Mr.Sosa on March 08, 2009, 05:13:10 am
and its easier change it urself cuz u dont have to wait others to do it
Title: Re: Scripts Suggestions
Post by: ULK.HeAD on March 17, 2009, 03:55:46 am
well I'm just saying... as it is, you can either PM an admin to change your password, OR you can wait for Tommis to come here, read your suggestion, then acutally implement it within the script.

 ::)
Title: Re: Scripts Suggestions
Post by: Gulk on March 23, 2009, 11:54:51 pm
!setweather <#number> or (sun,rain,fog .ect) and !settime <00:00> or (morning , night ect) im bored of the sun and day in every server  :'(