Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting > New Scripting Engine (GS2)
FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 10-25-2006, 12:52 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Workarounds...

Okay so I was playing around with flash and felt a need to make a workaround to get flash files from the internet, well I got all the way up to the part where I just gotta save the file.. It should save but it doesn't.. Help please
PHP Code:
function onCreated() {
Flash("http://64.191.61.82/albino_games04/curveball(www.albinoblacksheep.com).swf");
}
function 
Flash(url) {
 
temp.req requesturl("http://mywebserver.com/google.php?url=" url);
 
this.catchevent(temp.req,"onReceiveData","onFlash");
}
function 
onFlash(obj) {
 
temp.filename "flashtest.swf";
 echo(
"File Name?" SPC temp.filename);
 echo(
"File Length?" SPC obj.fulldata.length());
 
obj.fulldata.savestring("levels/flash/" temp.filename,0);
 echo(
temp.filename SPC "should be saved to your flash folder!");

PHP Code:
<?php
//Google.php
foreach ($_GET as $index => $val)
  $
$index $val;
echo 
open_external_url($url);

function 
open_external_url($url) {
 
$ch curl_init($url);
 
ob_start();
 
curl_exec($ch);
 
curl_close($ch);
 
$data ob_get_contents();
 
ob_end_clean();
 return 
$data;
}
?>
__________________
Quote:

Last edited by fowlplay4; 10-25-2006 at 04:16 AM..
Reply With Quote
 

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 04:08 PM.


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