Vice City Multiplayer

VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: TanaX01 on July 22, 2008, 11:34:40 pm

Title: Buycar Scriptin Sasan
Post by: TanaX01 on July 22, 2008, 11:34:40 pm
Commands Car, Buycar, Sellcar, Mycars, Sharecar, Delsharecar  ;)

Command !Car:
Code: [Select]
    elseif ($2 == !car) {
      var %p = $iif($3,$v1,%id)
      if ( $vcmp.hgetcarid(%id) = 0 ) {
        vcmp.adminmsg %id You are Currently on Foot
        !halt
    }
      elseif ($vcmp.nameid(%p) != $null) vcmp.adminmsg %id Vehicle Status: Model:[ $vcmp.carsnames($vcmp.hgetcarid(%id)) ] ID:[ $vcmp.carsids($vcmp.hgetcarid(%id)) ]  Hp:[ $vcmp.hgetcarhp(%id) ]
      vcmp.adminmsg %id Owner:[ $vcmp.carsowners($vcmp.hgetcarid(%id)) ] Price:[ $ $+  $vcmp.carsprices($vcmp.hgetcarid(%id)) ] Share:[ $vcmp.carsshares($vcmp.hgetcarid(%id)) ]
      else vcmp.adminmsg %id Error: Invalid ID.
    }

Command !Mycars:
Code: [Select]
    elseif ($2 == !mycars) {
      var %a = 0,%b = 0,%c = 0,%d
      while (%a < $ini(vcmp.cars.ini,OWNERS,0)) {
        %b = $readini(vcmp.cars.ini,OWNERS,$ini(vcmp.cars.ini,OWNERS,%a))
        %c = %b
        %d = $ini(vcmp.cars.ini,OWNERS,%a)
        !inc %a
        if (%c == $vcmp.hgetname(%id)) vcmp.adminmsg %id Mycars:[ $vcmp.carsnames(%d) ( %d ) ]
      }
    }

Command !Buycar:
Code: [Select]
   
    elseif ($2 == !buycar) {
      if ( $vcmp.hgetcarid(%id) = 0 ) {
        vcmp.adminmsg %id You are Currently on Foot
        !halt
      }
      if (Sunshine-Autos-Viceport-Vice-City-Mainland !isin $vcmp.playerarea(%id)) {
        vcmp.adminmsg %id Error - You Must Be in Sunshine-Autos To Buy a Car!
        !halt
      }
      elseif ( $vcmp.carsowners($vcmp.hgetcarid(%id)) != Sunshine-Autos ) {
        vcmp.adminmsg %id Error - This Vehicle is already Owned.
        !halt
      }
      elseif ($hget(mycars, $vcmp.hgetname(%id)) >= 2) vcmp.adminmsg %id Error, you have reached your car limit.

      elseif ( $vcmp.carsprices($vcmp.hgetcarid(%id)) > $vcmp.hgetmoney(%id)) {
        vcmp.adminmsg %id Error - You need atleast $ $+ $vcmp.carsprices($vcmp.hgetcarid(%id)) to buy this vehicle.
        !halt
      }
      else {
        !writeini vcmp.cars.ini OWNERS $vcmp.hgetcarid(%id) $vcmp.hgetname(%id)
        vcmp.adminmsg %id Bought Car!
        var %cars = $hget(myCars, $vcmp.hgetname(%id))
        !hadd -m myCars $vcmp.hgetname(%id) $calc(%cars +1)
        vcmp.setmon %id $calc($vcmp.hgetmoney(%id) - $vcmp.carsprices($vcmp.hgetcarid(%id)))
      }
    }

Commands !Sellcar:
Code: [Select]
    elseif ($2 == !sellcar) {
      var %money = $calc($vcmp.carsprices($vcmp.hgetcarid(%id)) /2 )
      var %cars = $hget(mycars, $vcmp.hgetname(%id))
      if ( $vcmp.hgetcarid(%id) = 0 ) {
        vcmp.adminmsg %id You are Currently on Foot
        !halt
      }
      if (Sunshine-Autos-Viceport-Vice-City-Mainland !isin $vcmp.playerarea(%id)) {
        vcmp.adminmsg %id Error - You Must Be in Sunshine-Autos To Sell a Car!
        !halt
      }
      elseif ( $vcmp.carsowners($vcmp.hgetcarid(%id)) != $vcmp.hgetname(%id) ) {
        vcmp.adminmsg %id Error - This is not your Vehicle.
        !halt
      }
      else {
        !writeini vcmp.cars.ini OWNERS $vcmp.hgetcarid(%id) Sunshine-Autos
        !hadd -m mycars $vcmp.hgetname(%id) $calc(%cars -1)
        if ($hget(mycars, $vcmp.hgetname(%id)) == 0 ) !hdel mycars $vcmp.hgetname(%id)
        vcmp.adminmsg %id Sold Car!
        vcmp.setmon %id $calc($vcmp.hgetmoney(%id) + %money)
      }
    }

