thanks in advance,i would like to know more by myself but,im erm a noob at scripting at the moment .
Im using Sansan
1?- I would need/like the "announce" command,i look in script and i start to see how it works but i cant kind of set all up together, i know i use vcmp.gametext,but i dont know how to make command from there :S.
2?- Can mIRC make sums? i think ive seen it somewhere,to start with i want to use it for the time command,as it gives my time so i would do like,im from spain,GMT +1,so like england would be $currenttime minus 1.im not sure why but my !time command crashes,it works at start but then it get stuck at that hour,like,i type !time and it comes 3:00 ,half hour latter i do !time and it still comes up 3:00 :S
elseif ($2 == !time) vcmp.adminchat $currenttime
alias currenttime vcmp.adminchat $asctime(HH:mm)
3?- i cant get to work some cars on the config.ini file,cars like phoenix , which is weird couse i see it on other servers :S. Skin 130 also doesnt work I put like
Skin = 1 130 etc etc etc
Skin = 1 103 " " "
and two 103's skins comes up,one with 103's weapons and the other with 130's weapons :S.
4?-I managed to find out how to disable the auto-enter in vehicle when you do !getcar,but now it spawns on me,anyway of making it spawn a bit on one side,i think with a "sum" it would do the trick like add 5 to the coordinates or something.
elseif ($2 == !getcar) {
if ($hget(vcmp,loggedin. $+ %id) < 10) vcmp.adminmsg %id You must be Admin Level 10 or higher to attempt this command.
else {
if ($vcmp.hgetcarid(%id) != 0) vcmp.adminmsg %id You must not be in a vehicle to use !getcar.
else {
if ((!$3) || ($3 > 200) || ($3 < 0)) vcmp.adminmsg %id Error: Invalid Car ID.
else {
vcmp.setloc %id $vcmp.hgetpos.x(%id) $vcmp.hgetpos.y(%id) $vcmp.hgetpos.z(%id) 0
vcmp.setcarloc $3 $vcmp.hgetpos.x(%id) $vcmp.hgetpos.y(%id) $vcmp.hgetpos.z(%id)
[b];[/b] vcmp.setcar %id $3
vcmp.adminmsg %id Got car $3 $+ !
}
I think thats it for now,thank you all very much.