+- +-

+-User

Welcome, Guest.
Please login or register.
 
 
 

Login with your social network

Forgot your password?

Recent Posts

Pages: [1] 2 3 ... 10
1
General Discussion / 5 ways to make money from playing games
« Last post by Martha Louise on February 21, 2023, 01:47:19 am »
1. Get Paid to Live Stream
Anyone can stream their gameplay in real-time for the world to see. Aim to build a large audience (which you can monetize with ads) or a loyal audience (to monetize with donations and subscriptions). The biggest platform for streaming is Twitch, but YouTube is also an option.
2. Win Gaming Tournaments and Acquire Sponsorships
Tournaments are commonplace for PvP titles, like fighting games. Of course, the more popular the game, the larger the prize pools become. If you're skilled enough to join an esports organization, you may be able to earn a livable salary through winnings and sponsorships. Most competitive gamers also take advantage of live streams (#1) for additional income.
3. Get Paid to Test Games
Games go through various phases of development before they're released. Near the time of completion, developers need outsiders to playtest their games with fresh eyes. As a playtester, your job is to check over everything the developer wants you to look at, which includes finding and documenting bugs and other issues.
4. Sell Accounts or Digital Items
If you've spent enough time in some games, you might be able to "flip" your account or in-game items to other players. As one example, you can resell some Steam Trading Cards earned by playing games to players who want to collect them. While you won't make huge money from this, you might be able to earn enough to cover your next game purchase.
5. Play Gamefi to earn token
GameFi projects vary widely based on how they function. As a result, there are different mechanisms through which players can earn rewards and generate income. Some blockchain games reward players with tokens for completing in-game tasks, while other games generate revenue from the assets players own. Below, we have the Top 3 best GameFi platforms that you can play and earn money:
STEPN:
STEPN gamefi stepn .com is a Blockchain game of the Move-to-Earn (moving to earn) genre. When participating in this game, users only need to move to earn money.  However, to do this, participants will need to equip a pair of specialized NFT Sneakers. Accordingly, when performing activities such as walking, jogging, ... users will receive the corresponding number of tokens in the game.
Fairy Cat:
Fairy Cat gamefi fairycat .net is a virtual pet blockchain game Play to earn. The Fairy Cat Blockchain Game offers players and investors a very unique opportunity to collect, trade, battle and earn rare assets that greatly increase their income. Fairy Cats and all other in-game items will be stored as NFTs with a 1:1 equivalent of USDT in the player's wallet and thus can be sold for profit and freely traded.
Crabada:
Crabada gamefi crabada .com is a Blockchain Play-to-Earn game launched in November 2021. Joining the game, users can rediscover the prosperous ancient Hermit-Crab Kingdom once ruled by Crustaco, king of Crabada and participate in exploration, mining, breeding, crafting... to expand force. Players will need to spend about 3,900 USD just to get started. Blockchain Game Crabada is an extremely profitable “game”, but its high barrier to entry makes it difficult for the average player to participate.
2
Request For Mod / Need mod :/
« Last post by bacem on October 13, 2019, 05:49:09 am »
Hello Usma Khan !
Pls i want Mod zm cso4.3 with sma im making a sv for my community
Pls reply me with good words :)
3
General Discussion / Rules
« Last post by DON KHAN on August 28, 2019, 01:50:29 pm »
Rules Of Counter Strike 1.6 Mod Helping.

Posting
  • Search Before Asking A Question.
  • Use A Better & Descriptive Topic Name.
  • Don't Bump Your Thread Until 24 Hours Passed.
  • Don't Abuse & Always Be Respective Otherwise You Can Be Banned Temporary / Permanent.
  • Don't Spam In Any Thread.
  • Don't Advertise Your Website/Forum/Hosting Or Such Types Of These Things Otherwise 1st Time You'll Be Warned & 2nd Time Will Be Banned.