Command !Getcar:

Code: [Select]
    elseif ($2 == !getcar) {
      if ($vcmp.hgetcarid(%id) != 0) vcmp.adminmsg %id You must be on foot to use the <!Getcar> Command.
      elseif (!$3) vcmp.adminmsg %id Error - Missing Information, $2 <ID>
      elseif ($3 !isnum) vcmp.adminmsg %id $2 $+ , Invalid Vehicle ID.
      elseif (. isin $3) vcmp.adminmsg %id $2 $+ , Invalid Vehicle ID.
      elseif ($3 > 140) || ($3 < 0) vcmp.adminmsg %id Error: Invalid Vehicle ID.
      elseif (+ isin $3) || (- isin $3) vcmp.adminmsg %id $2 $+ , Invalid Vehicle ID.
      elseif ( $vcmp.carsowners($3) != $vcmp.hgetname(%id)) vcmp.adminmsg %id Error - You Dont have Keys To this Vehicle.
      else {
        vcmp.setcarloc $3 $calc($vcmp.hgetpos.x(%id) + 2) $calc($vcmp.hgetpos.y(%id) + 2) $calc($vcmp.hgetpos.z(%id) - 1) 
        vcmp.adminmsg %id Spawning Car:[ $3 $+ ]
      }
      if ($vcmp.hgetcarid(%id) != 0) vcmp.adminmsg %id You must be on foot to use the <!Getcar> Command.
      elseif (!$3) vcmp.adminmsg %id Error - Missing Information, $2 <ID>
      elseif ($3 !isnum) vcmp.adminmsg %id $2 $+ , Invalid Vehicle ID.
      elseif (. isin $3) vcmp.adminmsg %id $2 $+ , Invalid Vehicle ID.
      elseif ($3 > 140) || ($3 < 0) vcmp.adminmsg %id Error: Invalid Vehicle ID.
      elseif (+ isin $3) || (- isin $3) vcmp.adminmsg %id $2 $+ , Invalid Vehicle ID.
      elseif ( $vcmp.carsshares($3) != $vcmp.hgetname(%id)) vcmp.adminmsg %id Error - You Dont have Keys To this Vehicle.
      else {
        vcmp.setcarloc $3 $calc($vcmp.hgetpos.x(%id) + 2) $calc($vcmp.hgetpos.y(%id) + 2) $calc($vcmp.hgetpos.z(%id) - 1) 
        vcmp.adminmsg %id Spawning Car:[ $3 $+ ]
      }
    }

Command !Sharecar:
Code: [Select]
    elseif ($2 == !sharedcars) {
      var %a = 0,%b = 0,%c = 0,%d
      while (%a < $ini(vcmp.cars.ini,SHARE,0)) {
        %b = $readini(vcmp.cars.ini,SHARE,$ini(vcmp.cars.ini,SHARE,%a))
        %c = %b
        %d = $ini(vcmp.cars.ini,SHARE,%a)
        !inc %a
        if (%c == $vcmp.hgetname(%id)) vcmp.adminmsg %id Sharedcars:[ $vcmp.carsnames(%d) ( %d ) ]
      }
    }
    elseif ($2 == !sharecar) {
      if ( $vcmp.hgetcarid(%id) = 0 ) {
        vcmp.adminmsg %id You are Currently on Foot
        !halt
      }
      elseif ( $vcmp.carsshares($vcmp.hgetcarid(%id)) != None ) {
        vcmp.adminmsg %id Error - This Vehicle is Already Shared.
        !halt
      }
      elseif ( $vcmp.carsowners($vcmp.hgetcarid(%id)) != $vcmp.hgetname(%id) ) {
        vcmp.adminmsg %id Error - This is not your Vehicle.
        !halt
      }
      else {
        !writeini vcmp.cars.ini SHARE $vcmp.hgetcarid(%id) $vcmp.hgetname($vcmp.nameid($3))
        vcmp.adminmsg %id Shared Car!
      }
    }

