Graal Forums  

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

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-20-2008, 12:47 AM
Frankie Frankie is offline
xChugxLifex
Frankie's Avatar
Join Date: Feb 2008
Location: New York
Posts: 1,610
Frankie is a jewel in the roughFrankie is a jewel in the rough
Send a message via AIM to Frankie Send a message via MSN to Frankie
downloading heads/bodies (etc) to computer

I remember Andy making something that by a command, downloads all the heads that's uploaded to the server onto the player's computer. How would I go about doing this?

Also, is it possible that I can store all these heads/body names into a text file on the player's computer, this way with a tailor script I can make something that they can scroll through all the bodies that aren't limited to body1, body2, body3, etc.
__________________
*Sum41Freeeeek
*Frankie
Reply With Quote
  #2  
Old 10-20-2008, 12:55 AM
xAzerothx xAzerothx is offline
Banned
Join Date: Aug 2006
Location: Gurnee, Illinois
Posts: 2,615
xAzerothx has a little shameless behaviour in the past
Send a message via AIM to xAzerothx Send a message via MSN to xAzerothx Send a message via Yahoo to xAzerothx
This would be pretty awesome to have. I lost all my heads, bodies, etc after I deleted my Graal. Now I could get them back easily! If there's an actual script for it..
Reply With Quote
  #3  
Old 10-20-2008, 01:07 AM
oo_jazz_oo oo_jazz_oo is offline
Jazz teh Awesome
oo_jazz_oo's Avatar
Join Date: Jul 2006
Location: California
Posts: 596
oo_jazz_oo is a jewel in the roughoo_jazz_oo is a jewel in the rough
Send a message via MSN to oo_jazz_oo
http://wiki.graal.net/index.php/Crea...pdate_Packages
That maybe? You could just direct it to download the levels/head folder on your server, I think.
__________________

Reply With Quote
  #4  
Old 10-20-2008, 01:10 AM
xAzerothx xAzerothx is offline
Banned
Join Date: Aug 2006
Location: Gurnee, Illinois
Posts: 2,615
xAzerothx has a little shameless behaviour in the past
Send a message via AIM to xAzerothx Send a message via MSN to xAzerothx Send a message via Yahoo to xAzerothx
Yea, I have no idea how that works. How can I randomly log onto UN and download all the heads/bodies?
Reply With Quote
  #5  
Old 10-20-2008, 02:27 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
I guess something like:

PHP Code:
function onActionServerSidecmd )
{
  if ( 
cmd == "getImages" )
  {
    
temp.images.loadFolder"levels/bodies/*"false );
    
triggerclient"gui"name"returnImages"images );
  }
}
function 
onCreated()
{
  
triggerserver"gui"name"getImages" );
}
function 
onActionClientSidecmd, list )
{
  if ( 
cmd == "returnImages" )
  {
    
// list has all the images, now loop through them
  
}

But I think an update package would be much better.
__________________
Reply With Quote
  #6  
Old 10-20-2008, 02:42 AM
Frankie Frankie is offline
xChugxLifex
Frankie's Avatar
Join Date: Feb 2008
Location: New York
Posts: 1,610
Frankie is a jewel in the roughFrankie is a jewel in the rough
Send a message via AIM to Frankie Send a message via MSN to Frankie
would the download package require manual download? or can you do it automatic.
__________________
*Sum41Freeeeek
*Frankie
Reply With Quote
  #7  
Old 10-20-2008, 02:49 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Frankie View Post
would the download package require manual download? or can you do it automatic.
Either will work.
__________________
Reply With Quote
  #8  
Old 10-20-2008, 02:53 AM
Frankie Frankie is offline
xChugxLifex
Frankie's Avatar
Join Date: Feb 2008
Location: New York
Posts: 1,610
Frankie is a jewel in the roughFrankie is a jewel in the rough
Send a message via AIM to Frankie Send a message via MSN to Frankie
silly me. should of read the wiki before I posted, lol. thanks
__________________
*Sum41Freeeeek
*Frankie
Reply With Quote
  #9  
Old 10-20-2008, 04:25 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
I feel like the majority of people overlooked this thread when I posted it.

http://forums.graalonline.com/forums...ad.php?t=79350
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #10  
Old 10-21-2008, 12:24 AM
oo_jazz_oo oo_jazz_oo is offline
Jazz teh Awesome
oo_jazz_oo's Avatar
Join Date: Jul 2006
Location: California
Posts: 596
oo_jazz_oo is a jewel in the roughoo_jazz_oo is a jewel in the rough
Send a message via MSN to oo_jazz_oo
Quote:
Originally Posted by xXziroXx View Post
I feel like the majority of people overlooked this thread when I posted it.

http://forums.graalonline.com/forums...ad.php?t=79350
I didnt. ^-^ Thats where I first heard of the update packages. lol
__________________

Reply With Quote
  #11  
Old 10-21-2008, 03:52 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by xXziroXx View Post
I feel like the majority of people overlooked this thread when I posted it.

http://forums.graalonline.com/forums...ad.php?t=79350
I'm using something similar on Vesporia. Inspiration from you <3
__________________
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 09:47 AM.


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