![]() |
[TUTORIAL] - Spheres Webpage Generator - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: General Discussion (/Forum-General-Discussion) +--- Forum: Documentation/Tutorials (/Forum-Documentation-Tutorials) +--- Thread: [TUTORIAL] - Spheres Webpage Generator (/Thread-TUTORIAL-Spheres-Webpage-Generator) |
[TUTORIAL] - Spheres Webpage Generator - Barnabus - 11-03-2012 09:36 PM Spheres Simple WebPage Generation Can be a handy tool and its not hard to use. For this example a stone will be created in game and then read from a webpage. 1. Make a stone PHP Code: [ITEMDEF i_webpageExample_stone] 2. in game .add i_webpageExample_stone in a town on your map. 3. in game write .xshow UID and target the stone, record the UID mines is (040005f1d) 4. above the stone script write this DEFNAME and put your stones UID in PHP Code: [DEFNAME WebExample] 5. resync the server 6. open note pad and copy and paste the following PHP Code: <html> 7. save and close the text file and then rename it (Including its extension ".txt") to "webpage.html" 8. if you have a website put the page into it (http://www.mywebsite.com/webpage.html) if you dont have a website put the file inside your sphere folder (/scripts/web/webpage.html) 9. Open Sphere.ini and scroll down until you find Code: /////////////////////////////////////////////////////////////// 10. Create a new one as below [WEBPAGE 2] Code: [WEBPAGE 2] while sphere.ini is still open check these settings Code: // Use the built in http server 11. Edit your webpage.html again and change it as shown below. PHP Code: <html> 12. Open up your stone script and add the following function PHP Code: [PLEVEL 1] 13. Save and close all open scripts and webpages 14. resync the server and wait for <WebPageUpdate> seconds for the page to be generated. 15. if you own a website goto http://www.mywebsite.com/webpage.php. if you dont own a website in game use the command .webpage RE: [TUTORIAL] - Spheres Webpage Generator - Extreme - 11-03-2012 11:52 PM Nice, thanks Barnabus! RE: [TUTORIAL] - Spheres Webpage Generator - Abuelox - 11-12-2012 09:12 AM Lol this is great! very thanks for this tutorial ![]() |