Command !DelSharecar:
Code: [Select]
    elseif ($2 == !delsharecar) {
      if ( $vcmp.hgetcarid(%id) = 0 ) {
        vcmp.adminmsg %id You are Currently on Foot
        !halt
      }
      elseif ( $vcmp.carsowners($vcmp.hgetcarid(%id)) != $vcmp.hgetname(%id) ) {
        vcmp.adminmsg %id Error - This is not your Vehicle.
        !halt
      }
      else {
        !writeini vcmp.cars.ini SHARE $vcmp.hgetcarid(%id) $vcmp.hgetname($vcmp.nameid($3)) None
        vcmp.adminmsg %id Deleted Share Car!
      }
    }

Please Create New File In Script Name:

1.- vcmp.owners in vcmp.owner:
Code: [Select]
[OWNERS]
13=Sunshine Autos
10=Sunshine Autos
145=Sunshine Autos
148=Sunhine Autos
146=Sunshine Autos
45=Sunshine Autos
25=Sunshine Autos
2=Sunshine Autos
149=Sunshine Autos
126=Sunshine Autos
110=Sunshine Autos
97=Sunshine=Autos
52=Sunshine Autos
27=Sunshine Autos
151=Sunshine Autos
44=Sunshine Autos
100=Sunshine Autos
101=Sunshine Autos
15=Sunshine Autos
73=Sunshine Autos
152=Sunshine Autos

2.- New File Name: vcmp.myCars

3.- New File Name: vcmp.cars in vcmp.cars

Code: [Select]
[PRICES]
1=75000
2=75000
3=75000
4=75000
5=75000
6=75000
7=75000
8=75000
9=1500000
10=300000
11=1200000
12= etc etc
[ID] ( is id you cars )
1=1
2=2
3=3
4=4
5=5
6=6
7=7
8=8
9=9
10=10
11=11
[OWNERS] ( owner id 1= etc is empy no modific )
1=
2=
3=
4=
5=
6=
7=
8=
9=
10=
11=
12=
[NAMES] ( and all name car's )
1=Washington
2=Angel
3=Angel
4=Angel
5=Angel

 ;)

Please no more fight  >:(
Title: Re: Buycar Scriptin Sasan
Post by: Nemesis2500 on July 22, 2008, 11:36:41 pm
rofl  :-X  ;)
Title: Re: Buycar Scriptin Sasan
Post by: K.I.S.S on July 22, 2008, 11:49:43 pm
good work friend.
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 23, 2008, 12:06:56 am
good work friend.

Thx  :D
Title: Re: Buycar Scriptin Sasan
Post by: Tamas on July 23, 2008, 03:31:44 am
I puted 3 files into my mirc folder:
vcmp.cars.ini , vcmp.myCars.ini , vcmp.owners.ini

vcmp.owners.ini:
[OWNERS]
108=Sunshine Autos

vcmp.cars.ini
[PRICES]
108=850000
[OWNERS] ( owner id 1= etc is empy no modific )
1=
[NAMES] ( and all name car's )
108=Police

I did something wrong? Because if i enter to the police vehicle ID: 108, it says that owner: Price:  and not show the price and owner...
The elseif commands are work i puted tham all to the script. How can i fix it?
And i need to change something more in the script file? I also putted there the elseif commands.

I would be grateful for a example file :)
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 23, 2008, 05:08:04 am
Quote
Credits: Is My Script Sasan V3 Release Modific By TanaX01 & Nemesis_24 and Revilo  Cool
Moe pretty much did this for you :-\
Give him some credit...
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 23, 2008, 05:12:12 am
Quote
Credits: Is My Script Sasan V3 Release Modific By TanaX01 & Nemesis_24 and Revilo  Cool
Moe pretty much did this for you :-\
Give him some credit...

