Graal Forums  

Go Back   Graal Forums > Gold Servers > Graal Kingdoms > Graal Kingdoms Events
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-14-2007, 07:03 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
new events

i want to make some new events for gk !!!! do you have any cool suggestions?
__________________
Reply With Quote
  #2  
Old 10-14-2007, 07:07 PM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
I don't have many suggestions, but I am also willing to make events for GK.
__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote
  #3  
Old 10-14-2007, 07:28 PM
Mousymee Mousymee is offline
Ess
Mousymee's Avatar
Join Date: May 2007
Posts: 119
Mousymee is on a distinguished road
Send a message via MSN to Mousymee
Some kind of castle wars would be pretty awesome.
Reply With Quote
  #4  
Old 10-14-2007, 07:43 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
Here's a betting spar.

Change the "this.boxName" to 1 or 2 [Only two per level, could add more on slight modifications]. Add two of these in the level.
HTML Code:
function onCreated() {
  this.setShape(1, 32, 32);
  this.boxName = 1;
}

//Function called to pick up an item
function onActionFound(id) {
  if (level.("objectOwner" @ this.boxName) != null) {
    return false;
  }
  for (temp.i: findnearestnpcs(this.x - 2, this.y - 2, 4, 4) {
    if (temp.i.itemid == temp.id) {

      level.("objectOwner" @ this.boxName) = player; 
      level.("objectItem1" @ this.boxName) = {temp.i.mudid, temp.i.mudquantity};
      temp.i.destroy();
      return;
    }
  }
}
Here's the main control, on the GK system this will probably need ajusting more than anything

HTML Code:
function onCreated() {
  this.setShape(1, 32, 32);
  this.boxModes = {1, 2};
  level.deathAction = {this.x, this.y};
  //Maybe there's a public function for when a person dies in a level! 
  //If not, I could add a timeout, just better to send an action once someone dies
}

//If there is, here's how it'd work
function onActionDeathAction(accountName) {
  for (temp.i: this.boxModes) {
    temp.ownerAccounts.add(level.("objectOwner" @ temp.i).account); 
    temp.itemDetails.add(level.("objectItem1" @ temp.i));
  }
  if (temp.ownerAccounts == null) {
    return false;
  }
  if (temp.accountName in temp.ownerAccounts) {
    temp.winner = temp.ownerAccounts.remove(temp.accountName);
    temp.winner.chat = "You've won the bet by slain thy opponent!";
    for (temp.i: temp.itemDetails) {
     //addinvobject(int, int) - I assue id/quantity
      temp.winner.addinvobject(temp.i[0], temp.i[1]);
    }
    level.objectOwner1 = null;
    level.objectOwner2 = null;
  }
}
__________________
Reply With Quote
  #5  
Old 10-15-2007, 10:48 AM
Sam Sam is offline
superannuated super mod
Sam's Avatar
Join Date: Sep 2004
Location: Dortmund, Deutschland
Posts: 5,357
Sam is a glorious beacon of lightSam is a glorious beacon of lightSam is a glorious beacon of light
Quote:
Originally Posted by xAndrewx View Post
i want to make some new events for gk !!!! do you have any cool suggestions?
I am still thinking about an auction house. You should be able to offer diamonds, plats, nails, stones and so on to buy offers at the auction.
Reply With Quote
  #6  
Old 10-15-2007, 04:36 PM
Ravenblade1979 Ravenblade1979 is offline
Dark Ravenblade
Ravenblade1979's Avatar
Join Date: Mar 2006
Location: Winnipeg, Manitoba
Posts: 3,151
Ravenblade1979 is an unknown quantity at this point
Send a message via MSN to Ravenblade1979
Quote:
Originally Posted by Sam View Post
I am still thinking about an auction house. You should be able to offer diamonds, plats, nails, stones and so on to buy offers at the auction.
Don't think about it lets get it done...they would love it.
__________________
If love can be funny then why can it write bad jokes?
Reply With Quote
  #7  
Old 10-15-2007, 05:02 PM
ViperZakuto ViperZakuto is offline
Duergar
ViperZakuto's Avatar
Join Date: Mar 2004
Location: Cincinnati, Ohio
Posts: 1,220
ViperZakuto is an unknown quantity at this point
both these idea's are nice =D
Reply With Quote
  #8  
Old 10-15-2007, 07:27 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
hmm auction sounds fun. how would you like it?
once you lay an item down it'll ask you what you'd like to sell it for, either diamonds, plat, stones etc and then the amount you'd like for the item maybe?
__________________
Reply With Quote
  #9  
Old 10-15-2007, 07:40 PM
Sam Sam is offline
superannuated super mod
Sam's Avatar
Join Date: Sep 2004
Location: Dortmund, Deutschland
Posts: 5,357
Sam is a glorious beacon of lightSam is a glorious beacon of lightSam is a glorious beacon of light
Quote:
Originally Posted by xAndrewx View Post
hmm auction sounds fun. how would you like it?
once you lay an item down it'll ask you what you'd like to sell it for, either diamonds, plat, stones etc and then the amount you'd like for the item maybe?
I don't know. Maybe you offer your item and set what sort of stuff you want and the minimum of amount, so ppl can start their offers. But it must be so that they can only bid what they have in their inventory.
Reply With Quote
  #10  
Old 10-15-2007, 07:50 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
hmm so say someone wanted to sell 50 diamonds, I'd place an auction in a box [also amount] and then its up to the seller to accept or not?
__________________
Reply With Quote
  #11  
Old 10-15-2007, 08:07 PM
Sam Sam is offline
superannuated super mod
Sam's Avatar
Join Date: Sep 2004
Location: Dortmund, Deutschland
Posts: 5,357
Sam is a glorious beacon of lightSam is a glorious beacon of lightSam is a glorious beacon of light
Quote:
Originally Posted by xAndrewx View Post
hmm so say someone wanted to sell 50 diamonds, I'd place an auction in a box [also amount] and then its up to the seller to accept or not?
No. Ever bought by ebay? You place your auction in the box and set the min. price to 2 dias. Now ppl can start to offer 3 dias, the next player offers 5 dias aso.
Reply With Quote
  #12  
Old 10-15-2007, 08:10 PM
seanthien seanthien is offline
hi
seanthien's Avatar
Join Date: Nov 2006
Posts: 1,475
seanthien is on a distinguished road
Quote:
Originally Posted by xAndrewx View Post
hmm so say someone wanted to sell 50 diamonds, I'd place an auction in a box [also amount] and then its up to the seller to accept or not?
-places down silver coin-
Me: Big starts at 1 dia!

Some kid:OMg omG TAT RARE?!??!!m-Places down 10 dias-

W1N

Castle/guild wars would sound ok.
__________________
Quote:
Originally Posted by Darkdemon452 View Post
wow I'm by Sean and Tench...How unlucky can you get?
Reply With Quote
  #13  
Old 10-15-2007, 08:13 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
oh thats cool @ ebay !!!
would need to set up some value for each item depending on the other. could maybe make a gBay [graal bay]
generally, all the people make a bid, once the time has ran out the player chooses which item[s] to go for?
__________________
Reply With Quote
  #14  
Old 10-15-2007, 09:25 PM
Sam Sam is offline
superannuated super mod
Sam's Avatar
Join Date: Sep 2004
Location: Dortmund, Deutschland
Posts: 5,357
Sam is a glorious beacon of lightSam is a glorious beacon of lightSam is a glorious beacon of light
Quote:
Originally Posted by xAndrewx View Post
oh thats cool @ ebay !!!
would need to set up some value for each item depending on the other. could maybe make a gBay [graal bay]
generally, all the people make a bid, once the time has ran out the player chooses which item[s] to go for?
Nice idea
Reply With Quote
  #15  
Old 10-15-2007, 10:02 PM
ViperZakuto ViperZakuto is offline
Duergar
ViperZakuto's Avatar
Join Date: Mar 2004
Location: Cincinnati, Ohio
Posts: 1,220
ViperZakuto is an unknown quantity at this point
Here's a quick idea. kinda like castle wars lol

Make a spar that has two teams. Any improvements on weapons and armor will be void in this arena. Also, make everybody's speed the same. make a minimum number of slots on each team say 2 per team, and a max of 10 per team. the winners of the round will get tokens that they can spend on items. Come up with some cool items, with not too great of stats. Then, they can spend there tokens on these items.

can anybody improve on this idea? I will think more about it.
Reply With Quote
  #16  
Old 10-15-2007, 10:11 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
that'd be cool, maybe make the players damage all count the same. so then it's based on luck of the winning people alive
__________________
Reply With Quote
  #17  
Old 10-15-2007, 10:19 PM
ViperZakuto ViperZakuto is offline
Duergar
ViperZakuto's Avatar
Join Date: Mar 2004
Location: Cincinnati, Ohio
Posts: 1,220
ViperZakuto is an unknown quantity at this point
yeah so it's more skill than items.
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 08:00 AM.


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