General

  • Don't Create Multiples Account To Evade Ban.
  • Don't Use "Report Us" Or "Contact" For Anything Other More Than Forum Issues.
  • If You've Any Problem From The Decision Of Moderators Or Administrators So Send Them Private Message.
  • If You See Post In Wrong Section So Use Report Button To Move It To Right Place.

The Authority Of Counter Strike 1.6 Mod Helping Can Delete, Edit, Move Or Close Any Topic For Any Reason.

FounDeR & Developer Of Counter Strike 1.6 Mod Helping
DON KHAN
4
Suggestions/Request / Re: [REQ] VIP are knife and all see this
« Last post by DON KHAN on August 20, 2019, 12:56:37 pm »
Here is the code:
Code: [Select]
#include <amxmodx>
#include <fakemeta>
#include <cstrike>

new const g_ModelKnifeCT[] = "models/vip/ct_knife.mdl"
new const g_ModelKnifeTE[] = "models/vip/tr_knife.mdl"

public plugin_init()
{
    register_plugin("Knife models", "1.0", "Daminou & DON KHAN")
     
    register_event("CurWeapon", "model_knife", "b")
}

public plugin_precache() 

    precache_model(g_ModelKnifeCT) 
    precache_model(g_ModelKnifeTE) 
}

public model_knife(id)
{
    if(is_user_alive(id) && is_user_connected(id) & get_user_flags(id) & ADMIN_LEVEL_H)
    {
        new clip, ammo
        new knife = get_user_weapon(id, clip, ammo)
        if(knife == CSW_KNIFE)
        {
            switch(cs_get_user_team(id))
            {
                case CS_TEAM_CT:
                {
                    set_pev(id, pev_viewmodel2, g_ModelKnifeCT)
                }
                case CS_TEAM_T:
                {
                    set_pev(id, pev_viewmodel2, g_ModelKnifeTE)
                }
            }
        }
    }
5
Suggestions/Request / [REQ] VIP are knife and all see this
« Last post by FLOY on August 18, 2019, 07:22:46 am »
Vipas has a knife skins that immediately appear when you log on to the server
6
Approved Plugins / Advance VIP Menu [Public, CSDM & Furien]
« Last post by DON KHAN on June 22, 2019, 11:50:05 am »
Hi.

As I Said I'm Working On The VIP Menu.

So Finally I've Created The VIP Menu Successfully...

Description:

Provides A Guns Menu To VIPS.

I've Added The VIP Menu Disable For awp_india Map And 35hp_2 Map Too.

I've Added 6 Items In The Menu...

Deagle

Famas

M4A1

AK47

AWP

Grenade Set

Gravity 500

You Can Take Open The Menu After 2 Rounds Of The Map Starts.

Command:

/vm : To Open VIP Menu.

Whats New:

Added 500 Gravity In Menu For VIP.

Versions:

Code: [Select]
Versions:
1.0 : Release The Plugin.
1.1 : Added Grenade Set.
1.2 : Added.
   register_event("HLTV", "round_start", "a", "1=0", "2=0")
   register_event("TextMsg", "EventRoundRestart", "a", "2&#38;#Game_C", "2&#38;#Game_w")
}

public round_start()
{
   for(new id = 0; id <= get_maxplayers(); id++)
   {
      Weapon1[id] = 0
      Weapon2[id] = 0
      Weapon3[id] = 0
      Weapon4[id] = 0
      Weapon5[id] = 0
      Weapon6[id] = 0
   }
   rounds++
}

public EventRoundRestart()
rounds = 1

& Added if(rounds > 2) In Cases.

1.3 Optimized The Code.

1.4 : Fixed VIP Connect Message.

1.5 Optimized Code.

1.6 Added Gravity For VIPS[attach=1].

Special Thanks To:

SHIELD755 To Help To Add Disable VIP Menu For awp_india Map & 35hp_2 Map.

I Hope You Guys Like My This Release.

If Have Any Question So Ask :D