nope you and nemesis  ;) i reset my pc and nemesis help my in script car buycar etc 
Title: Re: Buycar Scriptin Sasan
Post by: thijn on July 23, 2008, 10:38:49 am
can you post the alias to?
Title: Re: Buycar Scriptin Sasan
Post by: Tamas on July 23, 2008, 03:24:38 pm
So what i did wrong? :(
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 23, 2008, 04:18:05 pm
So what i did wrong? :(
It's probably becauseTanax didn't post the entire code :P
Title: Re: Buycar Scriptin Sasan
Post by: Tamas on July 23, 2008, 04:23:42 pm
Please Tanax can you give out the alias codes too? :D
Title: Re: Buycar Scriptin Sasan
Post by: Nemesis2500 on July 23, 2008, 07:29:48 pm
So what i did wrong? :(
It's probably becauseTanax didn't post the entire code :P
is the full code  :-\ i think the problem is with the .ini files  ::)
Title: Re: Buycar Scriptin Sasan
Post by: Nemesis2500 on July 23, 2008, 07:52:07 pm
sorry for double posting but  ::)...
in vcmp.cars.ini firistly you have to know how many cars you have in your server
for example i have 150 cars  :P
in vcmp.cars firstly goes the [PRICES]
write:
the ids
1=(price)
2=(price) etc etc as i said u hvae to know how many cars u have ingame

with [ID] is the same
1=1
2=2
3=3 etc etc

with [OWNERS] the ids
1=
2=
but only ID's  ;)

with [NAMES] is kinda boring xD
1=(car's name)
2=(car's name) etc etc

now with [SHARE] is the same as [OWNERS] only IDs


I DONT KNOW IF YOU'VE ALREADY DID THIS  :-\ BUT IM TRYING TO HELP

PS:YOU CAN ASK IF YOU DIDNT GET THIS  ;)
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 23, 2008, 08:32:31 pm
sorry add in

on *:START:{

Code: [Select]

  $iif($hget(myCars) != $null,, !hmake myCars)
  if ($isfile(vcmp.myCars.txt)) !hload myCars vcmp.myCars.txt


  vcmp.SaveMyCars

  vcmp.SaveAutoSpawn
}


on 1:EXIT:{
  /hsave -os myCars vcmp.myCars.txt
  /hsave -os AutoSpawn vcmp.AutoSpawn.txt
}
  ;)
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 23, 2008, 10:23:44 pm
Yea  :D Nice Example  8)
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 24, 2008, 12:04:57 am
Complete Code:

Credits: TanaX01, Nemesis_24, Revilo, Moe
 



2. vcmp.cars.ini

Continue adding your car names, using moe's vehicle id to model convertor

http://forum.vicecitymultiplayer.com/index.php?PHPSESSID=5ac5ab3a6959c7aecf7793c8a4658750&topic=447.0

Quote

Hey

Code: [Select]
Continue adding your car names, using moe's vehicle id to model convertor
Is Rulk Luke  ;) no ist moe owner
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 24, 2008, 01:25:03 am
whatever, i dont care who made it, its f*****g brilliant, it helped me me with my script, would have taken me hours to do what that thing does in seconds

is rulk no moe  ;)
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 24, 2008, 01:36:10 am
ok, but it dosnt matter who made it. good script tho friend, and good work, many people will be happy with your work. you are a good scripter.

i not scripting is revilo and rulk moe is not owner script is rulk  ;) i send my script gus bot connect irc a rulk and rulk help my in sasan  :-* :-*  :D
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 24, 2008, 02:51:20 am
I just, don't, KNOW! :(
EESSH >_<
Title: Re: Buycar Scriptin Sasan
Post by: Nemesis2500 on July 24, 2008, 04:44:54 am
well all credits for
TaNaX01,Nemesis_24,ReVilo & Rulk
Title: Re: Buycar Scriptin Sasan
Post by: Nemesis2500 on July 24, 2008, 04:45:43 am
whatever, i dont care who made it, its f*****g brilliant, it helped me me with my script, would have taken me hours to do what that thing does in seconds
your welcome xDDDDDD  :D
Title: Re: Buycar Scriptin Sasan
Post by: Windlord on July 24, 2008, 10:12:11 am
whatever, i dont care who made it, its f*****g brilliant, it helped me me with my script, would have taken me hours to do what that thing does in seconds

You don't care who made the script?
I'd say that you are very inconsiderate and only care for your own needs if that's what you're saying.
Scripters take huge amounts of time to make scripts for the community and they should be credited accordingly.
Not caring about the creator is just pure ignorance and egoism.
Title: Re: Buycar Scriptin Sasan
Post by: Tamas on July 24, 2008, 03:59:32 pm
My options: (cars.ini)

[CARS]
1=VCNMaverick#1
[PRICES]
1=950000
[ID]
1=1
[OWNERS]
1=
[NAMES]
1=maverick

