Jump to content
McKay Development

general node.js question


Henrykvdb

Recommended Posts

So I got node.js code and for some reason the csgo.on will be triggered twice by the same emit [the console.log("Called is only called once")] which is not supposed to happen.

this.getFloat = function (m,a,d)
    {
        console.log("Called");

        csgo.inspectItem(m,a,d);

        csgo.on('inspectItemInfo',function(skin) //What happens after GC is ready
        {
            console.log(userName + " got float: " + skin.paintwear);
            setTimeout(function () {
                userOject.gcReady = true;
            },900)
        });
    }

PS ignore the unnecessary console.log's I was debugging some things. 

 

EDIT: Also if this is the wrong place to ask, I'm sorry :S. Tell me and I'll remove my post immediately.

Edited by Henrykvdb
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...