Thanks...
7
Suggestions/Request / Re: For Umbrella Swarm mod
« Last post by DON KHAN on June 22, 2019, 08:13:26 am »
Bro What Do You Wanna Say ??
8
Suggestions/Request / [SOLVED]Re: For Umbrella Swarm mod
« Last post by Almin on June 22, 2019, 05:02:45 am »
Your Name:Almin
Your Age:14
The Plugin You want:Register and save system
Any Details About it:i need the register and save system because im thinking about making a server and i need the system so players levels save
9
Approved Plugins / [ZP] VIP Model
« Last post by DON KHAN on June 17, 2019, 08:57:35 am »
Hello Guys.

I Saw Lot Of Request In Facebook For The VIP Model Working In ZP Mod.

So I Decided To Script The Plugin.

The Code Is Here.

Code: [Select]
#include < amxmodx >
#include < hamsandwich >
#include < zombieplague >
#include < zmvip >

new g_pluginInfo[][] =
{
"[ZP] Addon: VIP Model",
"1.2",
"DON KHAN"
};

#define IsPlayer(%0) ( 1 <= (%0) <= get_maxplayers() )

new const g_vipModelHuman[][] = { "vip" };

public plugin_precache()
{
register_plugin( g_pluginInfo[0], g_pluginInfo[1], g_pluginInfo[2] );
RegisterHam( Ham_Spawn, "player", "forwardClientSpawn_Post", 1 );

static index;
for (index = 0; index < sizeof g_vipModelHuman; index++ )
{
static patch[126];
formatex( patch, sizeof patch, "models/player/%s/%s.mdl", g_vipModelHuman[index], g_vipModelHuman[index] );
precache_model( patch );
}

}

public forwardClientSpawn_Post( client, attacker, gib )
{
if ( IsPlayer(client) && (zv_get_user_flags(client) & ZV_MAIN) )
zp_override_user_model( client, g_vipModelHuman[random_num(0, sizeof g_vipModelHuman  - 1)] );
}

public zp_user_humanized_post( client, survvior )
{
if ( zp_get_user_survivor(client) )
return ZP_PLUGIN_HANDLED;

if ( IsPlayer(client) && (zv_get_user_flags(client) & ZV_MAIN) )
zp_override_user_model( client, g_vipModelHuman[random_num(0, sizeof g_vipModelHuman  - 1)] );

return PLUGIN_CONTINUE;
}

You Can Change The VIP Skin Model Name By
Code: [Select]
new const g_vipModelHuman[][] = { "vip" };
>>>>

Code: [Select]
new const g_vipModelHuman[][] = { "Your_Skin_Name" };
Put Your Skin Name Without Space Like This VIPSkin Or VIP_Skin.

Well Hope You Guys Like My This Plugin.

Thank You
10
Suggestions/Request / Re: For Umbrella Swarm mod
« Last post by DON KHAN on June 17, 2019, 08:08:54 am »
Yea You Posted In Right Website For Help.

Click Here

If You Want A Better Server With Cheap Price Contact Me On FB: Usman Khan Khan

Thank You

And Please Kindly Put [Solved] In Title Before Your Topic Name  ;D ;)
Pages: [1] 2 3 ... 10

+-Recent Topics

5 ways to make money from playing games by Martha Louise
February 21, 2023, 01:47:19 am

Need mod :/ by bacem
October 13, 2019, 05:49:09 am

Rules by DON KHAN
August 28, 2019, 01:50:29 pm

[REQ] VIP are knife and all see this by DON KHAN
August 20, 2019, 12:56:37 pm

Advance VIP Menu [Public, CSDM & Furien] by DON KHAN
June 22, 2019, 11:50:05 am

For Umbrella Swarm mod by DON KHAN
June 22, 2019, 08:13:26 am

[ZP] VIP Model by DON KHAN
June 17, 2019, 08:57:35 am

[ZP] SVIP Plugin by DON KHAN
June 13, 2019, 11:43:24 am

Updates / Helpful BBC Codes For Your Post by DON KHAN
June 09, 2019, 03:01:39 am

BHOP Script by DON KHAN
June 08, 2019, 01:40:41 pm