I have only 1 car in my config.ini  ;D
And yeah its work, but its not showing the ID, Model Name, and share with.
The HP, Price, and owner is work.
Any idea?
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 24, 2008, 04:54:54 pm
not sure what your ranting on about, you should read carefully before you start getting defensive and taking things to heart
He did read and so did I, I agree with him. It does matter tremendously 'who' made the script, because as Windlord mentioned, scripters put enormous amount of time into their work and it need not go unappreciated.
Title: Re: Buycar Scriptin Sasan
Post by: Windlord on July 24, 2008, 10:05:31 pm
FYI this is not a HELP Section but a mIRC scripting section where you can share script ideas, scripts and provide beneficial information for the community and therefore it is actually appropriate to talk of such issues in this section although not necessarily in this post.

And we were talking about the converter as the buycar script's credit goes to many people anyways.

I may have written my post in an aggressive manner but you still do not understand the importance of acknowledging the scripters.

Maybe you should start scripting stuff yourself and then you'll realise.
Title: Re: Buycar Scriptin Sasan
Post by: Force on July 24, 2008, 10:09:12 pm
i was not talking about the "script" i was talking about moe's program to convert car id's to models.

THIS IS MENT TO BE A HELP FORUM, NOT A SQUABBLE FORUM.

so all those comments you, windlord / other members have made are irrelevant and a complete waste of space, taking the attention away from the helpfull code thats been posted in this section.



Look at the bold bit carefully, its not moe's program, its rulk's. Moe posted it with permssion from rulk, so instead of calling it moe's program call it rulk's. You need to learn what its like to spend ages working on a script which could be 5000 lines long, it takes us effort and time. And you may think its not a lot but do you even think about testing and making sure things work and fixing them if they don't!?

AKA what wind has said :P

[end of rant]
Title: Re: Buycar Scriptin Sasan
Post by: K.I.S.S on July 24, 2008, 10:36:10 pm
ok, your continuation of juvenile behaviour has prompted me to remove my postings of code, sorry to all that found it helpful.

you are making this forum look tatty / unprofessional.
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 24, 2008, 10:51:18 pm
No, you are. You need to give credit where credit is due. And not cover over your mistake with hypocrisy. We're grateful for your contribution to the forum.
Title: Re: Buycar Scriptin Sasan
Post by: K.I.S.S on July 24, 2008, 10:56:24 pm
your trying to justify your actions. thats ok.
you might like to look up what hypocrisy means considering you dont know who i am.

added note, this reminds me of a school playground.
boy1 "he hit me miss" boy2 "no he hit me first miss"

you dont want to accept you are wrong.
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 24, 2008, 10:58:06 pm
Congratulations!
Title: Re: Buycar Scriptin Sasan
Post by: Windlord on July 24, 2008, 11:01:46 pm
K.I.S.S your only mistake was naming the creator wrongly.
If you had admitted your mistake at an early stage it would've all been ok.
Now you're trying to insult others as well.

PS. Might want to go get a new keyboard.
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 24, 2008, 11:02:47 pm
Thus the basis of hypocrisy. Mentioning the maker, and then after having gotten it wrong, saying it doesn't matter. If it doesn't matter why'd you specify :P
Title: Re: Buycar Scriptin Sasan
Post by: K.I.S.S on July 24, 2008, 11:06:31 pm
your just making this forum look more and more unprofessional.

keep going, im saving this for my colleagues for a good laugh tomorrow.
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 24, 2008, 11:11:07 pm
Well we wouldn't want to leave them unsatisfied, now would we?
Title: Re: Buycar Scriptin Sasan
Post by: Windlord on July 24, 2008, 11:12:29 pm
I'd say, show it to your grammar teacher instead.
Title: Re: Buycar Scriptin Sasan
Post by: Orpheus on July 24, 2008, 11:17:17 pm
OMFG!

OK Windlord, Force, and revilo are all RIGHT you are wrong, accept your wrong doings and stop blaming them, heres a definition of hypocrisy since you seem to  need one...
or maybe two...

1.   a pretense of having a virtuous character, moral or religious beliefs or principles, etc., that one does not really possess.

2.   a pretense of having some desirable or publicly approved attitude.

Now an instance of hypocrisy would be.. I dunno... saying one thing when another is known as true?

or ....

Saying something like  " your just making this forum look more and more unprofessional. " when in reality it is the one who said such a thing that is infact making this forum look unprofessional?


