Graal Forums  

Go Back   Graal Forums > PlayerWorlds > Bomy Island Main Forum > Events and Activities
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 02-26-2002, 03:08 AM
Scorpz Scorpz is offline
Banned
Join Date: Aug 2001
Posts: 473
Scorpz is on a distinguished road
Send a message via AIM to Scorpz
Et idea

Why don't they add a easy script that lets the Et give out money, like if a player wins the event team says

winner 50 account name


(something like that)
That would make the winner have 50g, The max they could go up to 100g, and they can only use it once a hour for that event, so 2 of the same events will not happen. If a event team uses it for them selfs they will get fired, Have something like that =/
Reply With Quote
  #2  
Old 02-26-2002, 04:17 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
that would be really easy

have a db npc with a flag, this.lastused and this.log

NPC Code:

if (playerchats&&startswith(give,#c)&&timevar-strtofloat(#s(this.lastused))>=720) {
tokenize #c;
if (tokenscount==3&&strtofloat(#t(2)) in |1,100|) {
with (getplayer(#t(1))) {
playerrupees+=strtofloat(#t(2));
}
addstring this.log,"#a gave #t(1) #t(2)";
}
setplayerprop #c, ;
setstring this.lastused,#v(timevar);
}




im going to test it now
i'll let you know how it works
__________________
Staff on Renegade


email: [email protected]
aim: papivicente
Reply With Quote
  #3  
Old 02-26-2002, 04:27 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
it works pretty good

you should add error checking and stuff, but besides that, its pretty cool
__________________
Staff on Renegade


email: [email protected]
aim: papivicente
Reply With Quote
  #4  
Old 02-26-2002, 05:19 AM
Scorpz Scorpz is offline
Banned
Join Date: Aug 2001
Posts: 473
Scorpz is on a distinguished road
Send a message via AIM to Scorpz
*blinks*

woow

I did'nt know someone was going to make it =) thankz, I hope they use it now. =)
Reply With Quote
  #5  
Old 02-26-2002, 05:59 AM
Brad Brad is offline
Rat...
Brad's Avatar
Join Date: Jan 2002
Location: PA, USA
Posts: 10,955
Brad has a spectacular aura about
Send a message via AIM to Brad Send a message via Yahoo to Brad
It would be abused and et members would give themselves like 10000k.
__________________

Brad.
2k14lyf
Forum idiots shall rule once more.


Quote:
Originally Posted by unixmad
Forums without brad will have been sad
Reply With Quote
  #6  
Old 02-26-2002, 06:11 AM
DarkHero2002 DarkHero2002 is offline
Registered User
DarkHero2002's Avatar
Join Date: Dec 2001
Posts: 625
DarkHero2002 is on a distinguished road
Send a message via ICQ to DarkHero2002 Send a message via AIM to DarkHero2002
i agree with Brad. I hope the NPC is ment for them to take it out of their own money. but sooner or later there will be a hack and like the npc will give people lotz of money/
__________________

DarkHero
AIM:XxCloud2002xX
ICQ:165561109
E-Mail:[email protected]
Manager Of Colonial Graal

PLEASE DO NOT CLICK HERE!
Reply With Quote
  #7  
Old 02-26-2002, 06:36 AM
AlexH AlexH is offline
Have A Drink On Me
AlexH's Avatar
Join Date: Jun 2001
Location: Somewhere In Time
Posts: 7,442
AlexH is on a distinguished road
Send a message via AIM to AlexH Send a message via MSN to AlexH
Quote:
Originally posted by Brad
It would be abused and et members would give themselves like 10000k.
Thats why if it was added it would have a log kept like the bomy logs. Then we could see whos getting the money and how much of it.
Reply With Quote
  #8  
Old 02-26-2002, 06:50 AM
DragonX2 DragonX2 is offline
Graal2002 Addict
DragonX2's Avatar
Join Date: Dec 2001
Location: NY
Posts: 0
DragonX2 is on a distinguished road
Send a message via AIM to DragonX2 Send a message via Yahoo to DragonX2
Quote:
Originally posted by Brad
It would be abused and et members would give themselves like 10000k.
If you read, the max amount of gralats he said it should go up to is 100, not 10000k.
__________________
Reply With Quote
  #9  
Old 02-26-2002, 07:21 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
then here, i'll add some things to it

NPC Code:

if (playerchats&&startswith(give,#c)&&timevar-strtofloat(#s(this.lastused))>=720) {
tokenize #c;
if (tokenscount==3&&strtofloat(#t(2)) in |1,100|&&playerrupees>=strtofloat(#t(2))&&!strequa ls(#t(1),#a)) {
with (getplayer(#t(1))) {
with (getplayer(#a)) {
playerrupees-=strtofloat(#t(2));
}
playerrupees+=strtofloat(#t(2));
}
addstring this.log,"#a gave #t(1) #t(2)";
}
setplayerprop #c, ;
setstring this.lastused,#v(timevar);
}


i'll go test that :P
__________________
Staff on Renegade


email: [email protected]
aim: papivicente
Reply With Quote
  #10  
Old 02-26-2002, 08:08 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
here is the whole thing i made

NPC Code:

if (playerchats&&startswith(~give,#c)) {
tokenize #c;
if (tokenscount==3) {
if (timevar-strtofloat(#s(this.lastused))>=720) {
if (!strequals(#t(1),#a)) {
if (strtofloat(#t(2)) in |1,100|) {
setstring this.give,#t(2);
with (getplayer(#t(1))) {
playerrupees+=strtofloat(#t(2));
say2 You recieved #t(2) gralats.;
with (getnpc(Event)) {
setstring this.give,done;
}
}
if (strequals(#s(this.give),done)) {
with (getplayer(#a)) {
playerrupees-=strtofloat(#t(2));
}
}
addstring this.log,#a gave #t(1) #t(2) gralats;
setstring this.lastused,#v(timevar);
} else {
say2 Must be between 1 and 100 gralats.;
addstring this.log,ERROR: #a tried to gave #t(1) #t(2) gralats; }
} else {
say2 You can't give yourself gralats.;
addstring this.log,ERROR: #a tried to give themself gralats; }
} else {
say2 This event has already been used#bwithin the last hour. Please wait.;
addstring this.log,ERROR: #a tried to give gralats withing less than a hour; }
} else { say2 Wrong syntax.; }
setplayerprop #c, ;
}

__________________
Staff on Renegade


email: [email protected]
aim: papivicente

Last edited by TDK_RC6; 02-26-2002 at 08:30 AM..
Reply With Quote
  #11  
Old 02-26-2002, 09:28 AM
Googi Googi is offline
A Serious Epidemic
Googi's Avatar
Join Date: Oct 2001
Location: Canada
Posts: 18,866
Googi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud ofGoogi has much to be proud of
Send a message via AIM to Googi
Somebody some way will find a way to abuse it.
__________________
Reply With Quote
  #12  
Old 02-26-2002, 10:10 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
not possible

you'll have to have that amount of gralats
__________________
Staff on Renegade


email: [email protected]
aim: papivicente
Reply With Quote
  #13  
Old 02-26-2002, 10:13 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
whoops, forgot to say

u should add a thing in there for guild checking, so you must be in Events Team or whatever, but isnt hard
__________________
Staff on Renegade


email: [email protected]
aim: papivicente
Reply With Quote
  #14  
Old 02-27-2002, 03:20 AM
craig_bomy craig_bomy is offline
NINJA MOTHERFCUKER *BANG*
craig_bomy's Avatar
Join Date: Oct 2001
Location: England
Posts: 1,757
craig_bomy is on a distinguished road
Send a message via ICQ to craig_bomy Send a message via AIM to craig_bomy
Googi will get his friends to accept the money, they will give it back to him, and he will get back off his tag. Also, some of the more untrustworthy ETs who have multiple accounts might give themselves money. It would be helpful, but I dont think it would work very well
__________________
Craig and Spekkio
guess who did what with who and when
Reply With Quote
  #15  
Old 02-27-2002, 04:13 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
the ET must have the money to give it

:P

so they cant give free money
__________________
Staff on Renegade


email: [email protected]
aim: papivicente
Reply With Quote
  #16  
Old 03-20-2002, 02:03 AM
cya cya is offline
Registered User
Join Date: Sep 2001
Location: Earth
Posts: 37
cya is on a distinguished road
Just have it like this,

1. You must HAVE the money first.

2. Must have ET tag on.

3. Can not give more than 100g at a time.

4. Wont let you give to urself.

5. LOG IT.

6. Also, put something in the log of who it was given to.

7. Make the ET say something for what event the money is for and log that.



So the ET would say something like "give 50 to cya for survivor"

Simple! No money gets stolen!

The log could say
"ETNAME gave 50 to cya for survivor on 03/19/02"
__________________
cya The Bold *Owner*(Bold Mining Co) BMC Created on 12/11/01

HTML code off. WHY!?!?!?!
Reply With Quote
  #17  
Old 04-04-2002, 03:44 AM
HVOstroHS HVOstroHS is offline
Registered User
HVOstroHS's Avatar
Join Date: Jan 2002
Location: Cow Town, Massachusetts
Posts: 505
HVOstroHS is on a distinguished road
Send a message via AIM to HVOstroHS
Quote:
Originally posted by craig_bomy
Googi will get his friends to accept the money, they will give it back to him, and he will get back off his tag. Also, some of the more untrustworthy ETs who have multiple accounts might give themselves money. It would be helpful, but I dont think it would work very well
UNTRUSTY ETS?! YOU DON'T SAY?! =\ 1/2 OF THE ET STAFF IS UNTRUSTWORTHY.. Some are good tho
__________________
Okogadis: But I also need a thingy

AIM: HVOstroHS
ICQ: 25015150
E-mail: [email protected]
-Caius Ligarius
Reply With Quote
  #18  
Old 04-05-2002, 05:49 AM
fenderbender2965 fenderbender2965 is offline
Registered User
fenderbender2965's Avatar
Join Date: Sep 2001
Location: home Posts:9000000
Posts: 580
fenderbender2965 is on a distinguished road
Send a message via AIM to fenderbender2965 Send a message via Yahoo to fenderbender2965
Quote:
Originally posted by HVOstroHS


UNTRUSTY ETS?! YOU DON'T SAY?! =\ 1/2 OF THE ET STAFF IS UNTRUSTWORTHY.. holy rocks tho
__________________
You see, I could have some meaningless quotes in here, or maybe a picture I ripped off a game.
But no, I've decided to be original, and be the first person to put the abc's in to their profile.
a b c d e f g h i j k l m n o p q r s t u v w x y z
THANKS
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 05:40 PM.


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