Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 02-02-2004, 04:35 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
A pretty simple script not working online

Im an ET on server Dynasty, and I don't understand why this script won't work. Its supposed to warp the player on top of the winners platform if they touch the npc with a bush. It works offline, when its uploaded, no work.

if (playertouchsme && carriesbush){
with (getplayer(#a)){
setcharprop #c,#a;
hide;
setlevel2 bushrace2.nw,33.5,30.5;
}
}


if (playerchats && strequals(#c,/reset)){
if (strequals(#g,Events Admin) || strequals(#g,Events Team)){
show;
}
}
//#CLIENTSIDE
if (created) {
// Initialize the attributes
showcharacter;
setcharprop #3,head7.png;
setcharprop #C0,orange;
setcharprop #C1,darkblue;
setcharprop #C2,brown;
setcharprop #C3,black;
setcharprop #C4,brown;
setcharprop #2,no-shield.gif;
shieldpower = 1;
dir = 2;
setcharprop #c, Touch me to win!;
}
Reply With Quote
  #2  
Old 02-02-2004, 08:00 PM
WanDaMan WanDaMan is offline
Master Tux
WanDaMan's Avatar
Join Date: Aug 2002
Location: England, United Kingdom
Posts: 5,571
WanDaMan is a jewel in the roughWanDaMan is a jewel in the rough
Send a message via MSN to WanDaMan
Well it's quite hard to tell who one when some 1 could touch it straight after some 1 else as and it would appear to have him as the winner...
I think the problem is
if (playertouchsme && carriesbush){
add a timeout and try it :o?
Or make it so if you pelt it it executes it ?
__________________
V$:CONFL16T
Reply With Quote
  #3  
Old 02-02-2004, 10:18 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
where to put the timeout and how long is the timeout, and why will this make it work?
Reply With Quote
  #4  
Old 02-02-2004, 10:20 PM
WanDaMan WanDaMan is offline
Master Tux
WanDaMan's Avatar
Join Date: Aug 2002
Location: England, United Kingdom
Posts: 5,571
WanDaMan is a jewel in the roughWanDaMan is a jewel in the rough
Send a message via MSN to WanDaMan
It's worth a try, your telling me you don't know timeout's but you know quite complex commands such as with(getplayer(account))?
__________________
V$:CONFL16T
Reply With Quote
  #5  
Old 02-02-2004, 10:27 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Where should I put the timeout is what im asking and how long should I make it for.
Reply With Quote
  #6  
Old 02-02-2004, 10:27 PM
DIABLO2099 DIABLO2099 is offline
Registered User
Join Date: Sep 2002
Location: New York
Posts: 290
DIABLO2099 is on a distinguished road
I am guessing this is with an NPC-Server. The NPC may not know that the player is touching it, use setshape. I don't think with(getplayer()) is actually necessary in this case.
__________________
-Former UnholyNation Server Manager.

Call me Xecutor.
Reply With Quote
  #7  
Old 02-02-2004, 10:30 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
That would help
Reply With Quote
  #8  
Old 02-02-2004, 10:36 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
How do I get the size of it?
Reply With Quote
  #9  
Old 02-02-2004, 10:51 PM
GoZelda GoZelda is offline
Mister 1,000,000
GoZelda's Avatar
Join Date: Jan 2003
Location: Brussels, capital of Europe.
Posts: 5,396
GoZelda will become famous soon enough
Send a message via AIM to GoZelda Send a message via MSN to GoZelda
It's 2 tiles wide and 2 high. Use

setshape 1,width,height;

Where width is the width of tiles * 16, and the height is the height of tiles * 16.
__________________

Quote:
Originally Posted by Lance
stefan is satan
I am the best.
[URL removed]Music or aural pollution?
Reply With Quote
  #10  
Old 02-02-2004, 10:58 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
should i place this under if created and should it be client or serverside
Reply With Quote
  #11  
Old 02-02-2004, 11:00 PM
GoZelda GoZelda is offline
Mister 1,000,000
GoZelda's Avatar
Join Date: Jan 2003
Location: Brussels, capital of Europe.
Posts: 5,396
GoZelda will become famous soon enough
Send a message via AIM to GoZelda Send a message via MSN to GoZelda
NPC Code:

if (created){
//Set width of NPC
setshape 1(not sure 'bout 1),32,32;
}


If the setshape isn't used, it isn't an 'object', but just decoration, kinda. Read the attached text trough... it will increase your knowledge.
Attached Files
File Type: txt npcserver.txt (12.5 KB, 264 views)
__________________

Quote:
Originally Posted by Lance
stefan is satan
I am the best.
[URL removed]Music or aural pollution?
Reply With Quote
  #12  
Old 02-02-2004, 11:00 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
if (created){
setshape 1,48,48;
}
if (playertouchsme && carriesbush){
with (getplayer(#a)){
setcharprop #c,#a;
hide;
setlevel2 bushrace2.nw,33.5,30.5;
}
}


if (playerchats && strequals(#c,/reset)){
if (strequals(#g,Events Admin) || strequals(#g,Events Team)){
show;
}
}
//#CLIENTSIDE
if (created) {
// Initialize the attributes
showcharacter;
setshape 1,48,48;
setcharprop #3,head7.png;
setcharprop #C0,orange;
setcharprop #C1,darkblue;
setcharprop #C2,brown;
setcharprop #C3,black;
setcharprop #C4,brown;
setcharprop #2,no-shield.gif;
shieldpower = 1;
dir = 2;
setcharprop #c, Touch me to win!;
}

Thats the new script, doesn't work
Reply With Quote
  #13  
Old 02-02-2004, 11:03 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Btw im testing this in online mode
Reply With Quote
  #14  
Old 02-02-2004, 11:18 PM
DarkShadows_Legend DarkShadows_Legend is offline
Cult of the Winky
DarkShadows_Legend's Avatar
Join Date: Apr 2003
Location: Florida
Posts: 614
DarkShadows_Legend is on a distinguished road
Send a message via AIM to DarkShadows_Legend
NPC Code:

if (created) {
showcharacter;
setshape 1,48,48;
setcharprop #3,head7.png;
setcharprop #C0,orange;
setcharprop #C1,darkblue;
setcharprop #C2,brown;
setcharprop #C3,black;
setcharprop #C4,brown;
setcharprop #2,no-shield.gif;
shieldpower = 1;
dir = 2;
setcharprop #c, Touch me to win!;
}

if (playertouchsme && carriesbush){
setcharprop #c,#a;
hide;
setlevel2 bushrace2.nw,33.5,30.5;
}

if (playerchats && strequals(#c,/reset)){
if (strequals(#g,Events Admin) || strequals(#g,Events Team)){
show;
}
}


I rearranged stuff in your script. I'm not really sure if this works since I haven't tested it.
__________________
- Criminal X

"I rather be hated for being myself, than be liked for being what you like best. I go above the influence, not under." - Me
Reply With Quote
  #15  
Old 02-03-2004, 12:33 AM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Still doesn't work, Stefan, where are you!?!?!?!
Reply With Quote
  #16  
Old 02-03-2004, 12:51 AM
Nappa Nappa is offline
The Great Nappa
Nappa's Avatar
Join Date: Sep 2003
Location: Florida
Posts: 1,911
Nappa is on a distinguished road
Send a message via AIM to Nappa
You might want to read up about how to use serverside stuff and clientside.

setlevel2 and with are serverside commands and such. Use a //#CLIENTSIDE tag to seperate clientside and serverside. You're also making a mountain out of a speedbump problem.
__________________
Reply With Quote
  #17  
Old 02-03-2004, 12:52 AM
-Ramirez- -Ramirez- is offline
Registered User
Join Date: Jun 2002
Location: USA, Ohio
Posts: 729
-Ramirez- has a spectacular aura about-Ramirez- has a spectacular aura about
The problem is "carriesbush". Stefan loves to make everyone rescript everything nowadays. The NPC Server apparently doesn't have detection for whether or not a player is carrying a bush.

Solution: Do the playertouchsme detection clientside (where carriesbush still works) and trigger serverside. If you wanted it more secure, check the coordinates of the player sending the trigger to make sure they're within a close enough distance to truly be touching the NPC.
__________________
Kat
Reply With Quote
  #18  
Old 02-03-2004, 01:06 AM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
can you triggeraction from clientside to serverside? like triggeraction from if player touchs me to test if they have a bush and then triggeraction back to serverside for warp.
Reply With Quote
  #19  
Old 02-03-2004, 01:08 AM
-Ramirez- -Ramirez- is offline
Registered User
Join Date: Jun 2002
Location: USA, Ohio
Posts: 729
-Ramirez- has a spectacular aura about-Ramirez- has a spectacular aura about
Quote:
Originally posted by Gman4pwnu
can you triggeraction from clientside to serverside?
Of course. It's the reverse that isn't possible in non-NPCWs, which is completely retarded in the first place.

That's what I was suggesting you do. Check if (playertouchsme && carriesbush) clientside... then trigger serverside telling the script that it's been touched while carrying a bush. Do some coordinate checking on the serverside trigger... then you can do your warping stuff.
__________________
Kat
Reply With Quote
  #20  
Old 02-03-2004, 01:18 AM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Ah ok, I just did the reverse of what you said lol.. I tried to check if player is touched and then go to client then go back hehe.

Ill try your way

Im a bit confused on x,y ???? what if i dont want to check if it happens at an x, y ?

wow the first time i saw trigger action (bout 8 months ago) i figured ill never touch this thing too confusing, seems a bit easier now that its been explained what it does.
Reply With Quote
  #21  
Old 02-03-2004, 01:23 AM
DIABLO2099 DIABLO2099 is offline
Registered User
Join Date: Sep 2002
Location: New York
Posts: 290
DIABLO2099 is on a distinguished road
That's the position at where the action occurs, use x,y or 0,0.
__________________
-Former UnholyNation Server Manager.

Call me Xecutor.
Reply With Quote
  #22  
Old 02-03-2004, 01:25 AM
-Ramirez- -Ramirez- is offline
Registered User
Join Date: Jun 2002
Location: USA, Ohio
Posts: 729
-Ramirez- has a spectacular aura about-Ramirez- has a spectacular aura about
Quote:
Originally posted by Gman4pwnu
Im a bit confused on x,y ???? what if i dont want to check if it happens at an x, y ?
x and y are the coordinates where you're going to be sending the trigger. Think of it as a gunshot on those coordinates. Any NPC on those coordinates will receive the trigger. In this case, you want to trigger the same NPC, so use x + 0.5,y + 0.5. Triggering directly on x,y doesn't seem to work all of the time for some reason.
__________________
Kat
Reply With Quote
  #23  
Old 02-03-2004, 01:28 AM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Doesn't seem to detect the trigger action =\

if (actionplayerwins){
setcharprop #c, Detected triggeraction!;
sleep 1;
with (getplayer(#a)){
setcharprop #c,#a;
hide;
setlevel2 bushrace2.nw,33.5,30.5;
setcharprop #c, Complete!;
}
}

if (playerchats && strequals(#c,/reset)){
if (strequals(#g,Events Admin) || strequals(#g,Events Team)){
show;
}
}
//#CLIENTSIDE

if (playertouchsme){
setcharprop #c, Detected Touch!;
sleep 1;
if (carriesbush){
setcharprop #c, Detected Bush!;
sleep 1;
triggeraction x+.5,y+.5,playerwins,;
}
}

if (created){
showcharacter;
//setshape 1,48,48;
setcharprop #3,head7.png;
setcharprop #C0,orange;
setcharprop #C1,darkblue;
setcharprop #C2,brown;
setcharprop #C3,black;
setcharprop #C4,brown;
setcharprop #2,no-shield.gif;
shieldpower = 1;
dir = 2;
setcharprop #c, Touch me to win!;
}
Reply With Quote
  #24  
Old 02-03-2004, 01:30 AM
-Ramirez- -Ramirez- is offline
Registered User
Join Date: Jun 2002
Location: USA, Ohio
Posts: 729
-Ramirez- has a spectacular aura about-Ramirez- has a spectacular aura about
You need to have a setshape serverside. Without it, the server doesn't know how big the NPC is... therefore it can't receive a trigger.

Btw, the with () isn't necessary. The script will already be "attached" to that player... so things can be directly edited. Besides... you're attempting to set NPC properties inside the player's with () block.
__________________
Kat
Reply With Quote
  #25  
Old 02-03-2004, 01:34 AM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Thank you all of you for your help.

Here is the complete and working script for those who want it.

Thanks especially to ramirez.

NPC Code:

if (created){
setshape 1,48,48;
}
if (actionplayerwins){
with (getplayer(#a)){
setcharprop #c,#a;
hide;
setlevel2 bushrace2.nw,33.5,30.5;
setcharprop #c, Complete!;
}
}

if (playerchats && strequals(#c,/reset)){
if (strequals(#g,Events Admin) || strequals(#g,Events Team)){
show;
}
}
//#CLIENTSIDE

if (playertouchsme){
if (carriesbush){
triggeraction x+.5,y+.5,playerwins,;
}
}

if (created){
showcharacter;
setshape 1,48,48;
setcharprop #3,head7.png;
setcharprop #C0,orange;
setcharprop #C1,darkblue;
setcharprop #C2,brown;
setcharprop #C3,black;
setcharprop #C4,brown;
setcharprop #2,no-shield.gif;
shieldpower = 1;
dir = 2;
setcharprop #c, Touch me to win!;
}

Reply With Quote
  #26  
Old 02-03-2004, 03:59 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
AAAAARRRGGG

I need to check this forum more often i guess x-x

1. PLEASE move the if (created) stuff to the serverside, how should the player be able to touch the npc if the npcserver doesn't event know that the npc is visible? since you only display stuff on the clientside; move it and you don't need weird stuff like setshape or whatever

2. with (getplayer(#a)) is completely nonsense, please kill the one who teached you such stuff

3. the stuff about the carriesbush is right - its from the old classic clientside-only mode and not supported anymore; you can still possible detect it on clientside and then send a trigger to the serverside which is warping you
Reply With Quote
  #27  
Old 02-03-2004, 04:01 AM
Blitz_Hunter Blitz_Hunter is offline
dot dot dot
Blitz_Hunter's Avatar
Join Date: Oct 2002
Location: Missouri
Posts: 601
Blitz_Hunter is on a distinguished road
Send a message via AIM to Blitz_Hunter
Never seen Stefan so evil.
__________________
-em3ricR-
Reply With Quote
  #28  
Old 02-03-2004, 04:11 AM
DIABLO2099 DIABLO2099 is offline
Registered User
Join Date: Sep 2002
Location: New York
Posts: 290
DIABLO2099 is on a distinguished road
x.x, I always thought when showing a character it was to be done on the client.
__________________
-Former UnholyNation Server Manager.

Call me Xecutor.
Reply With Quote
  #29  
Old 02-03-2004, 04:18 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Quote:
Originally posted by DIABLO2099
x.x, I always thought when showing a character it was to be done on the client.
x-x
You can do all initializations on the serverside, its faster anyway and causing less traffic since the script doesn't need to be sent to the client, and the npcs actually see each other then
You can also drawoverplayer, drawunderplayer etc. on the server, don't know why some people always put that in the clientside part. The only problem is when you do lights or similar things, the commands setcoloreffect, setzoomeffect and seteffectmode only work on clientside.
Reply With Quote
  #30  
Old 02-03-2004, 04:24 AM
DIABLO2099 DIABLO2099 is offline
Registered User
Join Date: Sep 2002
Location: New York
Posts: 290
DIABLO2099 is on a distinguished road
Quote:
Originally posted by Stefan


x-x
You can do all initializations on the serverside, its faster anyway and causing less traffic since the script doesn't need to be sent to the client, and the npcs actually see each other then
You can also drawoverplayer, drawunderplayer etc. on the server, don't know why some people always put that in the clientside part. The only problem is when you do lights or similar things, the commands setcoloreffect, setzoomeffect and seteffectmode only work on clientside.
I guess most people do that because they think it would cause less traffic being sent to the NPC-Server.
__________________
-Former UnholyNation Server Manager.

Call me Xecutor.
Reply With Quote
  #31  
Old 02-03-2004, 04:27 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Quote:
Originally posted by DIABLO2099

I guess most people do that because they think it would cause less traffic being sent to the NPC-Server.
AAAH
The npcserver is doing all the npc stuff anyway, the question is if the thing needs to be sent to the client. If you do the initialization on the clientside then the npcserverr is bored, but needs to send the script to everyone who enters the level, the players then need to run the script which cause even more lag because entering the level causes delays from downloading the npcs, downloading the scripts and running the scripts.
When you do that on npcserver it just needs to be done one time and everything is fine. That is actually the purpose of the npcserver, doing the npcs
Reply With Quote
  #32  
Old 02-03-2004, 04:31 AM
DIABLO2099 DIABLO2099 is offline
Registered User
Join Date: Sep 2002
Location: New York
Posts: 290
DIABLO2099 is on a distinguished road
Quote:
Originally posted by Stefan


AAAH
The npcserver is doing all the npc stuff anyway, the question is if the thing needs to be sent to the client. If you do the initialization on the clientside then the npcserverr is bored, but needs to send the script to everyone who enters the level, the players then need to run the script which cause even more lag because entering the level causes delays from downloading the npcs, downloading the scripts and running the scripts,
when you do that on npcserver it just needs to be done one time and everything is fine.
I'm sorry, this is confusing me more. I am going to read my documents on the NPC-Server and then make some sense of this
.
__________________
-Former UnholyNation Server Manager.

Call me Xecutor.
Reply With Quote
  #33  
Old 02-03-2004, 05:34 AM
-Ramirez- -Ramirez- is offline
Registered User
Join Date: Jun 2002
Location: USA, Ohio
Posts: 729
-Ramirez- has a spectacular aura about-Ramirez- has a spectacular aura about
Stefan, here's something for you to fix, since you say we should do it serverside.

Try putting this in a new NPC:
NPC Code:

if (created) {
showcharacter;
setcharprop #3,head0.png;
setcharprop #C0,orange;
setcharprop #C1,white;
setcharprop #C2,blue;
setcharprop #C3,red;
setcharprop #C4,black;
setcharprop #2,shield1.png;
shieldpower = 1;
dir = 2;
}



When you enter the level, you'll notice it has red and black for its outfit. It doesn't use the colors specified. At least... this is what happens on Classic Dev.
__________________
Kat
Reply With Quote
  #34  
Old 02-03-2004, 06:07 AM
Termina_Owner Termina_Owner is offline
Registered User
Join Date: Oct 2003
Posts: 175
Termina_Owner is on a distinguished road
Quote:
Originally posted by Stefan

2. with (getplayer(#a)) is completely nonsense, please kill the one who teached you such stuff
This is hilarious. I should check Stefan's posts more often
__________________
- Rance Vicious
Reply With Quote
  #35  
Old 02-03-2004, 06:09 AM
adam adam is offline
http://wiki.graal.us/
adam's Avatar
Join Date: Nov 2001
Posts: 2,247
adam has a spectacular aura aboutadam has a spectacular aura about
Send a message via AIM to adam
Well I didn't tell him to do that.

I told him if that bush flag didn't work to try checking #m for carrying.
__________________
Rogue Shadow (TCN)(NAT)(Global Development Team)

For development help, contact the patrons of the #graaldt irc channel below, I am usually there.
Click Here to Join IRC Chat Now! -- irc.freenode.net Channel: #graaldt
Quote:
<Dustyshouri> no, RogueShadow is always talking about scripts lol
<Dustyshouri> in fact, he pretty much brought Graal back as a topic single-handedly
Reply With Quote
  #36  
Old 02-03-2004, 02:09 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
So how would I do a lights on / off script for everyone to see? A triggeraction from server to client?

Also, if I select an image for the npc, do I need to set a shape?
Reply With Quote
  #37  
Old 02-03-2004, 02:11 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Wavy Vision for drunk effect?

what command would I use if one at all?

Also how would I have a timer that slowly brings down drunk level?
Reply With Quote
  #38  
Old 02-03-2004, 02:17 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Custom Swords and Weapons

Again, im wondering what commands it'll take. What will I need to use? Im guessing setcharani, freezeplayer, but I really have no clue on hit detection. =\
Reply With Quote
  #39  
Old 02-03-2004, 02:22 PM
Gman4pwnu Gman4pwnu is offline
Banned
Join Date: Jan 2004
Posts: 434
Gman4pwnu is on a distinguished road
Send a message via AIM to Gman4pwnu
Triggeraction

Can a trigger action detect an NPC thats in a players inventory?

Sorry for all the posts, but im not jus goin 2 cram em all into one
Reply With Quote
  #40  
Old 02-03-2004, 03:22 PM
WanDaMan WanDaMan is offline
Master Tux
WanDaMan's Avatar
Join Date: Aug 2002
Location: England, United Kingdom
Posts: 5,571
WanDaMan is a jewel in the roughWanDaMan is a jewel in the rough
Send a message via MSN to WanDaMan
seteffect, setfocus.
__________________
V$:CONFL16T
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 09:02 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.