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 06-18-2001, 07:12 AM
Geovanie Legend Geovanie Legend is offline
Graunch Programmer
Geovanie Legend's Avatar
Join Date: May 2001
Location: Missouri
Posts: 931
Geovanie Legend is an unknown quantity at this point
Send a message via ICQ to Geovanie Legend Send a message via AIM to Geovanie Legend Send a message via MSN to Geovanie Legend Send a message via Yahoo to Geovanie Legend
Question Tag helper

Ok I made a tag/guild helper NPC and it let me add people to it (it would say it created the account/nick into the guild, but it didn't) could someone either post the proper script or send it to me in a pm so i can see where i'm going wrong. thanks
Reply With Quote
  #2  
Old 06-18-2001, 07:14 AM
CrazedMerlin CrazedMerlin is offline
Some Guy :\
Join Date: Apr 2001
Posts: 3,619
CrazedMerlin is on a distinguished road
Send a message via AIM to CrazedMerlin Send a message via Yahoo to CrazedMerlin
Post your script so we can see if we see errors in it
__________________

ICQ: 117881194
AIM: TehWizad
E-Mail: [email protected]
Reply With Quote
  #3  
Old 06-18-2001, 07:22 AM
Geovanie Legend Geovanie Legend is offline
Graunch Programmer
Geovanie Legend's Avatar
Join Date: May 2001
Location: Missouri
Posts: 931
Geovanie Legend is an unknown quantity at this point
Send a message via ICQ to Geovanie Legend Send a message via AIM to Geovanie Legend Send a message via MSN to Geovanie Legend Send a message via Yahoo to Geovanie Legend
Ok I see no problem with that, let me round it up real fast

if (created) {
showcharacter;
setcharprop #3,head19.gif;
setcharprop #C0,orange;
setcharprop #C1,gray;
setcharprop #C2,gray;
setcharprop #C3,brown;
setcharprop #C4,black;
setcharprop #n,Tag Helper;
setcharprop #2,no-shield.gif;
dir = 2;
ap = 100;
}
if (playerchats && strequals(#g,Admin)){
//rmmember <account>
//addmember <account> <nick>
tokenize #c;
if(strequals(#t(0),addmember)){
addguildmember Admin,#t(1),#t(2);
say2 #t(2) has been added#b;
}
if(strequals(#t(0),rmmember)){
removeguildmember Admin,#t(1);
say2 #t(1) has been removed#b;
}
}
Reply With Quote
  #4  
Old 06-18-2001, 07:24 AM
CrazedMerlin CrazedMerlin is offline
Some Guy :\
Join Date: Apr 2001
Posts: 3,619
CrazedMerlin is on a distinguished road
Send a message via AIM to CrazedMerlin Send a message via Yahoo to CrazedMerlin
When you do it it says so and so were added?
__________________

ICQ: 117881194
AIM: TehWizad
E-Mail: [email protected]
Reply With Quote
  #5  
Old 06-18-2001, 07:27 AM
Geovanie Legend Geovanie Legend is offline
Graunch Programmer
Geovanie Legend's Avatar
Join Date: May 2001
Location: Missouri
Posts: 931
Geovanie Legend is an unknown quantity at this point
Send a message via ICQ to Geovanie Legend Send a message via AIM to Geovanie Legend Send a message via MSN to Geovanie Legend Send a message via Yahoo to Geovanie Legend
yep it pops up the sign that says #t(2) was added
the #t(2) of course being the nickname like
Geovanie Legend has been added
Reply With Quote
  #6  
Old 06-18-2001, 07:29 AM
CrazedMerlin CrazedMerlin is offline
Some Guy :\
Join Date: Apr 2001
Posts: 3,619
CrazedMerlin is on a distinguished road
Send a message via AIM to CrazedMerlin Send a message via Yahoo to CrazedMerlin
ummm...
hmm i dont see whats wrong, sorry cant help there
__________________

ICQ: 117881194
AIM: TehWizad
E-Mail: [email protected]
Reply With Quote
  #7  
Old 06-18-2001, 07:47 AM
Geovanie Legend Geovanie Legend is offline
Graunch Programmer
Geovanie Legend's Avatar
Join Date: May 2001
Location: Missouri
Posts: 931
Geovanie Legend is an unknown quantity at this point
Send a message via ICQ to Geovanie Legend Send a message via AIM to Geovanie Legend Send a message via MSN to Geovanie Legend Send a message via Yahoo to Geovanie Legend
lol ok and it would appear that your the only one who's even taken the time to atleast respond, but thanks anyway
Reply With Quote
  #8  
Old 06-18-2001, 07:53 AM
Falcor Falcor is offline
Darth Cucumber
Falcor's Avatar
Join Date: Mar 2001
Location: At School
Posts: 2,874
Falcor is on a distinguished road
Send a message via ICQ to Falcor Send a message via AIM to Falcor Send a message via MSN to Falcor Send a message via Yahoo to Falcor
Quote:
Originally posted by Geovanie Legend
lol ok and it would appear that your the only one who's even taken the time to atleast respond, but thanks anyway
Try #s(#t(0)) ??? I duno .It dont apear wrong =\
__________________

subliminal message: 1+1=3
Reply With Quote
  #9  
Old 06-18-2001, 08:04 AM
Geovanie Legend Geovanie Legend is offline
Graunch Programmer
Geovanie Legend's Avatar
Join Date: May 2001
Location: Missouri
Posts: 931
Geovanie Legend is an unknown quantity at this point
Send a message via ICQ to Geovanie Legend Send a message via AIM to Geovanie Legend Send a message via MSN to Geovanie Legend Send a message via Yahoo to Geovanie Legend
lol that done nothing, with that added it wouldn't even do anything, maybe i put it int he wrong place though.. post the whole script so i'll know
Reply With Quote
  #10  
Old 06-18-2001, 09:25 AM
CrazedMerlin CrazedMerlin is offline
Some Guy :\
Join Date: Apr 2001
Posts: 3,619
CrazedMerlin is on a distinguished road
Send a message via AIM to CrazedMerlin Send a message via Yahoo to CrazedMerlin
Just wait for kami!
He always helps when in need =D
__________________

ICQ: 117881194
AIM: TehWizad
E-Mail: [email protected]
Reply With Quote
  #11  
Old 06-18-2001, 09:35 AM
Spearman Spearman is offline
Registered User
Join Date: Mar 2001
Location: Indiana, USA
Posts: 498
Spearman is on a distinguished road
Send a message via ICQ to Spearman Send a message via AIM to Spearman
Are you testing this on a server?
__________________


Reply With Quote
  #12  
Old 06-18-2001, 09:35 AM
Geovanie Legend Geovanie Legend is offline
Graunch Programmer
Geovanie Legend's Avatar
Join Date: May 2001
Location: Missouri
Posts: 931
Geovanie Legend is an unknown quantity at this point
Send a message via ICQ to Geovanie Legend Send a message via AIM to Geovanie Legend Send a message via MSN to Geovanie Legend Send a message via Yahoo to Geovanie Legend
hehehehe cool, I just made a super leet jailing script.. it's like my first real script every, lol... i wub it to death.. i was goin nuts jailing and releasing my staff with it, hehehe
I still wanna get the tag helper to work
Reply With Quote
  #13  
Old 06-18-2001, 09:43 AM
CrazedMerlin CrazedMerlin is offline
Some Guy :\
Join Date: Apr 2001
Posts: 3,619
CrazedMerlin is on a distinguished road
Send a message via AIM to CrazedMerlin Send a message via Yahoo to CrazedMerlin
Today i finally learned how to properly use the move command(LOL)
__________________

ICQ: 117881194
AIM: TehWizad
E-Mail: [email protected]
Reply With Quote
  #14  
Old 06-18-2001, 09:45 AM
Geovanie Legend Geovanie Legend is offline
Graunch Programmer
Geovanie Legend's Avatar
Join Date: May 2001
Location: Missouri
Posts: 931
Geovanie Legend is an unknown quantity at this point
Send a message via ICQ to Geovanie Legend Send a message via AIM to Geovanie Legend Send a message via MSN to Geovanie Legend Send a message via Yahoo to Geovanie Legend
lol move command, hmm never used that b4.. in fact i didn't even know it existed.. that shows how far behind my scripting is
Reply With Quote
  #15  
Old 06-18-2001, 09:49 AM
CrazedMerlin CrazedMerlin is offline
Some Guy :\
Join Date: Apr 2001
Posts: 3,619
CrazedMerlin is on a distinguished road
Send a message via AIM to CrazedMerlin Send a message via Yahoo to CrazedMerlin
Quote:
Originally posted by Geovanie Legend
lol move command, hmm never used that b4.. in fact i didn't even know it existed.. that shows how far behind my scripting is
its like
move,#,#,time,#
like move,21,9,2 =D
__________________

ICQ: 117881194
AIM: TehWizad
E-Mail: [email protected]
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:11 PM.


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