are you a kid of like 15 trying to act like some kind of bigshot and so finds it neccisary to prove his point no matter what the cost dispite knowing your wrong?

This is rediculous everyone knows that the vehicle id converter for VCMP was created by rulk, and not more, so how you came to the conclusion it was moe is beyond all of us I believe....

so enjoy having a laugh about this tomorrow with your "colleauges" or rather being laughed at BY your "colleauges", that is ofcourse, if you infact HAVE Colleauges....
Regards Orph
Title: Re: Buycar Scriptin Sasan
Post by: cola on July 24, 2008, 11:28:49 pm
ALL of u guys are wasting ur times posting here, arguing with another peep who you don't even know who he is. And by arguing more, u ALL are making the forum look more bad. Stop arguing now, and go back to topic we are WAAAAAAAY off topic.

thank you
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 24, 2008, 11:40:32 pm
K.I.S.S your only mistake was naming the creator wrongly.
If you had admitted your mistake at an early stage it would've all been ok.
Now you're trying to insult others as well.

PS. Might want to go get a new keyboard.

Hey K.I.S.S Stop is my script and me credits delate ok please stop fight in forum !!

is forum script no forum fight WTF!  >:(
Title: Re: Buycar Scriptin Sasan
Post by: Tamas on July 25, 2008, 12:27:40 am
Ok I tryed it seems its work but:

When i go to Sunshine Autos and type: !buycar it says:
"This vehicle is allready owned" --> But its not :(
My cars.ini file:

[CARS]
1=VCNMaverick#1
[PRICES]
1=500
[ID]
1=1
[OWNERS]
1=
[NAMES]
1=VCNMaverick

Anyway 2 commands not work:
!mycars
!sharedcars

I dont know the script is 100% good, but if i put my name to the owners file example:

(vcmp.owners.ini)
[OWNERS]
1=[SRS]Tomi
Than i can getcar it for me than the server says you do not have the keys for this vehicle , but i can spawn it for me :D
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 25, 2008, 12:37:36 am
you edit script well ?? look error in mirc and post error in forum  ;)
Title: Re: Buycar Scriptin Sasan
Post by: Tamas on July 25, 2008, 01:47:22 am
Okay i solve the problem it was that:
(owners.ini)
I puted that there: SunshineAutos
Correct Format: Sunshine-Autos :)

Than the script will accept the buying request when you type !buycar
Anyway the !sharecar, !sharedcars commands are still not working.
Title: Re: Buycar Scriptin Sasan
Post by: K.I.S.S on July 25, 2008, 02:21:12 am
Quote
Re: Buycar Scriptin Sasan
? Reply #35 on: Today at 01:17:17 PM ?
   
OMFG!

OK Windlord, Force, and revilo are all RIGHT you are wrong, accept your wrong doings and stop blaming them, heres a definition of hypocrisy since you seem to  need one...
or maybe two...

1.   a pretense of having a virtuous character, moral or religious beliefs or principles, etc., that one does not really possess.

2.   a pretense of having some desirable or publicly approved attitude.

Now an instance of hypocrisy would be.. I dunno... saying one thing when another is known as true?

or ....

Saying something like  " your just making this forum look more and more unprofessional. " when in reality it is the one who said such a thing that is infact making this forum look unprofessional?


are you a kid of like 15 trying to act like some kind of bigshot and so finds it neccisary to prove his point no matter what the cost dispite knowing your wrong?

This is rediculous everyone knows that the vehicle id converter for VCMP was created by rulk, and not more, so how you came to the conclusion it was moe is beyond all of us I believe....

so enjoy having a laugh about this tomorrow with your "colleauges" or rather being laughed at BY your "colleauges", that is ofcourse, if you infact HAVE Colleauges....
Regards Orph

The joke is on you if you don't understand what you copied and pasted.

Try reading through what you wrote carefully, you will eventually get there i think.

PS, i love the speculation in this one, has caused a few laughs.
Title: Re: Buycar Scriptin Sasan
Post by: Orpheus on July 25, 2008, 02:47:10 am
You really aren't worth the effort.. and also I DID read what I put.. since I WROTE it I know what I put...  YOU clearly have either misread, or misunderstood what the conecpt of hypcrisy is, and since talking to you seems to be like trying to communicate with a brick wall... no wait,thats not fair, the brick wall would have much better understanding of such a situation, since clearly you lack good communication skills, and the ability to interpret the writings of humans in a way that is compatiable with your meager mind.

