Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 258
Search took 0.01 seconds.
Search: Posts Made By: iskenderkebab33
Forum: Plugin/Gameplay Ideas and Requests 08-10-2020, 08:53
Replies: 12
Views: 4,547
Posted By iskenderkebab33
Re: Simple !command to print in chat

I would do this:


PrintToChatAll("------------");
PrintToChatAll(" ");
PrintToChatAll("// text");
PrintToChatAll(" ");
PrintToChatAll("------------");
Forum: Scripting 05-10-2020, 20:39
Replies: 1
Views: 706
Posted By iskenderkebab33
Forum: Plugin/Gameplay Ideas and Requests 03-25-2020, 05:16
Replies: 8
Views: 1,126
Posted By iskenderkebab33
Re: [CSGO]Help with plugin

updated to new syntax and added IsClientInGame as 8guawong said.

#include <sourcemod>

#pragma semicolon 1
#pragma newdecls required

public void OnPluginStart()
{
...
Forum: Plugin/Gameplay Ideas and Requests 03-25-2020, 02:43
Replies: 2
Views: 1,090
Posted By iskenderkebab33
Re: [CSGO] Current map in panorama hud (plugin modify)

#include <sourcemod>

public Plugin myinfo =
{
name = "Panorama - Timeleft",
author = "Fastmancz",
description = "Shows timeleft at the bottom of the screen",
version = "1.0.1"
};
Forum: Plugin/Gameplay Ideas and Requests 02-02-2020, 02:25
Replies: 4
Views: 952
Posted By iskenderkebab33
Re: Spawn with molotov [flag]

not tested but should work.


#include <sourcemod>
#include <sdktools>

#pragma newdecls required

public void OnPluginStart()
{
Forum: Plugin/Gameplay Ideas and Requests 12-04-2019, 13:58
Replies: 2
Views: 1,201
Posted By iskenderkebab33
Re: [REQUEST] Free grenades on spawn for custom flag

not tested, but should work


#include <sourcemod>
#include <sdkhooks>
#include <sdktools>

#pragma semicolon 1
#pragma newdecls required
Forum: Plugin/Gameplay Ideas and Requests 11-12-2019, 18:16
Replies: 2
Views: 953
Posted By iskenderkebab33
Re: Snow Plugin

https://forums.alliedmods.net/showthread.php?p=1619374
Forum: Scripting 11-03-2019, 01:51
Replies: 8
Views: 2,854
Posted By iskenderkebab33
Re: [CS:GO] Blocking status command

maybe do a FakeClientCommand(client, "clear"); to clear the client's console?
Forum: General 11-02-2019, 02:28
Replies: 1
Views: 953
Posted By iskenderkebab33
Re: A doubt with source mod

show us your sm plugins list
Forum: Plugins 09-02-2019, 11:22
Replies: 8
Views: 9,440
Posted By iskenderkebab33
Re: [ANY] survival_equip crash fix (V1.0, 2019-09-01)

#include <sourcemod>

public Plugin myinfo =
{
name = "Survival Equip Fix",
author = "KiD Fearless",
description = "blocks the survival_equip command to prevent server crashes",
version =...
Forum: General 09-02-2019, 11:18
Replies: 8
Views: 3,854
Posted By iskenderkebab33
Re: [CS:GO] Cannot run local server windows

i have the same issue :cry:
Forum: Plugin/Gameplay Ideas and Requests 08-17-2019, 18:50
Replies: 6
Views: 2,239
Posted By iskenderkebab33
Re: REST API example (REST in Pawn) to send a POST request

so... can you guys do a example with POST or GET please.
Forum: Plugin/Gameplay Ideas and Requests 08-17-2019, 17:35
Replies: 6
Views: 2,239
Posted By iskenderkebab33
Re: REST API example (REST in Pawn) to send a POST request

how can i do this without a extension?
Forum: Plugin/Gameplay Ideas and Requests 08-17-2019, 12:50
Replies: 6
Views: 2,239
Posted By iskenderkebab33
REST API example (REST in Pawn) to send a POST request

Hello, as the title says, can someone write a example script with REST in Pawn (https://forums.alliedmods.net/showthread.php?t=298024) to send a POST reqeust, the script should send something like...
Forum: Scripting 07-22-2019, 01:47
Replies: 8
Views: 4,331
Posted By iskenderkebab33
Re: [CS:GO] trying to give heath per kill

i think this can help you: https://forums.alliedmods.net/showpost.php?p=2596116&postcount=7
Forum: Scripting 07-22-2019, 01:45
Replies: 17
Views: 3,232
Posted By iskenderkebab33
Forum: Scripting 07-21-2019, 06:33
Replies: 17
Views: 3,232
Posted By iskenderkebab33
Re: [HELP] help with int, for loop...

and how to get the highst and the lowest points from the team like: PrinToChatAll "Team CT: Player X has the highst points (X points) and Player X has the lowest ponit (X points)" and the same from...
Forum: Scripting 07-18-2019, 07:29
Replies: 4
Views: 1,770
Posted By iskenderkebab33
Forum: Scripting 07-17-2019, 10:53
Replies: 4
Views: 1,770
Posted By iskenderkebab33
Re: trigger Javascript function through SourceMod?

yes a site, www.example.com/blabla/index.js

and for example the sourcemod plugin should run the function myFunction() in index.js, or just the index.js
Forum: Scripting 07-17-2019, 09:34
Replies: 4
Views: 1,770
Posted By iskenderkebab33
trigger Javascript function through SourceMod?

Hey, as the title say, is there a way to trigger a Javascript function ( example: myFunction(); ) through Sourcemod? i have a plugin.sp and index.js. i want to trigger a function in index.js
...
Forum: Scripting 07-16-2019, 10:59
Replies: 17
Views: 3,232
Posted By iskenderkebab33
Re: [HELP] help with int, for loop...

what do you mean? i don't understand
Forum: Scripting 07-16-2019, 05:05
Replies: 17
Views: 3,232
Posted By iskenderkebab33
Forum: Scripting 07-13-2019, 19:29
Replies: 17
Views: 3,232
Posted By iskenderkebab33
Re: [HELP] with int for CSGO

so i need a for loop for both teams like:


for (int i = 1; i <= MaxClients; i++)
{
if (IsValidClient(i))
{
if(GetClientTeam(i) == 2) // Terror
{
g_playerspoints[i]+=;
Forum: Scripting 07-13-2019, 09:01
Replies: 17
Views: 3,232
Posted By iskenderkebab33
[HELP] help with int, for loop...

Hello, i have a int

int g_playerspoints[MAXPLAYERS+1];

for every player and for every kill the player gets more points, now i will do this:

all player has different points, how can i get the...
Forum: Unapproved Plugins 07-11-2019, 13:05
Replies: 124
Views: 175,978
Posted By iskenderkebab33
Re: [CS:GO] Fake Competitive Rank and Coins (v1.3 FINAL)

hello, how can i get the player with the lowest rank and print in to chat example: "PLayer X has rank X and is the lowest on the server" and also one with the highst, if there is more then 2 Globals...
Showing results 1 to 25 of 258

 
Forum Jump

All times are GMT -4. The time now is 01:21.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode