Graal Forums  

Go Back   Graal Forums > PlayerWorlds > PlayerWorlds Main Forum
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 12-20-2007, 03:44 AM
gemini2 gemini2 is offline
Fincayran Loser
gemini2's Avatar
Join Date: Jun 2007
Location: Georgia
Posts: 174
gemini2 is on a distinguished road
Send a message via AIM to gemini2 Send a message via MSN to gemini2
Two unstick mes?

Is it possible to define two 'unstick me' points? I was planning on having a couple different maps, and was wondering if I could somehow define an unstick me point for each map?
__________________
Quote:
Originally Posted by Crystia RC
*Angelu: i said the tuba isnt fitting
Oinkness: well use some lube
Quote:
Originally Posted by Angelu View Post
for me the hole is to big and its a way to thin :O
Reply With Quote
  #2  
Old 12-20-2007, 04:03 AM
Horrified Horrified is offline
Rediculously inactive
Join Date: Jul 2007
Posts: 961
Horrified is on a distinguished road
Send a message via ICQ to Horrified Send a message via AIM to Horrified Send a message via MSN to Horrified Send a message via Yahoo to Horrified
custom unstick me system?
Reply With Quote
  #3  
Old 12-20-2007, 04:15 AM
gemini2 gemini2 is offline
Fincayran Loser
gemini2's Avatar
Join Date: Jun 2007
Location: Georgia
Posts: 174
gemini2 is on a distinguished road
Send a message via AIM to gemini2 Send a message via MSN to gemini2
Figured :P
kthx
__________________
Quote:
Originally Posted by Crystia RC
*Angelu: i said the tuba isnt fitting
Oinkness: well use some lube
Quote:
Originally Posted by Angelu View Post
for me the hole is to big and its a way to thin :O
Reply With Quote
  #4  
Old 12-20-2007, 06:10 AM
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
gk has 6 default unsticks. 1 for main and 1 for each kingdom island.
Reply With Quote
  #5  
Old 12-20-2007, 07:00 AM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
It depends on what kind you want... more details?
Do you want one that unsticks you to a random group of locations, or do you want it to unstick depending on something like nearest unstick point?
Reply With Quote
  #6  
Old 12-20-2007, 08:56 AM
Curt1zzle Curt1zzle is offline
Starting not to love you
Curt1zzle's Avatar
Join Date: Sep 2003
Posts: 3,669
Curt1zzle has a spectacular aura about
Send a message via AIM to Curt1zzle
Quote:
Originally Posted by DustyPorViva View Post
It depends on what kind you want... more details?
Do you want one that unsticks you to a random group of locations, or do you want it to unstick depending on something like nearest unstick point?
I'm going to take a gander and say the latter.
__________________

This message has been deleted by Sam. Reason: you should better stop it now
Reply With Quote
  #7  
Old 12-20-2007, 10:02 PM
MysticalDragonP2P MysticalDragonP2P is offline
Endorian
Join Date: May 2002
Location: Lynn,Mass
Posts: 216
MysticalDragonP2P is on a distinguished road
Send a message via AIM to MysticalDragonP2P Send a message via MSN to MysticalDragonP2P
A custom unstick me would be rather easy and easier to mimic how graal online does it.
He went into enough detail. He said he wanted an unstick me for each map his server has.
__________________
MysticalDragon Manager of Endora
Reply With Quote
  #8  
Old 12-20-2007, 10:55 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Ah... I had missed that part for some reason. In that case ya, it's very simple to do. Here's something I pulled together... it was quick and I'm not sure if it'll work, but it should give you an idea of what to do... It's not a copy and paste thing, you need to figure it out yourself, or get a scripter to do it:
PHP Code:
function onActionserverside(action,level,newx,newy) {
  if (
action=="warp") {
    
setlevel2(level,newx,newy);
  }
}
//#CLIENTSIDE
function onPlayerenters() {
  if (
player.gmap!=nullthis.lastgmap=player.gmap;
}

function 
onCreated() {
  
/*
    Defining the unstick me points:
    I recommend the unstick me's all on inside levels
    or all on the gmap... warping a player
    to a nw that's on a gmap=breakage.
    this is tailored to interior levels, not on a gmap
  */
  
this.unstickpoints={
    {
map1.gmap,levelinmap1.nw,warpx,warpy},
    {
map2.gmap,levelinmap2.nw,warpx,warpy},
    {
map3.gmap,levelinmap3.nw,warpx,warpy},
    {
map4.gmap,levelinmap4.nw,warpx,warpy}
  }
}
function 
onPlayerchats() {
  if (
player.chat=="unstick me") {
    
player.chat="";
    for (
i=0;i<this.unstickpoints.size();i++) {
      if (
this.lastgmap==this.unstickpoints[i][0]) {
        
triggerserver("gui",name,"warp",this.unstickpoints[i][1],this.unstickpoints[i][2],this.unstickpoints[i][3]);
        break;
      }
    }
  }

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 12:42 AM.


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