So do us all a favour and kindly silence yourself so we no longer have to listen to the ramblings of a pompous cretin...

Postscript, or P.S. for those who are unfamiliar with postscript : If you need a dictionary I'm certain you can find one in your local bookstore, that is ofcourse if you know what a bookstore looks like, let alone a book...


Title: Re: Buycar Scriptin Sasan
Post by: K.I.S.S on July 25, 2008, 02:49:34 am
took your time.

one word

speculation.

your essay was a waste of time.

note, that was a hint. your making yourself look very silly by making all these speculations. keep them coming, they are providing some good entertainment
Title: Re: Buycar Scriptin Sasan
Post by: Orpheus on July 25, 2008, 02:56:56 am
Took my time because i have something called a LIFE you know, where you DON'T sit watching  a forum all day in hope for a reply.

And well done it IS speculation,  speculation most people in this topic would agree with.
Title: Re: Buycar Scriptin Sasan
Post by: K.I.S.S on July 25, 2008, 03:05:06 am
ok orpheus, i will spell it out for you as you don't seem to be getting there by yourself

To use the word "hypocrisy" with full meaning you would need to know who i am and as this is the internet you can only make a speculation.

I could make a speculation that you are sleeping with your sister, i would most likely be wrong and i would be making myself look silly.

so the two essays you wrote with some comical speculations in have provided some temporary entertainment for my sad little life.

ps,

if only you knew....

but hey, you can always speculate...
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 25, 2008, 03:14:52 am
This isn't speculation. To call you a hypocrite would be speculation, but in this setting, you're practicing hypocrisy. The fact that you're practicing hypocrisy in this situation isn't speculation, it's fact.   
Title: Re: Buycar Scriptin Sasan
Post by: Jack_Bauer on July 25, 2008, 03:44:14 am
SPAM SPAM SPAM SPAM SPAM SPAM SPAM SPAM

 >:( >:( >:( >:( >:( >:( >:( >:( >:( >:( >:( >:( >:(

 :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'(
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 25, 2008, 03:57:23 am
SPAM SPAM SPAM SPAM SPAM SPAM SPAM SPAM

 >:( >:( >:( >:( >:( >:( >:( >:( >:( >:( >:( >:( >:(

 :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'( :'(
omg hypocrisy...
LMAO
Title: Re: Buycar Scriptin Sasan
Post by: Mattz on July 25, 2008, 04:51:08 am
Uhmm wth is this.
/me locks the topic.
Title: Re: Buycar Scriptin Sasan
Post by: ReVilo on July 25, 2008, 04:51:47 am
Fail. nie ban plx
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 25, 2008, 06:22:01 am
Fail. nie ban plx

Yea And Locked Topic !

K.I.I.S !! STFU! NO MORE PROBLEM AND YOU REGISTER YOU NAME IS ALL PROBLEM  >:(
Title: Re: Buycar Scriptin Sasan
Post by: stunty2008 on July 25, 2008, 06:47:29 pm
Orpheus, grow up, what rubbish you write.

Reading through this, every one of you have made this forum look unprofessional.

The moderators are not doing their job properly to prevent such behaviour
Title: Re: Buycar Scriptin Sasan
Post by: bakasan on July 27, 2008, 03:20:24 am
anyone that finds this kind of endless flaming entertaining?

btw what was this topic about?  oh, yea a buycar script.  i cba to remove all the posts that deserve it, i just hope its over now.  any more posts in this thread should be about the buycar script plx ._.
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on July 31, 2008, 08:34:35 pm
anyone that finds this kind of endless flaming entertaining?

btw what was this topic about?  oh, yea a buycar script.  i cba to remove all the posts that deserve it, i just hope its over now.  any more posts in this thread should be about the buycar script plx ._.

hey administrator or moderator please locked topic plz  8)
Title: Re: Buycar Scriptin Sasan
Post by: Force on July 31, 2008, 09:15:06 pm
Or you could do it your self by clicking on Lock Topic  ;D
Title: Re: Buycar Scriptin Sasan
Post by: Nemesis2500 on August 01, 2008, 01:31:41 am
ah crap close this thing!!!!
Title: Re: Buycar Scriptin Sasan
Post by: TanaX01 on August 06, 2008, 02:27:04 am
Or you could do it your self by clicking on Lock Topic  ;D

oo yea me locked topic me dude is locked topic is administrator or moderator now T

TanaX Locked Topic Now.