Request a Tutorial

Hello everyone!

At this page on this website, you are able to make requests for Flash and/or SmartFoxServer tutorials. To request a tutorial, just make a comment on this page and if I decide to make a tutorial on the requested topic, the tutorial will be on the home page of this site.

Well, that's all for this page.

~Cool Boy 714

72 comments:

  1. MUST BE FIRST COMMENT! :D I need a tutorial on how to do different colors and moderator outfits on a SmartFox Server AvatarChat. :D The moderator one in more important. ;-]

    ReplyDelete
  2. Hey, can you do buddies please? I would really love that!

    ReplyDelete
  3. Bobhead202: Since you were the first comment, I will make a post on the home page on your request. :P

    ReplyDelete
  4. Tree Line 1: I will work on that after I finish two other tutorials. :P

    ReplyDelete
  5. How bout emotes? I have almost got them, theres just a SMALL glitch in them. Could you do a tut in that please?

    ReplyDelete
  6. Hey, Could you do a private messaging tutorial? That would be great! Thanks

    ReplyDelete
  7. How to install Smartfox on cPanel?!

    ReplyDelete
  8. JohnnyCP: There is no way to install SmartFoxServer on a cPanel to my knowledge.

    ReplyDelete
  9. Hey CB could you make a tutorial on how to make different chat bubbles (Ex. Mods would have a blue chat bubble) If you could that would be awesome!

    ReplyDelete
  10. JohnnyCP: You have to have a server. cPanel isn't a server. I usually use a virtual private server for my games, but another method of getting a game online is using a home server, which you can do if you have a static IP address. For more information on this, make a thread on the SmartFoxServer Forums and more people will respond to you about this. Or you could just search their forums, as it has been explained many times in them.

    The link to the SmartFoxServer Forums is this: http://smartfoxserver.com/forums/

    ReplyDelete
  11. Tree Line 1 said...

    How bout emotes? I have almost got them, theres just a SMALL glitch in them. Could you do a tut in that please?

    ---------------------------------------
    Tree Line 1: Sure, I'm working on that now. The tutorial on this will be up soon.

    ReplyDelete
  12. I want tutoial on or adding a new room on sfs PRO please a video would be perfect

    ReplyDelete
  13. Mr Nothersan said...

    Hey, Could you do a private messaging tutorial? That would be great! Thanks


    --------------------------
    Mr Nothersan: Sure. That will be the next tutorial on this site. I have already put a place holder on the home page.

    ReplyDelete
  14. Skybucks100 said...

    Hey CB could you make a tutorial on how to make different chat bubbles (Ex. Mods would have a blue chat bubble) If you could that would be awesome!

    -----------------------------
    Skybucks100: Sure, the tutorial has just been posted. :P

    ReplyDelete
  15. Cannon Turtle said...

    I want tutoial on or adding a new room on sfs PRO please a video would be perfect

    ---------------------------------------
    Cannon Turtle: sure, it will be on the home page shortly. I'm uploading it to YouTube right now.

    ReplyDelete
  16. A tutorial of making an actual virtual world, please. Basics if you would.

    ReplyDelete
  17. Hey, this is not for me but I think you should make a playercards/badges tutorial :P I Can't be bothered writing it XD

    ReplyDelete
  18. Prang123: Alright, the tutorial is now in progress.

    ReplyDelete
  19. Hello there! Could you do a tutorail on a inventory? Like when you buy sonething it goes to there and then you can were it? xD Thanks! :)

    ReplyDelete
  20. Also, Register and Login, with AvatarChat, if you can do that i will be soo happy! xD Thanks

    ReplyDelete
  21. I would like a Chat Log Tutorial XD

    ReplyDelete
  22. JohnnyCP: Your question/request is unclear. What are you wanting to add a static IP address to?

    ReplyDelete
  23. Wolfkit said...

    A tutorial of making an actual virtual world, please. Basics if you would.

    --------------------
    Wolfkit: That can really be explained very simply in the SmartFoxServer Documentation.

    ReplyDelete
  24. RyanBoyling said...

    Hello there! Could you do a tutorail on a inventory? Like when you buy sonething it goes to there and then you can were it? xD Thanks! :) Also, Register and Login, with AvatarChat, if you can do that i will be soo happy! xD Thanks

    ---------------------
    RyanBoyling: Those tutorials are more advanced so tutorials like that will come later on.

    ReplyDelete
  25. Prang123 said...
    I would like a Chat Log Tutorial XD

    -------------
    Prang123: Sure, I'll get to work on that now.

    ReplyDelete
  26. I would like a tutorial how to make mini games.

    ReplyDelete
  27. @Pen50gi: That is basically just using information from a the main movie and using it in an external loaded movie. This isn't too hard, so I don't really think I need to make an actual post on this request. Just Google up something about using information from a main movie to an external loaded movie in Flash, or post on a Flash forum, such as the Kirupa Forums.

    ReplyDelete
  28. Textfield with button next to it. User enters username in textfield, clicks button, user is banned.

    Also whats wrong with this code:

    if (_global.myName == "mash" && msg == "!end rickroll") {
    mc.bubble._visible = false;
    mc.bubble.message.text = "";
    mc.bubble.emotes._visible = false;
    _root.InstanceName_0.unloadMovie("rickroll.swf");
    }

    The rickroll.swf only shows up client side. Do you have msn or something?

    ReplyDelete
  29. @Anonymous: I assume you have that coding on the smartfox.onPublicMessage handler, so the problem with your coding is that the _global.myName is different for every person logged into your application. To fix this, try putting user.getName() instead of _global.myName. The difference is that _global.myName == the user that is logged in and user.getName() is who broadcasts the event.

    ReplyDelete
  30. I am using your playercard tutorial.

    How do I make it so that if someone's username is "bob" for example, on the player card, a shape w/ instance name "star" is located , and if someone's username is "bob", the star is visible, if their username is not bob, the star is not visible.

    I can only get this to happen client side!!

    ReplyDelete
  31. @Anonymous: Well, one way I did this in one of my earliest multiplayer games (and one of my most successful in the short term), I added this coding on the playercard's main frame:

    thePlayerCard.playerBadge._visible = false;
    if (thePlayerCard.playerName.text == "Username") {
    thePlayerCard.playerBadge._visible = true;
    }

    That's basically all I did for the test game I created not too long ago.

    ReplyDelete
  32. I have this code:


    thePlayerCard.mod_star._visible = false;
    if (ismoderator == "1") {
    thePlayerCard.mod_star._visible = true;
    }


    Where ismoderator is an item in my database. The problem is, if the user is a moderator, his playercard and everyone else's player card have the mod star visible to him. If someone is not a moderator, no one has the mod star visible, even if they are a mod.

    ReplyDelete
  33. @Anonymous: What coding are you using to generate the ismoderator variable and receive the database value? Also, what happens when you trace out the variable?

    To trace it, use this coding:

    trace(ismoderator);

    ReplyDelete
  34. The ismoderator returns the right value, the problem is, if the user IS a mod, then everyone's badge is visible to him. If the user is not a mod, then no one's badge is visible to them.

    ReplyDelete
  35. Cool boy, I try downloading both SFS and SFS X2 but SFS says, 'java' isnt a conrtol, and when I try opening SFS X2 it closes without me doing anything in like a millisecond... how do i download it?

    ReplyDelete
  36. @Anonymous: At a quick second glance over your coding, I read it as saying the following:

    if (the current user is a moderator) {
    show the user's badge
    }

    To fix it, I would add this coding above all that:

    thePlayerCard.badgeInstanceName._visible = false;
    if (thePlayerCard.playerName.text == "Username") {
    thePlayerCard.badgeInstanceName._visible = true;
    }

    ReplyDelete
  37. I whould like really really like to knwo how to make a mod magic i hope this will be posted thanks !!

    ReplyDelete
  38. That's the thing, I don't want to define everyone's username. Is it possible to use the ismoderator == "1" instead?

    ReplyDelete
  39. @Anonymous: Well, considering your only wanting to use the client, your going to have to define all the usernames one way or another.

    ReplyDelete
  40. @Kittkat4: Is Java correctly installed on the computer your trying to run SmartFoxServer with?

    ReplyDelete
  41. What do you do when you get an error like this? :P
    **Error** Scene=Scene 1, layer={ code }, frame=9:Line 54: The class or interface 'SmartFoxClient' could not be loaded.
    var smartfox:SmartFoxClient = new SmartFoxClient()
    **Error** Scene=Scene 1, layer={ code }, frame=16:Line 56: The class or interface 'Room' could not be loaded.
    smartfox.onJoinRoom = function(roomObj:Room)
    **Error** Scene=Scene 1, layer={ code }, frame=16:Line 68: The class or interface 'User' could not be loaded.
    var user:User = userList[i]
    **Error** Scene=Scene 1, layer={ code }, frame=16:Line 82: The class or interface 'User' could not be loaded.
    smartfox.onUserEnterRoom = function(fromRoom:Number, user:User)
    **Error** Scene=Scene 1, layer={ code }, frame=16:Line 121: The class or interface 'User' could not be loaded.
    smartfox.onPublicMessage = function(msg:String, user:User)
    Total ActionScript Errors: 5 Reported Errors: 5

    ReplyDelete
  42. @Wolfkit: Those errors are telling you that the SmartFoxClient isn't being loaded properly. To fix this, if your using the avatarChat example files, either set your classpath (as described in the SmartFoxServer Docs), or copy and paste the folders located at {sfs-installation}/Flash API/AS2/it and {sfs-installation}/Examples/AS2/avatarChat Folder/lib into the same directory as your current Fla file. Doing that should fix the errors you are getting.

    ReplyDelete
  43. Ok. I'm using Simple Chat currently though, but I'll upgrade to avatar chat eventually. Thanks.

    ReplyDelete
  44. @Bluewish: Mod Magic tutorial is being made now, it should be up in a bit. :P

    ReplyDelete
  45. Please just do that tutorial next about Private Rooms/ Homes.. Please! I REALLY do need this. Thanks!

    ReplyDelete
  46. for avatar chat, a tutorial on how to make "walls" that the avatar cannot go/walk on?

    ReplyDelete
  47. @RyanBoyling: Dynamic room creation tutorial has just been added to the home page of this site. :P

    ReplyDelete
  48. vps is necessary to connect a license to 20 users?

    ReplyDelete
  49. @Seifa: A virtual private server isn't really 'required', but some sort of server is. Most people I know use a home server, but I myself prefer virtual private servers instead. :P

    ReplyDelete
  50. @Anonymous: The tutorial on the "No Wall Walk" has just been published on the home page.

    ReplyDelete
  51. Hello, can you make a tutorial on making a Server Message for use of Moderators only?

    ReplyDelete
  52. @Josh11: I'm guessing you mean a moderator message tutorial, so that will be made.

    ReplyDelete
  53. @Cool Boy 714: Thanks, looking forward to it.

    ReplyDelete
  54. Hi Cool Boy, an email where I can reach you?
    Thanks

    ReplyDelete
  55. i luv ur websitee cb714. u r so so so awesumm! kep up dat good worrk.

    ReplyDelete
  56. Hey Coolboy, please could you make an avatarChat tutorial about how to make a decent, secure password protected virtual world game via a mySQL database? I'm sure that it would help alot of people who are trying to build their own games.

    Thanks,

    Aidan.

    ReplyDelete
    Replies
    1. Please read the update to the newest post! Specify SFS2X or SFS1X!

      Delete
  57. Where's part 3 ??????
    http://sfs-tutorials.blogspot.co.il/2011/07/smartfoxserver-tutorial-how-to-make.html

    ReplyDelete
  58. can you do a drag and drop using smartfox server

    ReplyDelete
  59. can you mKE A DRAG AND DROP USING SMART FOX SERVER. JUST MOVING OBJECTS AROUND

    ReplyDelete
    Replies
    1. Please read the update to the newest post! Specify SFS2X or SFS1X!

      Delete
  60. Hi..I want to build an online multiplayer flash games. Some game to play with cards..I am not sure exactly where to start..So can u please give a tutorial on how can i proceed with flash and smart fox server with it

    ReplyDelete
  61. Hi,
    I need a tutorial of how to make a game like Club Penguin. Thanks!

    ReplyDelete
  62. I love the website! Can you do how to make clothing items? I'm trying to make a VW. :) Thanks for the help!

    ReplyDelete
    Replies
    1. Please read the update to the newest post! Specify SFS2X or SFS1X!

      Delete
  63. Plzzzzz can you do a tutorial aboud money...
    A sell system, and buy system
    xD
    thx so much!
    I love ur blog

    ReplyDelete
  64. not sure if you still post here, but id like to request a tutorial.

    How do you make the avatar in avatarChat walk, instead of gliding around?

    Thanks,
    Joey

    ReplyDelete
  65. Coolboy can you please make tutorial on how to make like moderators have yellow names :D

    ReplyDelete